Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Apr 14-17, 2025
Register
Loading...
v6.9.4
  1/* SPDX-License-Identifier: BSD-3-Clause-Clear */
  2/*
  3 * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved.
  4 * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
  5 */
  6
  7#ifndef ATH12K_CORE_H
  8#define ATH12K_CORE_H
  9
 10#include <linux/types.h>
 11#include <linux/interrupt.h>
 12#include <linux/irq.h>
 13#include <linux/bitfield.h>
 14#include <linux/dmi.h>
 15#include <linux/ctype.h>
 16#include <linux/firmware.h>
 
 17#include "qmi.h"
 18#include "htc.h"
 19#include "wmi.h"
 20#include "hal.h"
 21#include "dp.h"
 22#include "ce.h"
 23#include "mac.h"
 24#include "hw.h"
 25#include "hal_rx.h"
 26#include "reg.h"
 27#include "dbring.h"
 28#include "fw.h"
 
 
 
 
 29
 30#define SM(_v, _f) (((_v) << _f##_LSB) & _f##_MASK)
 31
 32#define ATH12K_TX_MGMT_NUM_PENDING_MAX	512
 33
 34#define ATH12K_TX_MGMT_TARGET_MAX_SUPPORT_WMI 64
 35
 36/* Pending management packets threshold for dropping probe responses */
 37#define ATH12K_PRB_RSP_DROP_THRESHOLD ((ATH12K_TX_MGMT_TARGET_MAX_SUPPORT_WMI * 3) / 4)
 38
 39/* SMBIOS type containing Board Data File Name Extension */
 40#define ATH12K_SMBIOS_BDF_EXT_TYPE 0xF8
 41
 42/* SMBIOS type structure length (excluding strings-set) */
 43#define ATH12K_SMBIOS_BDF_EXT_LENGTH 0x9
 44
 45/* The magic used by QCA spec */
 46#define ATH12K_SMBIOS_BDF_EXT_MAGIC "BDF_"
 47
 48#define ATH12K_INVALID_HW_MAC_ID	0xFF
 
 49#define	ATH12K_RX_RATE_TABLE_NUM	320
 50#define	ATH12K_RX_RATE_TABLE_11AX_NUM	576
 51
 52#define ATH12K_MON_TIMER_INTERVAL  10
 53#define ATH12K_RESET_TIMEOUT_HZ			(20 * HZ)
 54#define ATH12K_RESET_MAX_FAIL_COUNT_FIRST	3
 55#define ATH12K_RESET_MAX_FAIL_COUNT_FINAL	5
 56#define ATH12K_RESET_FAIL_TIMEOUT_HZ		(20 * HZ)
 57#define ATH12K_RECONFIGURE_TIMEOUT_HZ		(10 * HZ)
 58#define ATH12K_RECOVER_START_TIMEOUT_HZ		(20 * HZ)
 59
 60enum ath12k_bdf_search {
 61	ATH12K_BDF_SEARCH_DEFAULT,
 62	ATH12K_BDF_SEARCH_BUS_AND_BOARD,
 63};
 64
 65enum wme_ac {
 66	WME_AC_BE,
 67	WME_AC_BK,
 68	WME_AC_VI,
 69	WME_AC_VO,
 70	WME_NUM_AC
 71};
 72
 73#define ATH12K_HT_MCS_MAX	7
 74#define ATH12K_VHT_MCS_MAX	9
 75#define ATH12K_HE_MCS_MAX	11
 76
 77enum ath12k_crypt_mode {
 78	/* Only use hardware crypto engine */
 79	ATH12K_CRYPT_MODE_HW,
 80	/* Only use software crypto */
 81	ATH12K_CRYPT_MODE_SW,
 82};
 83
 84static inline enum wme_ac ath12k_tid_to_ac(u32 tid)
 85{
 86	return (((tid == 0) || (tid == 3)) ? WME_AC_BE :
 87		((tid == 1) || (tid == 2)) ? WME_AC_BK :
 88		((tid == 4) || (tid == 5)) ? WME_AC_VI :
 89		WME_AC_VO);
 90}
 91
 
 
 
 
 
 
 
 
 92enum ath12k_skb_flags {
 93	ATH12K_SKB_HW_80211_ENCAP = BIT(0),
 94	ATH12K_SKB_CIPHER_SET = BIT(1),
 95};
 96
 97struct ath12k_skb_cb {
 98	dma_addr_t paddr;
 99	struct ath12k *ar;
100	struct ieee80211_vif *vif;
101	dma_addr_t paddr_ext_desc;
102	u32 cipher;
103	u8 flags;
104};
105
106struct ath12k_skb_rxcb {
107	dma_addr_t paddr;
108	bool is_first_msdu;
109	bool is_last_msdu;
110	bool is_continuation;
111	bool is_mcbc;
112	bool is_eapol;
113	struct hal_rx_desc *rx_desc;
114	u8 err_rel_src;
115	u8 err_code;
116	u8 mac_id;
117	u8 unmapped;
118	u8 is_frag;
119	u8 tid;
120	u16 peer_id;
121};
122
123enum ath12k_hw_rev {
124	ATH12K_HW_QCN9274_HW10,
125	ATH12K_HW_QCN9274_HW20,
126	ATH12K_HW_WCN7850_HW20
127};
128
129enum ath12k_firmware_mode {
130	/* the default mode, standard 802.11 functionality */
131	ATH12K_FIRMWARE_MODE_NORMAL,
132
133	/* factory tests etc */
134	ATH12K_FIRMWARE_MODE_FTM,
135};
136
137#define ATH12K_IRQ_NUM_MAX 57
138#define ATH12K_EXT_IRQ_NUM_MAX	16
139
140struct ath12k_ext_irq_grp {
141	struct ath12k_base *ab;
142	u32 irqs[ATH12K_EXT_IRQ_NUM_MAX];
143	u32 num_irq;
144	u32 grp_id;
145	u64 timestamp;
146	struct napi_struct napi;
147	struct net_device napi_ndev;
148};
149
150struct ath12k_smbios_bdf {
151	struct dmi_header hdr;
152	u32 padding;
153	u8 bdf_enabled;
154	u8 bdf_ext[];
155} __packed;
156
157#define HEHANDLE_CAP_PHYINFO_SIZE       3
158#define HECAP_PHYINFO_SIZE              9
159#define HECAP_MACINFO_SIZE              5
160#define HECAP_TXRX_MCS_NSS_SIZE         2
161#define HECAP_PPET16_PPET8_MAX_SIZE     25
162
163#define HE_PPET16_PPET8_SIZE            8
164
165/* 802.11ax PPE (PPDU packet Extension) threshold */
166struct he_ppe_threshold {
167	u32 numss_m1;
168	u32 ru_mask;
169	u32 ppet16_ppet8_ru3_ru0[HE_PPET16_PPET8_SIZE];
170};
171
172struct ath12k_he {
173	u8 hecap_macinfo[HECAP_MACINFO_SIZE];
174	u32 hecap_rxmcsnssmap;
175	u32 hecap_txmcsnssmap;
176	u32 hecap_phyinfo[HEHANDLE_CAP_PHYINFO_SIZE];
177	struct he_ppe_threshold   hecap_ppet;
178	u32 heop_param;
179};
180
181#define MAX_RADIOS 3
182
183enum {
184	WMI_HOST_TP_SCALE_MAX   = 0,
185	WMI_HOST_TP_SCALE_50    = 1,
186	WMI_HOST_TP_SCALE_25    = 2,
187	WMI_HOST_TP_SCALE_12    = 3,
188	WMI_HOST_TP_SCALE_MIN   = 4,
189	WMI_HOST_TP_SCALE_SIZE   = 5,
190};
191
192enum ath12k_scan_state {
193	ATH12K_SCAN_IDLE,
194	ATH12K_SCAN_STARTING,
195	ATH12K_SCAN_RUNNING,
196	ATH12K_SCAN_ABORTING,
197};
198
199enum ath12k_dev_flags {
200	ATH12K_CAC_RUNNING,
201	ATH12K_FLAG_CRASH_FLUSH,
202	ATH12K_FLAG_RAW_MODE,
203	ATH12K_FLAG_HW_CRYPTO_DISABLED,
204	ATH12K_FLAG_RECOVERY,
205	ATH12K_FLAG_UNREGISTERING,
206	ATH12K_FLAG_REGISTERED,
207	ATH12K_FLAG_QMI_FAIL,
208	ATH12K_FLAG_HTC_SUSPEND_COMPLETE,
209	ATH12K_FLAG_CE_IRQ_ENABLED,
210	ATH12K_FLAG_EXT_IRQ_ENABLED,
211};
212
213enum ath12k_monitor_flags {
214	ATH12K_FLAG_MONITOR_ENABLED,
 
 
215};
216
217struct ath12k_vif {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218	u32 vdev_id;
219	enum wmi_vdev_type vdev_type;
220	enum wmi_vdev_subtype vdev_subtype;
221	u32 beacon_interval;
222	u32 dtim_period;
223	u16 ast_hash;
224	u16 ast_idx;
225	u16 tcl_metadata;
226	u8 hal_addr_search_flags;
227	u8 search_type;
228
229	struct ath12k *ar;
230	struct ieee80211_vif *vif;
231
232	int bank_id;
233	u8 vdev_id_check_en;
234
235	struct wmi_wmm_params_all_arg wmm_params;
236	struct list_head list;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237	union {
238		struct {
239			u32 uapsd;
240		} sta;
241		struct {
242			/* 127 stations; wmi limit */
243			u8 tim_bitmap[16];
244			u8 tim_len;
245			u32 ssid_len;
246			u8 ssid[IEEE80211_MAX_SSID_LEN];
247			bool hidden_ssid;
248			/* P2P_IE with NoA attribute for P2P_GO case */
249			u32 noa_len;
250			u8 *noa_data;
251		} ap;
252	} u;
253
254	bool is_started;
255	bool is_up;
256	u32 aid;
257	u8 bssid[ETH_ALEN];
258	struct cfg80211_bitrate_mask bitrate_mask;
259	int num_legacy_stations;
260	int rtscts_prot_mode;
261	int txpower;
262	bool rsnie_present;
263	bool wpaie_present;
264	struct ieee80211_chanctx_conf chanctx;
265	u32 key_cipher;
266	u8 tx_encap_type;
267	u8 vdev_stats_id;
268	u32 punct_bitmap;
269	bool ps;
 
 
 
 
 
 
 
 
 
 
 
 
 
270};
271
272struct ath12k_vif_iter {
273	u32 vdev_id;
274	struct ath12k_vif *arvif;
 
275};
276
277#define HAL_AST_IDX_INVALID	0xFFFF
278#define HAL_RX_MAX_MCS		12
279#define HAL_RX_MAX_MCS_HT	31
280#define HAL_RX_MAX_MCS_VHT	9
281#define HAL_RX_MAX_MCS_HE	11
282#define HAL_RX_MAX_NSS		8
283#define HAL_RX_MAX_NUM_LEGACY_RATES 12
284#define ATH12K_RX_RATE_TABLE_11AX_NUM	576
285#define ATH12K_RX_RATE_TABLE_NUM 320
286
287struct ath12k_rx_peer_rate_stats {
288	u64 ht_mcs_count[HAL_RX_MAX_MCS_HT + 1];
289	u64 vht_mcs_count[HAL_RX_MAX_MCS_VHT + 1];
290	u64 he_mcs_count[HAL_RX_MAX_MCS_HE + 1];
291	u64 nss_count[HAL_RX_MAX_NSS];
292	u64 bw_count[HAL_RX_BW_MAX];
293	u64 gi_count[HAL_RX_GI_MAX];
294	u64 legacy_count[HAL_RX_MAX_NUM_LEGACY_RATES];
295	u64 rx_rate[ATH12K_RX_RATE_TABLE_11AX_NUM];
296};
297
298struct ath12k_rx_peer_stats {
299	u64 num_msdu;
300	u64 num_mpdu_fcs_ok;
301	u64 num_mpdu_fcs_err;
302	u64 tcp_msdu_count;
303	u64 udp_msdu_count;
304	u64 other_msdu_count;
305	u64 ampdu_msdu_count;
306	u64 non_ampdu_msdu_count;
307	u64 stbc_count;
308	u64 beamformed_count;
309	u64 mcs_count[HAL_RX_MAX_MCS + 1];
310	u64 nss_count[HAL_RX_MAX_NSS];
311	u64 bw_count[HAL_RX_BW_MAX];
312	u64 gi_count[HAL_RX_GI_MAX];
313	u64 coding_count[HAL_RX_SU_MU_CODING_MAX];
314	u64 tid_count[IEEE80211_NUM_TIDS + 1];
315	u64 pream_cnt[HAL_RX_PREAMBLE_MAX];
316	u64 reception_type[HAL_RX_RECEPTION_TYPE_MAX];
317	u64 rx_duration;
318	u64 dcm_count;
319	u64 ru_alloc_cnt[HAL_RX_RU_ALLOC_TYPE_MAX];
320	struct ath12k_rx_peer_rate_stats pkt_stats;
321	struct ath12k_rx_peer_rate_stats byte_stats;
322};
323
324#define ATH12K_HE_MCS_NUM       12
325#define ATH12K_VHT_MCS_NUM      10
326#define ATH12K_BW_NUM           5
327#define ATH12K_NSS_NUM          4
328#define ATH12K_LEGACY_NUM       12
329#define ATH12K_GI_NUM           4
330#define ATH12K_HT_MCS_NUM       32
331
332enum ath12k_pkt_rx_err {
333	ATH12K_PKT_RX_ERR_FCS,
334	ATH12K_PKT_RX_ERR_TKIP,
335	ATH12K_PKT_RX_ERR_CRYPT,
336	ATH12K_PKT_RX_ERR_PEER_IDX_INVAL,
337	ATH12K_PKT_RX_ERR_MAX,
338};
339
340enum ath12k_ampdu_subfrm_num {
341	ATH12K_AMPDU_SUBFRM_NUM_10,
342	ATH12K_AMPDU_SUBFRM_NUM_20,
343	ATH12K_AMPDU_SUBFRM_NUM_30,
344	ATH12K_AMPDU_SUBFRM_NUM_40,
345	ATH12K_AMPDU_SUBFRM_NUM_50,
346	ATH12K_AMPDU_SUBFRM_NUM_60,
347	ATH12K_AMPDU_SUBFRM_NUM_MORE,
348	ATH12K_AMPDU_SUBFRM_NUM_MAX,
349};
350
351enum ath12k_amsdu_subfrm_num {
352	ATH12K_AMSDU_SUBFRM_NUM_1,
353	ATH12K_AMSDU_SUBFRM_NUM_2,
354	ATH12K_AMSDU_SUBFRM_NUM_3,
355	ATH12K_AMSDU_SUBFRM_NUM_4,
356	ATH12K_AMSDU_SUBFRM_NUM_MORE,
357	ATH12K_AMSDU_SUBFRM_NUM_MAX,
358};
359
360enum ath12k_counter_type {
361	ATH12K_COUNTER_TYPE_BYTES,
362	ATH12K_COUNTER_TYPE_PKTS,
363	ATH12K_COUNTER_TYPE_MAX,
364};
365
366enum ath12k_stats_type {
367	ATH12K_STATS_TYPE_SUCC,
368	ATH12K_STATS_TYPE_FAIL,
369	ATH12K_STATS_TYPE_RETRY,
370	ATH12K_STATS_TYPE_AMPDU,
371	ATH12K_STATS_TYPE_MAX,
372};
373
374struct ath12k_htt_data_stats {
375	u64 legacy[ATH12K_COUNTER_TYPE_MAX][ATH12K_LEGACY_NUM];
376	u64 ht[ATH12K_COUNTER_TYPE_MAX][ATH12K_HT_MCS_NUM];
377	u64 vht[ATH12K_COUNTER_TYPE_MAX][ATH12K_VHT_MCS_NUM];
378	u64 he[ATH12K_COUNTER_TYPE_MAX][ATH12K_HE_MCS_NUM];
379	u64 bw[ATH12K_COUNTER_TYPE_MAX][ATH12K_BW_NUM];
380	u64 nss[ATH12K_COUNTER_TYPE_MAX][ATH12K_NSS_NUM];
381	u64 gi[ATH12K_COUNTER_TYPE_MAX][ATH12K_GI_NUM];
382	u64 transmit_type[ATH12K_COUNTER_TYPE_MAX][HAL_RX_RECEPTION_TYPE_MAX];
383	u64 ru_loc[ATH12K_COUNTER_TYPE_MAX][HAL_RX_RU_ALLOC_TYPE_MAX];
384};
385
386struct ath12k_htt_tx_stats {
387	struct ath12k_htt_data_stats stats[ATH12K_STATS_TYPE_MAX];
388	u64 tx_duration;
389	u64 ba_fails;
390	u64 ack_fails;
391	u16 ru_start;
392	u16 ru_tones;
393	u32 mu_group[MAX_MU_GROUP_ID];
394};
395
396struct ath12k_per_ppdu_tx_stats {
397	u16 succ_pkts;
398	u16 failed_pkts;
399	u16 retry_pkts;
400	u32 succ_bytes;
401	u32 failed_bytes;
402	u32 retry_bytes;
403};
404
405struct ath12k_wbm_tx_stats {
406	u64 wbm_tx_comp_stats[HAL_WBM_REL_HTT_TX_COMP_STATUS_MAX];
407};
408
409struct ath12k_sta {
410	struct ath12k_vif *arvif;
 
411
412	/* the following are protected by ar->data_lock */
413	u32 changed; /* IEEE80211_RC_* */
414	u32 bw;
415	u32 nss;
416	u32 smps;
417	enum hal_pn_type pn_type;
418
419	struct work_struct update_wk;
420	struct rate_info txrate;
421	struct rate_info last_txrate;
422	u64 rx_duration;
423	u64 tx_duration;
424	u8 rssi_comb;
 
425	struct ath12k_rx_peer_stats *rx_stats;
426	struct ath12k_wbm_tx_stats *wbm_tx_stats;
427	u32 bw_prev;
428};
429
 
 
 
 
 
 
 
 
430#define ATH12K_MIN_5G_FREQ 4150
431#define ATH12K_MIN_6G_FREQ 5925
432#define ATH12K_MAX_6G_FREQ 7115
433#define ATH12K_NUM_CHANS 100
434#define ATH12K_MAX_5G_CHAN 173
435
436enum ath12k_state {
437	ATH12K_STATE_OFF,
438	ATH12K_STATE_ON,
439	ATH12K_STATE_RESTARTING,
440	ATH12K_STATE_RESTARTED,
441	ATH12K_STATE_WEDGED,
442	/* Add other states as required */
443};
444
445/* Antenna noise floor */
446#define ATH12K_DEFAULT_NOISE_FLOOR -95
447
448struct ath12k_fw_stats {
449	u32 pdev_id;
450	u32 stats_id;
451	struct list_head pdevs;
452	struct list_head vdevs;
453	struct list_head bcn;
454};
455
 
 
 
 
 
 
 
 
 
 
 
 
 
456struct ath12k_per_peer_tx_stats {
457	u32 succ_bytes;
458	u32 retry_bytes;
459	u32 failed_bytes;
460	u32 duration;
461	u16 succ_pkts;
462	u16 retry_pkts;
463	u16 failed_pkts;
464	u16 ru_start;
465	u16 ru_tones;
466	u8 ba_fails;
467	u8 ppdu_type;
468	u32 mu_grpid;
469	u32 mu_pos;
470	bool is_ampdu;
471};
472
473#define ATH12K_FLUSH_TIMEOUT (5 * HZ)
474#define ATH12K_VDEV_DELETE_TIMEOUT_HZ (5 * HZ)
475
476struct ath12k {
477	struct ath12k_base *ab;
478	struct ath12k_pdev *pdev;
479	struct ath12k_hw *ah;
480	struct ath12k_wmi_pdev *wmi;
481	struct ath12k_pdev_dp dp;
482	u8 mac_addr[ETH_ALEN];
483	u32 ht_cap_info;
484	u32 vht_cap_info;
485	struct ath12k_he ar_he;
486	enum ath12k_state state;
487	bool supports_6ghz;
488	struct {
489		struct completion started;
490		struct completion completed;
491		struct completion on_channel;
492		struct delayed_work timeout;
493		enum ath12k_scan_state state;
494		bool is_roc;
495		int vdev_id;
496		int roc_freq;
497		bool roc_notify;
498	} scan;
499
500	struct {
501		struct ieee80211_supported_band sbands[NUM_NL80211_BANDS];
502		struct ieee80211_sband_iftype_data
503			iftype[NUM_NL80211_BANDS][NUM_NL80211_IFTYPES];
504	} mac;
505
506	unsigned long dev_flags;
507	unsigned int filter_flags;
508	unsigned long monitor_flags;
509	u32 min_tx_power;
510	u32 max_tx_power;
511	u32 txpower_limit_2g;
512	u32 txpower_limit_5g;
513	u32 txpower_scale;
514	u32 power_scale;
515	u32 chan_tx_pwr;
516	u32 num_stations;
517	u32 max_num_stations;
518	bool monitor_present;
519	/* To synchronize concurrent synchronous mac80211 callback operations,
520	 * concurrent debugfs configuration and concurrent FW statistics events.
521	 */
522	struct mutex conf_mutex;
523	/* protects the radio specific data like debug stats, ppdu_stats_info stats,
524	 * vdev_stop_status info, scan data, ath12k_sta info, ath12k_vif info,
525	 * channel context data, survey info, test mode data.
526	 */
527	spinlock_t data_lock;
528
529	struct list_head arvifs;
530	/* should never be NULL; needed for regular htt rx */
531	struct ieee80211_channel *rx_channel;
532
533	/* valid during scan; needed for mgmt rx during scan */
534	struct ieee80211_channel *scan_channel;
535
536	u8 cfg_tx_chainmask;
537	u8 cfg_rx_chainmask;
538	u8 num_rx_chains;
539	u8 num_tx_chains;
540	/* pdev_idx starts from 0 whereas pdev->pdev_id starts with 1 */
541	u8 pdev_idx;
542	u8 lmac_id;
543	u8 hw_link_id;
544
545	struct completion peer_assoc_done;
546	struct completion peer_delete_done;
547
548	int install_key_status;
549	struct completion install_key_done;
550
551	int last_wmi_vdev_start_status;
552	struct completion vdev_setup_done;
553	struct completion vdev_delete_done;
554
555	int num_peers;
556	int max_num_peers;
557	u32 num_started_vdevs;
558	u32 num_created_vdevs;
559	unsigned long long allocated_vdev_map;
560
561	struct idr txmgmt_idr;
562	/* protects txmgmt_idr data */
563	spinlock_t txmgmt_idr_lock;
564	atomic_t num_pending_mgmt_tx;
565	wait_queue_head_t txmgmt_empty_waitq;
566
567	/* cycle count is reported twice for each visited channel during scan.
568	 * access protected by data_lock
569	 */
570	u32 survey_last_rx_clear_count;
571	u32 survey_last_cycle_count;
572
573	/* Channel info events are expected to come in pairs without and with
574	 * COMPLETE flag set respectively for each channel visit during scan.
575	 *
576	 * However there are deviations from this rule. This flag is used to
577	 * avoid reporting garbage data.
578	 */
579	bool ch_info_can_report_survey;
580	struct survey_info survey[ATH12K_NUM_CHANS];
581	struct completion bss_survey_done;
582
583	struct work_struct regd_update_work;
584
585	struct work_struct wmi_mgmt_tx_work;
586	struct sk_buff_head wmi_mgmt_tx_queue;
587
 
 
 
588	struct ath12k_per_peer_tx_stats peer_tx_stats;
589	struct list_head ppdu_stats_info;
590	u32 ppdu_stat_list_depth;
591
592	struct ath12k_per_peer_tx_stats cached_stats;
593	u32 last_ppdu_id;
594	u32 cached_ppdu_id;
 
 
 
595
596	bool dfs_block_radar_events;
597	bool monitor_conf_enabled;
598	bool monitor_vdev_created;
599	bool monitor_started;
600	int monitor_vdev_id;
 
 
 
 
 
601};
602
603struct ath12k_hw {
604	struct ieee80211_hw *hw;
 
 
 
 
 
 
 
605
606	u8 num_radio;
 
 
607	struct ath12k radio[] __aligned(sizeof(void *));
608};
609
610struct ath12k_band_cap {
611	u32 phy_id;
612	u32 max_bw_supported;
613	u32 ht_cap_info;
614	u32 he_cap_info[2];
615	u32 he_mcs;
616	u32 he_cap_phy_info[PSOC_HOST_MAX_PHY_SIZE];
617	struct ath12k_wmi_ppe_threshold_arg he_ppet;
618	u16 he_6ghz_capa;
619	u32 eht_cap_mac_info[WMI_MAX_EHTCAP_MAC_SIZE];
620	u32 eht_cap_phy_info[WMI_MAX_EHTCAP_PHY_SIZE];
621	u32 eht_mcs_20_only;
622	u32 eht_mcs_80;
623	u32 eht_mcs_160;
624	u32 eht_mcs_320;
625	struct ath12k_wmi_ppe_threshold_arg eht_ppet;
626	u32 eht_cap_info_internal;
627};
628
629struct ath12k_pdev_cap {
630	u32 supported_bands;
631	u32 ampdu_density;
632	u32 vht_cap;
633	u32 vht_mcs;
634	u32 he_mcs;
635	u32 tx_chain_mask;
636	u32 rx_chain_mask;
637	u32 tx_chain_mask_shift;
638	u32 rx_chain_mask_shift;
639	struct ath12k_band_cap band[NUM_NL80211_BANDS];
640};
641
642struct mlo_timestamp {
643	u32 info;
644	u32 sync_timestamp_lo_us;
645	u32 sync_timestamp_hi_us;
646	u32 mlo_offset_lo;
647	u32 mlo_offset_hi;
648	u32 mlo_offset_clks;
649	u32 mlo_comp_clks;
650	u32 mlo_comp_timer;
651};
652
653struct ath12k_pdev {
654	struct ath12k *ar;
655	u32 pdev_id;
 
656	struct ath12k_pdev_cap cap;
657	u8 mac_addr[ETH_ALEN];
658	struct mlo_timestamp timestamp;
659};
660
661struct ath12k_fw_pdev {
662	u32 pdev_id;
663	u32 phy_id;
664	u32 supported_bands;
665};
666
667struct ath12k_board_data {
668	const struct firmware *fw;
669	const void *data;
670	size_t len;
671};
672
673struct ath12k_soc_dp_tx_err_stats {
674	/* TCL Ring Descriptor unavailable */
675	u32 desc_na[DP_TCL_NUM_RING_MAX];
676	/* Other failures during dp_tx due to mem allocation failure
677	 * idr unavailable etc.
678	 */
679	atomic_t misc_fail;
680};
681
682struct ath12k_soc_dp_stats {
683	u32 err_ring_pkts;
684	u32 invalid_rbm;
685	u32 rxdma_error[HAL_REO_ENTR_RING_RXDMA_ECODE_MAX];
686	u32 reo_error[HAL_REO_DEST_RING_ERROR_CODE_MAX];
687	u32 hal_reo_error[DP_REO_DST_RING_MAX];
688	struct ath12k_soc_dp_tx_err_stats tx_err;
689};
690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691/* Master structure to hold the hw data which may be used in core module */
692struct ath12k_base {
693	enum ath12k_hw_rev hw_rev;
694	struct platform_device *pdev;
695	struct device *dev;
696	struct ath12k_qmi qmi;
697	struct ath12k_wmi_base wmi_ab;
698	struct completion fw_ready;
 
699	int num_radios;
700	/* HW channel counters frequency value in hertz common to all MACs */
701	u32 cc_freq_hz;
702
 
 
 
 
703	struct ath12k_htc htc;
704
705	struct ath12k_dp dp;
706
707	void __iomem *mem;
708	unsigned long mem_len;
709
710	struct {
711		enum ath12k_bus bus;
712		const struct ath12k_hif_ops *ops;
713	} hif;
714
 
 
 
 
 
715	struct ath12k_ce ce;
716	struct timer_list rx_replenish_retry;
717	struct ath12k_hal hal;
718	/* To synchronize core_start/core_stop */
719	struct mutex core_lock;
720	/* Protects data like peers */
721	spinlock_t base_lock;
722
723	/* Single pdev device (struct ath12k_hw_params::single_pdev_only):
724	 *
725	 * Firmware maintains data for all bands but advertises a single
726	 * phy to the host which is stored as a single element in this
727	 * array.
728	 *
729	 * Other devices:
730	 *
731	 * This array will contain as many elements as the number of
732	 * radios.
733	 */
734	struct ath12k_pdev pdevs[MAX_RADIOS];
735
736	/* struct ath12k_hw_params::single_pdev_only devices use this to
737	 * store phy specific data
738	 */
739	struct ath12k_fw_pdev fw_pdev[MAX_RADIOS];
740	u8 fw_pdev_count;
741
742	struct ath12k_pdev __rcu *pdevs_active[MAX_RADIOS];
743
744	/* Holds information of wiphy (hw) registration.
745	 *
746	 * In Multi/Single Link Operation case, all pdevs are registered as
747	 * a single wiphy. In other (legacy/Non-MLO) cases, each pdev is
748	 * registered as separate wiphys.
749	 */
750	struct ath12k_hw *ah[MAX_RADIOS];
751	u8 num_hw;
752
753	struct ath12k_wmi_hal_reg_capabilities_ext_arg hal_reg_cap[MAX_RADIOS];
754	unsigned long long free_vdev_map;
755	unsigned long long free_vdev_stats_id_map;
756	struct list_head peers;
757	wait_queue_head_t peer_mapping_wq;
758	u8 mac_addr[ETH_ALEN];
759	bool wmi_ready;
760	u32 wlan_init_status;
761	int irq_num[ATH12K_IRQ_NUM_MAX];
762	struct ath12k_ext_irq_grp ext_irq_grp[ATH12K_EXT_IRQ_GRP_NUM_MAX];
763	struct napi_struct *napi;
764	struct ath12k_wmi_target_cap_arg target_caps;
765	u32 ext_service_bitmap[WMI_SERVICE_EXT_BM_SIZE];
766	bool pdevs_macaddr_valid;
767
768	const struct ath12k_hw_params *hw_params;
769
770	const struct firmware *cal_file;
771
772	/* Below regd's are protected by ab->data_lock */
773	/* This is the regd set for every radio
774	 * by the firmware during initialization
775	 */
776	struct ieee80211_regdomain *default_regd[MAX_RADIOS];
777	/* This regd is set during dynamic country setting
778	 * This may or may not be used during the runtime
779	 */
780	struct ieee80211_regdomain *new_regd[MAX_RADIOS];
781
782	/* Current DFS Regulatory */
783	enum ath12k_dfs_region dfs_region;
784	struct ath12k_soc_dp_stats soc_stats;
 
 
 
785
786	unsigned long dev_flags;
787	struct completion driver_recovery;
788	struct workqueue_struct *workqueue;
789	struct work_struct restart_work;
790	struct workqueue_struct *workqueue_aux;
791	struct work_struct reset_work;
792	atomic_t reset_count;
793	atomic_t recovery_count;
794	atomic_t recovery_start_count;
795	bool is_reset;
796	struct completion reset_complete;
797	struct completion reconfigure_complete;
798	struct completion recovery_start;
799	/* continuous recovery fail count */
800	atomic_t fail_cont_count;
801	unsigned long reset_fail_timeout;
802	struct {
803		/* protected by data_lock */
804		u32 fw_crash_counter;
805	} stats;
806	u32 pktlog_defs_checksum;
807
808	struct ath12k_dbring_cap *db_caps;
809	u32 num_db_cap;
810
811	struct timer_list mon_reap_timer;
812
813	struct completion htc_suspend;
814
815	u64 fw_soc_drop_count;
816	bool static_window_map;
817
818	struct work_struct rfkill_work;
819	/* true means radio is on */
820	bool rfkill_radio_on;
821
822	struct {
823		enum ath12k_bdf_search bdf_search;
824		u32 vendor;
825		u32 device;
826		u32 subsystem_vendor;
827		u32 subsystem_device;
828	} id;
829
830	struct {
831		u32 api_version;
832
833		const struct firmware *fw;
834		const u8 *amss_data;
835		size_t amss_len;
836		const u8 *amss_dualmac_data;
837		size_t amss_dualmac_len;
838		const u8 *m3_data;
839		size_t m3_len;
840
841		DECLARE_BITMAP(fw_features, ATH12K_FW_FEATURE_COUNT);
842	} fw;
843
844	const struct hal_rx_ops *hal_rx_ops;
845
846	/* slo_capable denotes if the single/multi link operation
847	 * is supported within the same chip (SoC).
 
 
848	 */
849	bool slo_capable;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
851	/* must be last */
852	u8 drv_priv[] __aligned(sizeof(void *));
853};
854
855struct ath12k_pdev_map {
856	struct ath12k_base *ab;
857	u8 pdev_idx;
858};
859
860int ath12k_core_qmi_firmware_ready(struct ath12k_base *ab);
861int ath12k_core_pre_init(struct ath12k_base *ab);
862int ath12k_core_init(struct ath12k_base *ath12k);
863void ath12k_core_deinit(struct ath12k_base *ath12k);
864struct ath12k_base *ath12k_core_alloc(struct device *dev, size_t priv_size,
865				      enum ath12k_bus bus);
866void ath12k_core_free(struct ath12k_base *ath12k);
867int ath12k_core_fetch_board_data_api_1(struct ath12k_base *ab,
868				       struct ath12k_board_data *bd,
869				       char *filename);
870int ath12k_core_fetch_bdf(struct ath12k_base *ath12k,
871			  struct ath12k_board_data *bd);
872void ath12k_core_free_bdf(struct ath12k_base *ab, struct ath12k_board_data *bd);
873int ath12k_core_fetch_regdb(struct ath12k_base *ab, struct ath12k_board_data *bd);
874int ath12k_core_check_dt(struct ath12k_base *ath12k);
875int ath12k_core_check_smbios(struct ath12k_base *ab);
876void ath12k_core_halt(struct ath12k *ar);
 
877int ath12k_core_resume(struct ath12k_base *ab);
878int ath12k_core_suspend(struct ath12k_base *ab);
 
879
880const struct firmware *ath12k_core_firmware_request(struct ath12k_base *ab,
881						    const char *filename);
882u32 ath12k_core_get_max_station_per_radio(struct ath12k_base *ab);
883u32 ath12k_core_get_max_peers_per_radio(struct ath12k_base *ab);
884u32 ath12k_core_get_max_num_tids(struct ath12k_base *ab);
885
886static inline const char *ath12k_scan_state_str(enum ath12k_scan_state state)
887{
888	switch (state) {
889	case ATH12K_SCAN_IDLE:
890		return "idle";
891	case ATH12K_SCAN_STARTING:
892		return "starting";
893	case ATH12K_SCAN_RUNNING:
894		return "running";
895	case ATH12K_SCAN_ABORTING:
896		return "aborting";
897	}
898
899	return "unknown";
900}
901
902static inline struct ath12k_skb_cb *ATH12K_SKB_CB(struct sk_buff *skb)
903{
904	BUILD_BUG_ON(sizeof(struct ath12k_skb_cb) >
905		     IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
906	return (struct ath12k_skb_cb *)&IEEE80211_SKB_CB(skb)->driver_data;
907}
908
909static inline struct ath12k_skb_rxcb *ATH12K_SKB_RXCB(struct sk_buff *skb)
910{
911	BUILD_BUG_ON(sizeof(struct ath12k_skb_rxcb) > sizeof(skb->cb));
912	return (struct ath12k_skb_rxcb *)skb->cb;
913}
914
915static inline struct ath12k_vif *ath12k_vif_to_arvif(struct ieee80211_vif *vif)
916{
917	return (struct ath12k_vif *)vif->drv_priv;
918}
919
920static inline struct ath12k_sta *ath12k_sta_to_arsta(struct ieee80211_sta *sta)
921{
922	return (struct ath12k_sta *)sta->drv_priv;
923}
924
 
 
 
 
 
 
 
 
 
 
925static inline struct ath12k *ath12k_ab_to_ar(struct ath12k_base *ab,
926					     int mac_id)
927{
928	return ab->pdevs[ath12k_hw_mac_id_to_pdev_id(ab->hw_params, mac_id)].ar;
929}
930
931static inline void ath12k_core_create_firmware_path(struct ath12k_base *ab,
932						    const char *filename,
933						    void *buf, size_t buf_len)
934{
935	snprintf(buf, buf_len, "%s/%s/%s", ATH12K_FW_DIR,
936		 ab->hw_params->fw.dir, filename);
937}
938
939static inline const char *ath12k_bus_str(enum ath12k_bus bus)
940{
941	switch (bus) {
942	case ATH12K_BUS_PCI:
943		return "pci";
944	}
945
946	return "unknown";
947}
948
949static inline struct ath12k_hw *ath12k_hw_to_ah(struct ieee80211_hw  *hw)
950{
951	return hw->priv;
952}
953
954static inline struct ath12k *ath12k_ah_to_ar(struct ath12k_hw *ah)
955{
956	return ah->radio;
 
 
 
 
 
 
 
 
 
957}
958
959static inline struct ieee80211_hw *ath12k_ar_to_hw(struct ath12k *ar)
960{
961	return ar->ah->hw;
962}
 
 
 
 
963#endif /* _CORE_H_ */
v6.13.7
   1/* SPDX-License-Identifier: BSD-3-Clause-Clear */
   2/*
   3 * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved.
   4 * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
   5 */
   6
   7#ifndef ATH12K_CORE_H
   8#define ATH12K_CORE_H
   9
  10#include <linux/types.h>
  11#include <linux/interrupt.h>
  12#include <linux/irq.h>
  13#include <linux/bitfield.h>
  14#include <linux/dmi.h>
  15#include <linux/ctype.h>
  16#include <linux/firmware.h>
  17#include <linux/panic_notifier.h>
  18#include "qmi.h"
  19#include "htc.h"
  20#include "wmi.h"
  21#include "hal.h"
  22#include "dp.h"
  23#include "ce.h"
  24#include "mac.h"
  25#include "hw.h"
  26#include "hal_rx.h"
  27#include "reg.h"
  28#include "dbring.h"
  29#include "fw.h"
  30#include "acpi.h"
  31#include "wow.h"
  32#include "debugfs_htt_stats.h"
  33#include "coredump.h"
  34
  35#define SM(_v, _f) (((_v) << _f##_LSB) & _f##_MASK)
  36
  37#define ATH12K_TX_MGMT_NUM_PENDING_MAX	512
  38
  39#define ATH12K_TX_MGMT_TARGET_MAX_SUPPORT_WMI 64
  40
  41/* Pending management packets threshold for dropping probe responses */
  42#define ATH12K_PRB_RSP_DROP_THRESHOLD ((ATH12K_TX_MGMT_TARGET_MAX_SUPPORT_WMI * 3) / 4)
  43
  44/* SMBIOS type containing Board Data File Name Extension */
  45#define ATH12K_SMBIOS_BDF_EXT_TYPE 0xF8
  46
  47/* SMBIOS type structure length (excluding strings-set) */
  48#define ATH12K_SMBIOS_BDF_EXT_LENGTH 0x9
  49
  50/* The magic used by QCA spec */
  51#define ATH12K_SMBIOS_BDF_EXT_MAGIC "BDF_"
  52
  53#define ATH12K_INVALID_HW_MAC_ID	0xFF
  54#define ATH12K_CONNECTION_LOSS_HZ	(3 * HZ)
  55#define	ATH12K_RX_RATE_TABLE_NUM	320
  56#define	ATH12K_RX_RATE_TABLE_11AX_NUM	576
  57
  58#define ATH12K_MON_TIMER_INTERVAL  10
  59#define ATH12K_RESET_TIMEOUT_HZ			(20 * HZ)
  60#define ATH12K_RESET_MAX_FAIL_COUNT_FIRST	3
  61#define ATH12K_RESET_MAX_FAIL_COUNT_FINAL	5
  62#define ATH12K_RESET_FAIL_TIMEOUT_HZ		(20 * HZ)
  63#define ATH12K_RECONFIGURE_TIMEOUT_HZ		(10 * HZ)
  64#define ATH12K_RECOVER_START_TIMEOUT_HZ		(20 * HZ)
  65
  66enum ath12k_bdf_search {
  67	ATH12K_BDF_SEARCH_DEFAULT,
  68	ATH12K_BDF_SEARCH_BUS_AND_BOARD,
  69};
  70
  71enum wme_ac {
  72	WME_AC_BE,
  73	WME_AC_BK,
  74	WME_AC_VI,
  75	WME_AC_VO,
  76	WME_NUM_AC
  77};
  78
  79#define ATH12K_HT_MCS_MAX	7
  80#define ATH12K_VHT_MCS_MAX	9
  81#define ATH12K_HE_MCS_MAX	11
  82
  83enum ath12k_crypt_mode {
  84	/* Only use hardware crypto engine */
  85	ATH12K_CRYPT_MODE_HW,
  86	/* Only use software crypto */
  87	ATH12K_CRYPT_MODE_SW,
  88};
  89
  90static inline enum wme_ac ath12k_tid_to_ac(u32 tid)
  91{
  92	return (((tid == 0) || (tid == 3)) ? WME_AC_BE :
  93		((tid == 1) || (tid == 2)) ? WME_AC_BK :
  94		((tid == 4) || (tid == 5)) ? WME_AC_VI :
  95		WME_AC_VO);
  96}
  97
  98static inline u64 ath12k_le32hilo_to_u64(__le32 hi, __le32 lo)
  99{
 100	u64 hi64 = le32_to_cpu(hi);
 101	u64 lo64 = le32_to_cpu(lo);
 102
 103	return (hi64 << 32) | lo64;
 104}
 105
 106enum ath12k_skb_flags {
 107	ATH12K_SKB_HW_80211_ENCAP = BIT(0),
 108	ATH12K_SKB_CIPHER_SET = BIT(1),
 109};
 110
 111struct ath12k_skb_cb {
 112	dma_addr_t paddr;
 113	struct ath12k *ar;
 114	struct ieee80211_vif *vif;
 115	dma_addr_t paddr_ext_desc;
 116	u32 cipher;
 117	u8 flags;
 118};
 119
 120struct ath12k_skb_rxcb {
 121	dma_addr_t paddr;
 122	bool is_first_msdu;
 123	bool is_last_msdu;
 124	bool is_continuation;
 125	bool is_mcbc;
 126	bool is_eapol;
 127	struct hal_rx_desc *rx_desc;
 128	u8 err_rel_src;
 129	u8 err_code;
 130	u8 mac_id;
 131	u8 unmapped;
 132	u8 is_frag;
 133	u8 tid;
 134	u16 peer_id;
 135};
 136
 137enum ath12k_hw_rev {
 138	ATH12K_HW_QCN9274_HW10,
 139	ATH12K_HW_QCN9274_HW20,
 140	ATH12K_HW_WCN7850_HW20
 141};
 142
 143enum ath12k_firmware_mode {
 144	/* the default mode, standard 802.11 functionality */
 145	ATH12K_FIRMWARE_MODE_NORMAL,
 146
 147	/* factory tests etc */
 148	ATH12K_FIRMWARE_MODE_FTM,
 149};
 150
 151#define ATH12K_IRQ_NUM_MAX 57
 152#define ATH12K_EXT_IRQ_NUM_MAX	16
 153
 154struct ath12k_ext_irq_grp {
 155	struct ath12k_base *ab;
 156	u32 irqs[ATH12K_EXT_IRQ_NUM_MAX];
 157	u32 num_irq;
 158	u32 grp_id;
 159	u64 timestamp;
 160	struct napi_struct napi;
 161	struct net_device *napi_ndev;
 162};
 163
 164struct ath12k_smbios_bdf {
 165	struct dmi_header hdr;
 166	u32 padding;
 167	u8 bdf_enabled;
 168	u8 bdf_ext[];
 169} __packed;
 170
 171#define HEHANDLE_CAP_PHYINFO_SIZE       3
 172#define HECAP_PHYINFO_SIZE              9
 173#define HECAP_MACINFO_SIZE              5
 174#define HECAP_TXRX_MCS_NSS_SIZE         2
 175#define HECAP_PPET16_PPET8_MAX_SIZE     25
 176
 177#define HE_PPET16_PPET8_SIZE            8
 178
 179/* 802.11ax PPE (PPDU packet Extension) threshold */
 180struct he_ppe_threshold {
 181	u32 numss_m1;
 182	u32 ru_mask;
 183	u32 ppet16_ppet8_ru3_ru0[HE_PPET16_PPET8_SIZE];
 184};
 185
 186struct ath12k_he {
 187	u8 hecap_macinfo[HECAP_MACINFO_SIZE];
 188	u32 hecap_rxmcsnssmap;
 189	u32 hecap_txmcsnssmap;
 190	u32 hecap_phyinfo[HEHANDLE_CAP_PHYINFO_SIZE];
 191	struct he_ppe_threshold   hecap_ppet;
 192	u32 heop_param;
 193};
 194
 
 
 195enum {
 196	WMI_HOST_TP_SCALE_MAX   = 0,
 197	WMI_HOST_TP_SCALE_50    = 1,
 198	WMI_HOST_TP_SCALE_25    = 2,
 199	WMI_HOST_TP_SCALE_12    = 3,
 200	WMI_HOST_TP_SCALE_MIN   = 4,
 201	WMI_HOST_TP_SCALE_SIZE   = 5,
 202};
 203
 204enum ath12k_scan_state {
 205	ATH12K_SCAN_IDLE,
 206	ATH12K_SCAN_STARTING,
 207	ATH12K_SCAN_RUNNING,
 208	ATH12K_SCAN_ABORTING,
 209};
 210
 211enum ath12k_dev_flags {
 212	ATH12K_CAC_RUNNING,
 213	ATH12K_FLAG_CRASH_FLUSH,
 214	ATH12K_FLAG_RAW_MODE,
 215	ATH12K_FLAG_HW_CRYPTO_DISABLED,
 216	ATH12K_FLAG_RECOVERY,
 217	ATH12K_FLAG_UNREGISTERING,
 218	ATH12K_FLAG_REGISTERED,
 219	ATH12K_FLAG_QMI_FAIL,
 220	ATH12K_FLAG_HTC_SUSPEND_COMPLETE,
 221	ATH12K_FLAG_CE_IRQ_ENABLED,
 222	ATH12K_FLAG_EXT_IRQ_ENABLED,
 223};
 224
 225struct ath12k_tx_conf {
 226	bool changed;
 227	u16 ac;
 228	struct ieee80211_tx_queue_params tx_queue_params;
 229};
 230
 231struct ath12k_key_conf {
 232	enum set_key_cmd cmd;
 233	struct list_head list;
 234	struct ieee80211_sta *sta;
 235	struct ieee80211_key_conf *key;
 236};
 237
 238struct ath12k_vif_cache {
 239	struct ath12k_tx_conf tx_conf;
 240	struct ath12k_key_conf key_conf;
 241	u32 bss_conf_changed;
 242};
 243
 244struct ath12k_rekey_data {
 245	u8 kck[NL80211_KCK_LEN];
 246	u8 kek[NL80211_KCK_LEN];
 247	u64 replay_ctr;
 248	bool enable_offload;
 249};
 250
 251struct ath12k_link_vif {
 252	u32 vdev_id;
 
 
 253	u32 beacon_interval;
 254	u32 dtim_period;
 255	u16 ast_hash;
 256	u16 ast_idx;
 257	u16 tcl_metadata;
 258	u8 hal_addr_search_flags;
 259	u8 search_type;
 260
 261	struct ath12k *ar;
 
 262
 263	int bank_id;
 264	u8 vdev_id_check_en;
 265
 266	struct wmi_wmm_params_all_arg wmm_params;
 267	struct list_head list;
 268
 269	bool is_created;
 270	bool is_started;
 271	bool is_up;
 272	u8 bssid[ETH_ALEN];
 273	struct cfg80211_bitrate_mask bitrate_mask;
 274	struct delayed_work connection_loss_work;
 275	int num_legacy_stations;
 276	int rtscts_prot_mode;
 277	int txpower;
 278	bool rsnie_present;
 279	bool wpaie_present;
 280	struct ieee80211_chanctx_conf chanctx;
 281	u8 vdev_stats_id;
 282	u32 punct_bitmap;
 283	u8 link_id;
 284	struct ath12k_vif *ahvif;
 285	struct ath12k_rekey_data rekey_data;
 286};
 287
 288struct ath12k_vif {
 289	enum wmi_vdev_type vdev_type;
 290	enum wmi_vdev_subtype vdev_subtype;
 291	struct ieee80211_vif *vif;
 292	struct ath12k_hw *ah;
 293
 294	union {
 295		struct {
 296			u32 uapsd;
 297		} sta;
 298		struct {
 299			/* 127 stations; wmi limit */
 300			u8 tim_bitmap[16];
 301			u8 tim_len;
 302			u32 ssid_len;
 303			u8 ssid[IEEE80211_MAX_SSID_LEN];
 304			bool hidden_ssid;
 305			/* P2P_IE with NoA attribute for P2P_GO case */
 306			u32 noa_len;
 307			u8 *noa_data;
 308		} ap;
 309	} u;
 310
 
 
 311	u32 aid;
 
 
 
 
 
 
 
 
 312	u32 key_cipher;
 313	u8 tx_encap_type;
 
 
 314	bool ps;
 315
 316	struct ath12k_link_vif deflink;
 317	struct ath12k_link_vif __rcu *link[IEEE80211_MLD_MAX_NUM_LINKS];
 318	struct ath12k_vif_cache *cache[IEEE80211_MLD_MAX_NUM_LINKS];
 319	/* indicates bitmap of link vif created in FW */
 320	u16 links_map;
 321
 322	/* Must be last - ends in a flexible-array member.
 323	 *
 324	 * FIXME: Driver should not copy struct ieee80211_chanctx_conf,
 325	 * especially because it has a flexible array. Find a better way.
 326	 */
 327	struct ieee80211_chanctx_conf chanctx;
 328};
 329
 330struct ath12k_vif_iter {
 331	u32 vdev_id;
 332	struct ath12k *ar;
 333	struct ath12k_link_vif *arvif;
 334};
 335
 336#define HAL_AST_IDX_INVALID	0xFFFF
 337#define HAL_RX_MAX_MCS		12
 338#define HAL_RX_MAX_MCS_HT	31
 339#define HAL_RX_MAX_MCS_VHT	9
 340#define HAL_RX_MAX_MCS_HE	11
 341#define HAL_RX_MAX_NSS		8
 342#define HAL_RX_MAX_NUM_LEGACY_RATES 12
 343#define ATH12K_RX_RATE_TABLE_11AX_NUM	576
 344#define ATH12K_RX_RATE_TABLE_NUM 320
 345
 346struct ath12k_rx_peer_rate_stats {
 347	u64 ht_mcs_count[HAL_RX_MAX_MCS_HT + 1];
 348	u64 vht_mcs_count[HAL_RX_MAX_MCS_VHT + 1];
 349	u64 he_mcs_count[HAL_RX_MAX_MCS_HE + 1];
 350	u64 nss_count[HAL_RX_MAX_NSS];
 351	u64 bw_count[HAL_RX_BW_MAX];
 352	u64 gi_count[HAL_RX_GI_MAX];
 353	u64 legacy_count[HAL_RX_MAX_NUM_LEGACY_RATES];
 354	u64 rx_rate[ATH12K_RX_RATE_TABLE_11AX_NUM];
 355};
 356
 357struct ath12k_rx_peer_stats {
 358	u64 num_msdu;
 359	u64 num_mpdu_fcs_ok;
 360	u64 num_mpdu_fcs_err;
 361	u64 tcp_msdu_count;
 362	u64 udp_msdu_count;
 363	u64 other_msdu_count;
 364	u64 ampdu_msdu_count;
 365	u64 non_ampdu_msdu_count;
 366	u64 stbc_count;
 367	u64 beamformed_count;
 368	u64 mcs_count[HAL_RX_MAX_MCS + 1];
 369	u64 nss_count[HAL_RX_MAX_NSS];
 370	u64 bw_count[HAL_RX_BW_MAX];
 371	u64 gi_count[HAL_RX_GI_MAX];
 372	u64 coding_count[HAL_RX_SU_MU_CODING_MAX];
 373	u64 tid_count[IEEE80211_NUM_TIDS + 1];
 374	u64 pream_cnt[HAL_RX_PREAMBLE_MAX];
 375	u64 reception_type[HAL_RX_RECEPTION_TYPE_MAX];
 376	u64 rx_duration;
 377	u64 dcm_count;
 378	u64 ru_alloc_cnt[HAL_RX_RU_ALLOC_TYPE_MAX];
 379	struct ath12k_rx_peer_rate_stats pkt_stats;
 380	struct ath12k_rx_peer_rate_stats byte_stats;
 381};
 382
 383#define ATH12K_HE_MCS_NUM       12
 384#define ATH12K_VHT_MCS_NUM      10
 385#define ATH12K_BW_NUM           5
 386#define ATH12K_NSS_NUM          4
 387#define ATH12K_LEGACY_NUM       12
 388#define ATH12K_GI_NUM           4
 389#define ATH12K_HT_MCS_NUM       32
 390
 391enum ath12k_pkt_rx_err {
 392	ATH12K_PKT_RX_ERR_FCS,
 393	ATH12K_PKT_RX_ERR_TKIP,
 394	ATH12K_PKT_RX_ERR_CRYPT,
 395	ATH12K_PKT_RX_ERR_PEER_IDX_INVAL,
 396	ATH12K_PKT_RX_ERR_MAX,
 397};
 398
 399enum ath12k_ampdu_subfrm_num {
 400	ATH12K_AMPDU_SUBFRM_NUM_10,
 401	ATH12K_AMPDU_SUBFRM_NUM_20,
 402	ATH12K_AMPDU_SUBFRM_NUM_30,
 403	ATH12K_AMPDU_SUBFRM_NUM_40,
 404	ATH12K_AMPDU_SUBFRM_NUM_50,
 405	ATH12K_AMPDU_SUBFRM_NUM_60,
 406	ATH12K_AMPDU_SUBFRM_NUM_MORE,
 407	ATH12K_AMPDU_SUBFRM_NUM_MAX,
 408};
 409
 410enum ath12k_amsdu_subfrm_num {
 411	ATH12K_AMSDU_SUBFRM_NUM_1,
 412	ATH12K_AMSDU_SUBFRM_NUM_2,
 413	ATH12K_AMSDU_SUBFRM_NUM_3,
 414	ATH12K_AMSDU_SUBFRM_NUM_4,
 415	ATH12K_AMSDU_SUBFRM_NUM_MORE,
 416	ATH12K_AMSDU_SUBFRM_NUM_MAX,
 417};
 418
 419enum ath12k_counter_type {
 420	ATH12K_COUNTER_TYPE_BYTES,
 421	ATH12K_COUNTER_TYPE_PKTS,
 422	ATH12K_COUNTER_TYPE_MAX,
 423};
 424
 425enum ath12k_stats_type {
 426	ATH12K_STATS_TYPE_SUCC,
 427	ATH12K_STATS_TYPE_FAIL,
 428	ATH12K_STATS_TYPE_RETRY,
 429	ATH12K_STATS_TYPE_AMPDU,
 430	ATH12K_STATS_TYPE_MAX,
 431};
 432
 433struct ath12k_htt_data_stats {
 434	u64 legacy[ATH12K_COUNTER_TYPE_MAX][ATH12K_LEGACY_NUM];
 435	u64 ht[ATH12K_COUNTER_TYPE_MAX][ATH12K_HT_MCS_NUM];
 436	u64 vht[ATH12K_COUNTER_TYPE_MAX][ATH12K_VHT_MCS_NUM];
 437	u64 he[ATH12K_COUNTER_TYPE_MAX][ATH12K_HE_MCS_NUM];
 438	u64 bw[ATH12K_COUNTER_TYPE_MAX][ATH12K_BW_NUM];
 439	u64 nss[ATH12K_COUNTER_TYPE_MAX][ATH12K_NSS_NUM];
 440	u64 gi[ATH12K_COUNTER_TYPE_MAX][ATH12K_GI_NUM];
 441	u64 transmit_type[ATH12K_COUNTER_TYPE_MAX][HAL_RX_RECEPTION_TYPE_MAX];
 442	u64 ru_loc[ATH12K_COUNTER_TYPE_MAX][HAL_RX_RU_ALLOC_TYPE_MAX];
 443};
 444
 445struct ath12k_htt_tx_stats {
 446	struct ath12k_htt_data_stats stats[ATH12K_STATS_TYPE_MAX];
 447	u64 tx_duration;
 448	u64 ba_fails;
 449	u64 ack_fails;
 450	u16 ru_start;
 451	u16 ru_tones;
 452	u32 mu_group[MAX_MU_GROUP_ID];
 453};
 454
 455struct ath12k_per_ppdu_tx_stats {
 456	u16 succ_pkts;
 457	u16 failed_pkts;
 458	u16 retry_pkts;
 459	u32 succ_bytes;
 460	u32 failed_bytes;
 461	u32 retry_bytes;
 462};
 463
 464struct ath12k_wbm_tx_stats {
 465	u64 wbm_tx_comp_stats[HAL_WBM_REL_HTT_TX_COMP_STATUS_MAX];
 466};
 467
 468struct ath12k_link_sta {
 469	struct ath12k_link_vif *arvif;
 470	struct ath12k_sta *ahsta;
 471
 472	/* the following are protected by ar->data_lock */
 473	u32 changed; /* IEEE80211_RC_* */
 474	u32 bw;
 475	u32 nss;
 476	u32 smps;
 
 477
 478	struct wiphy_work update_wk;
 479	struct rate_info txrate;
 480	struct rate_info last_txrate;
 481	u64 rx_duration;
 482	u64 tx_duration;
 483	u8 rssi_comb;
 484	u8 link_id;
 485	struct ath12k_rx_peer_stats *rx_stats;
 486	struct ath12k_wbm_tx_stats *wbm_tx_stats;
 487	u32 bw_prev;
 488};
 489
 490struct ath12k_sta {
 491	enum hal_pn_type pn_type;
 492	struct ath12k_link_sta deflink;
 493	struct ath12k_link_sta __rcu *link[IEEE80211_MLD_MAX_NUM_LINKS];
 494	/* indicates bitmap of link sta created in FW */
 495	u16 links_map;
 496};
 497
 498#define ATH12K_MIN_5G_FREQ 4150
 499#define ATH12K_MIN_6G_FREQ 5925
 500#define ATH12K_MAX_6G_FREQ 7115
 501#define ATH12K_NUM_CHANS 101
 502#define ATH12K_MAX_5G_CHAN 173
 503
 504enum ath12k_hw_state {
 505	ATH12K_HW_STATE_OFF,
 506	ATH12K_HW_STATE_ON,
 507	ATH12K_HW_STATE_RESTARTING,
 508	ATH12K_HW_STATE_RESTARTED,
 509	ATH12K_HW_STATE_WEDGED,
 510	/* Add other states as required */
 511};
 512
 513/* Antenna noise floor */
 514#define ATH12K_DEFAULT_NOISE_FLOOR -95
 515
 516struct ath12k_fw_stats {
 517	u32 pdev_id;
 518	u32 stats_id;
 519	struct list_head pdevs;
 520	struct list_head vdevs;
 521	struct list_head bcn;
 522};
 523
 524struct ath12k_dbg_htt_stats {
 525	enum ath12k_dbg_htt_ext_stats_type type;
 526	u32 cfg_param[4];
 527	u8 reset;
 528	struct debug_htt_stats_req *stats_req;
 529};
 530
 531struct ath12k_debug {
 532	struct dentry *debugfs_pdev;
 533	struct dentry *debugfs_pdev_symlink;
 534	struct ath12k_dbg_htt_stats htt_stats;
 535};
 536
 537struct ath12k_per_peer_tx_stats {
 538	u32 succ_bytes;
 539	u32 retry_bytes;
 540	u32 failed_bytes;
 541	u32 duration;
 542	u16 succ_pkts;
 543	u16 retry_pkts;
 544	u16 failed_pkts;
 545	u16 ru_start;
 546	u16 ru_tones;
 547	u8 ba_fails;
 548	u8 ppdu_type;
 549	u32 mu_grpid;
 550	u32 mu_pos;
 551	bool is_ampdu;
 552};
 553
 554#define ATH12K_FLUSH_TIMEOUT (5 * HZ)
 555#define ATH12K_VDEV_DELETE_TIMEOUT_HZ (5 * HZ)
 556
 557struct ath12k {
 558	struct ath12k_base *ab;
 559	struct ath12k_pdev *pdev;
 560	struct ath12k_hw *ah;
 561	struct ath12k_wmi_pdev *wmi;
 562	struct ath12k_pdev_dp dp;
 563	u8 mac_addr[ETH_ALEN];
 564	u32 ht_cap_info;
 565	u32 vht_cap_info;
 566	struct ath12k_he ar_he;
 
 567	bool supports_6ghz;
 568	struct {
 569		struct completion started;
 570		struct completion completed;
 571		struct completion on_channel;
 572		struct delayed_work timeout;
 573		enum ath12k_scan_state state;
 574		bool is_roc;
 575		int vdev_id;
 576		int roc_freq;
 577		bool roc_notify;
 578	} scan;
 579
 580	struct {
 581		struct ieee80211_supported_band sbands[NUM_NL80211_BANDS];
 582		struct ieee80211_sband_iftype_data
 583			iftype[NUM_NL80211_BANDS][NUM_NL80211_IFTYPES];
 584	} mac;
 585
 586	unsigned long dev_flags;
 587	unsigned int filter_flags;
 
 588	u32 min_tx_power;
 589	u32 max_tx_power;
 590	u32 txpower_limit_2g;
 591	u32 txpower_limit_5g;
 592	u32 txpower_scale;
 593	u32 power_scale;
 594	u32 chan_tx_pwr;
 595	u32 num_stations;
 596	u32 max_num_stations;
 597
 
 
 
 
 598	/* protects the radio specific data like debug stats, ppdu_stats_info stats,
 599	 * vdev_stop_status info, scan data, ath12k_sta info, ath12k_link_vif info,
 600	 * channel context data, survey info, test mode data.
 601	 */
 602	spinlock_t data_lock;
 603
 604	struct list_head arvifs;
 605	/* should never be NULL; needed for regular htt rx */
 606	struct ieee80211_channel *rx_channel;
 607
 608	/* valid during scan; needed for mgmt rx during scan */
 609	struct ieee80211_channel *scan_channel;
 610
 611	u8 cfg_tx_chainmask;
 612	u8 cfg_rx_chainmask;
 613	u8 num_rx_chains;
 614	u8 num_tx_chains;
 615	/* pdev_idx starts from 0 whereas pdev->pdev_id starts with 1 */
 616	u8 pdev_idx;
 617	u8 lmac_id;
 618	u8 hw_link_id;
 619
 620	struct completion peer_assoc_done;
 621	struct completion peer_delete_done;
 622
 623	int install_key_status;
 624	struct completion install_key_done;
 625
 626	int last_wmi_vdev_start_status;
 627	struct completion vdev_setup_done;
 628	struct completion vdev_delete_done;
 629
 630	int num_peers;
 631	int max_num_peers;
 632	u32 num_started_vdevs;
 633	u32 num_created_vdevs;
 634	unsigned long long allocated_vdev_map;
 635
 636	struct idr txmgmt_idr;
 637	/* protects txmgmt_idr data */
 638	spinlock_t txmgmt_idr_lock;
 639	atomic_t num_pending_mgmt_tx;
 640	wait_queue_head_t txmgmt_empty_waitq;
 641
 642	/* cycle count is reported twice for each visited channel during scan.
 643	 * access protected by data_lock
 644	 */
 645	u32 survey_last_rx_clear_count;
 646	u32 survey_last_cycle_count;
 647
 648	/* Channel info events are expected to come in pairs without and with
 649	 * COMPLETE flag set respectively for each channel visit during scan.
 650	 *
 651	 * However there are deviations from this rule. This flag is used to
 652	 * avoid reporting garbage data.
 653	 */
 654	bool ch_info_can_report_survey;
 655	struct survey_info survey[ATH12K_NUM_CHANS];
 656	struct completion bss_survey_done;
 657
 658	struct work_struct regd_update_work;
 659
 660	struct work_struct wmi_mgmt_tx_work;
 661	struct sk_buff_head wmi_mgmt_tx_queue;
 662
 663	struct ath12k_wow wow;
 664	struct completion target_suspend;
 665	bool target_suspend_ack;
 666	struct ath12k_per_peer_tx_stats peer_tx_stats;
 667	struct list_head ppdu_stats_info;
 668	u32 ppdu_stat_list_depth;
 669
 670	struct ath12k_per_peer_tx_stats cached_stats;
 671	u32 last_ppdu_id;
 672	u32 cached_ppdu_id;
 673#ifdef CONFIG_ATH12K_DEBUGFS
 674	struct ath12k_debug debug;
 675#endif
 676
 677	bool dfs_block_radar_events;
 678	bool monitor_conf_enabled;
 679	bool monitor_vdev_created;
 680	bool monitor_started;
 681	int monitor_vdev_id;
 682
 683	u32 freq_low;
 684	u32 freq_high;
 685
 686	bool nlo_enabled;
 687};
 688
 689struct ath12k_hw {
 690	struct ieee80211_hw *hw;
 691	/* Protect the write operation of the hardware state ath12k_hw::state
 692	 * between hardware start<=>reconfigure<=>stop transitions.
 693	 */
 694	struct mutex hw_mutex;
 695	enum ath12k_hw_state state;
 696	bool regd_updated;
 697	bool use_6ghz_regd;
 698
 699	u8 num_radio;
 700
 701	/* Keep last */
 702	struct ath12k radio[] __aligned(sizeof(void *));
 703};
 704
 705struct ath12k_band_cap {
 706	u32 phy_id;
 707	u32 max_bw_supported;
 708	u32 ht_cap_info;
 709	u32 he_cap_info[2];
 710	u32 he_mcs;
 711	u32 he_cap_phy_info[PSOC_HOST_MAX_PHY_SIZE];
 712	struct ath12k_wmi_ppe_threshold_arg he_ppet;
 713	u16 he_6ghz_capa;
 714	u32 eht_cap_mac_info[WMI_MAX_EHTCAP_MAC_SIZE];
 715	u32 eht_cap_phy_info[WMI_MAX_EHTCAP_PHY_SIZE];
 716	u32 eht_mcs_20_only;
 717	u32 eht_mcs_80;
 718	u32 eht_mcs_160;
 719	u32 eht_mcs_320;
 720	struct ath12k_wmi_ppe_threshold_arg eht_ppet;
 721	u32 eht_cap_info_internal;
 722};
 723
 724struct ath12k_pdev_cap {
 725	u32 supported_bands;
 726	u32 ampdu_density;
 727	u32 vht_cap;
 728	u32 vht_mcs;
 729	u32 he_mcs;
 730	u32 tx_chain_mask;
 731	u32 rx_chain_mask;
 732	u32 tx_chain_mask_shift;
 733	u32 rx_chain_mask_shift;
 734	struct ath12k_band_cap band[NUM_NL80211_BANDS];
 735};
 736
 737struct mlo_timestamp {
 738	u32 info;
 739	u32 sync_timestamp_lo_us;
 740	u32 sync_timestamp_hi_us;
 741	u32 mlo_offset_lo;
 742	u32 mlo_offset_hi;
 743	u32 mlo_offset_clks;
 744	u32 mlo_comp_clks;
 745	u32 mlo_comp_timer;
 746};
 747
 748struct ath12k_pdev {
 749	struct ath12k *ar;
 750	u32 pdev_id;
 751	u32 hw_link_id;
 752	struct ath12k_pdev_cap cap;
 753	u8 mac_addr[ETH_ALEN];
 754	struct mlo_timestamp timestamp;
 755};
 756
 757struct ath12k_fw_pdev {
 758	u32 pdev_id;
 759	u32 phy_id;
 760	u32 supported_bands;
 761};
 762
 763struct ath12k_board_data {
 764	const struct firmware *fw;
 765	const void *data;
 766	size_t len;
 767};
 768
 769struct ath12k_soc_dp_tx_err_stats {
 770	/* TCL Ring Descriptor unavailable */
 771	u32 desc_na[DP_TCL_NUM_RING_MAX];
 772	/* Other failures during dp_tx due to mem allocation failure
 773	 * idr unavailable etc.
 774	 */
 775	atomic_t misc_fail;
 776};
 777
 778struct ath12k_soc_dp_stats {
 779	u32 err_ring_pkts;
 780	u32 invalid_rbm;
 781	u32 rxdma_error[HAL_REO_ENTR_RING_RXDMA_ECODE_MAX];
 782	u32 reo_error[HAL_REO_DEST_RING_ERROR_CODE_MAX];
 783	u32 hal_reo_error[DP_REO_DST_RING_MAX];
 784	struct ath12k_soc_dp_tx_err_stats tx_err;
 785};
 786
 787/**
 788 * enum ath12k_link_capable_flags - link capable flags
 789 *
 790 * Single/Multi link capability information
 791 *
 792 * @ATH12K_INTRA_DEVICE_MLO_SUPPORT: SLO/MLO form between the radio, where all
 793 *	the links (radios) present within a device.
 794 * @ATH12K_INTER_DEVICE_MLO_SUPPORT: SLO/MLO form between the radio, where all
 795 *	the links (radios) present across the devices.
 796 */
 797enum ath12k_link_capable_flags {
 798	ATH12K_INTRA_DEVICE_MLO_SUPPORT	= BIT(0),
 799	ATH12K_INTER_DEVICE_MLO_SUPPORT	= BIT(1),
 800};
 801
 802/* Master structure to hold the hw data which may be used in core module */
 803struct ath12k_base {
 804	enum ath12k_hw_rev hw_rev;
 805	struct platform_device *pdev;
 806	struct device *dev;
 807	struct ath12k_qmi qmi;
 808	struct ath12k_wmi_base wmi_ab;
 809	struct completion fw_ready;
 810	u8 device_id;
 811	int num_radios;
 812	/* HW channel counters frequency value in hertz common to all MACs */
 813	u32 cc_freq_hz;
 814
 815	struct ath12k_dump_file_data *dump_data;
 816	size_t ath12k_coredump_len;
 817	struct work_struct dump_work;
 818
 819	struct ath12k_htc htc;
 820
 821	struct ath12k_dp dp;
 822
 823	void __iomem *mem;
 824	unsigned long mem_len;
 825
 826	struct {
 827		enum ath12k_bus bus;
 828		const struct ath12k_hif_ops *ops;
 829	} hif;
 830
 831	struct {
 832		struct completion wakeup_completed;
 833		u32 wmi_conf_rx_decap_mode;
 834	} wow;
 835
 836	struct ath12k_ce ce;
 837	struct timer_list rx_replenish_retry;
 838	struct ath12k_hal hal;
 839	/* To synchronize core_start/core_stop */
 840	struct mutex core_lock;
 841	/* Protects data like peers */
 842	spinlock_t base_lock;
 843
 844	/* Single pdev device (struct ath12k_hw_params::single_pdev_only):
 845	 *
 846	 * Firmware maintains data for all bands but advertises a single
 847	 * phy to the host which is stored as a single element in this
 848	 * array.
 849	 *
 850	 * Other devices:
 851	 *
 852	 * This array will contain as many elements as the number of
 853	 * radios.
 854	 */
 855	struct ath12k_pdev pdevs[MAX_RADIOS];
 856
 857	/* struct ath12k_hw_params::single_pdev_only devices use this to
 858	 * store phy specific data
 859	 */
 860	struct ath12k_fw_pdev fw_pdev[MAX_RADIOS];
 861	u8 fw_pdev_count;
 862
 863	struct ath12k_pdev __rcu *pdevs_active[MAX_RADIOS];
 864
 865	/* Holds information of wiphy (hw) registration.
 866	 *
 867	 * In Multi/Single Link Operation case, all pdevs are registered as
 868	 * a single wiphy. In other (legacy/Non-MLO) cases, each pdev is
 869	 * registered as separate wiphys.
 870	 */
 871	struct ath12k_hw *ah[MAX_RADIOS];
 872	u8 num_hw;
 873
 874	struct ath12k_wmi_hal_reg_capabilities_ext_arg hal_reg_cap[MAX_RADIOS];
 875	unsigned long long free_vdev_map;
 876	unsigned long long free_vdev_stats_id_map;
 877	struct list_head peers;
 878	wait_queue_head_t peer_mapping_wq;
 879	u8 mac_addr[ETH_ALEN];
 880	bool wmi_ready;
 881	u32 wlan_init_status;
 882	int irq_num[ATH12K_IRQ_NUM_MAX];
 883	struct ath12k_ext_irq_grp ext_irq_grp[ATH12K_EXT_IRQ_GRP_NUM_MAX];
 884	struct napi_struct *napi;
 885	struct ath12k_wmi_target_cap_arg target_caps;
 886	u32 ext_service_bitmap[WMI_SERVICE_EXT_BM_SIZE];
 887	bool pdevs_macaddr_valid;
 888
 889	const struct ath12k_hw_params *hw_params;
 890
 891	const struct firmware *cal_file;
 892
 893	/* Below regd's are protected by ab->data_lock */
 894	/* This is the regd set for every radio
 895	 * by the firmware during initialization
 896	 */
 897	struct ieee80211_regdomain *default_regd[MAX_RADIOS];
 898	/* This regd is set during dynamic country setting
 899	 * This may or may not be used during the runtime
 900	 */
 901	struct ieee80211_regdomain *new_regd[MAX_RADIOS];
 902
 903	/* Current DFS Regulatory */
 904	enum ath12k_dfs_region dfs_region;
 905	struct ath12k_soc_dp_stats soc_stats;
 906#ifdef CONFIG_ATH12K_DEBUGFS
 907	struct dentry *debugfs_soc;
 908#endif
 909
 910	unsigned long dev_flags;
 911	struct completion driver_recovery;
 912	struct workqueue_struct *workqueue;
 913	struct work_struct restart_work;
 914	struct workqueue_struct *workqueue_aux;
 915	struct work_struct reset_work;
 916	atomic_t reset_count;
 917	atomic_t recovery_count;
 
 918	bool is_reset;
 919	struct completion reset_complete;
 
 
 920	/* continuous recovery fail count */
 921	atomic_t fail_cont_count;
 922	unsigned long reset_fail_timeout;
 923	struct {
 924		/* protected by data_lock */
 925		u32 fw_crash_counter;
 926	} stats;
 927	u32 pktlog_defs_checksum;
 928
 929	struct ath12k_dbring_cap *db_caps;
 930	u32 num_db_cap;
 931
 932	struct timer_list mon_reap_timer;
 933
 934	struct completion htc_suspend;
 935
 936	u64 fw_soc_drop_count;
 937	bool static_window_map;
 938
 939	struct work_struct rfkill_work;
 940	/* true means radio is on */
 941	bool rfkill_radio_on;
 942
 943	struct {
 944		enum ath12k_bdf_search bdf_search;
 945		u32 vendor;
 946		u32 device;
 947		u32 subsystem_vendor;
 948		u32 subsystem_device;
 949	} id;
 950
 951	struct {
 952		u32 api_version;
 953
 954		const struct firmware *fw;
 955		const u8 *amss_data;
 956		size_t amss_len;
 957		const u8 *amss_dualmac_data;
 958		size_t amss_dualmac_len;
 959		const u8 *m3_data;
 960		size_t m3_len;
 961
 962		DECLARE_BITMAP(fw_features, ATH12K_FW_FEATURE_COUNT);
 963	} fw;
 964
 965	const struct hal_rx_ops *hal_rx_ops;
 966
 967	/* mlo_capable_flags denotes the single/multi link operation
 968	 * capabilities of the Device.
 969	 *
 970	 * See enum ath12k_link_capable_flags
 971	 */
 972	u8 mlo_capable_flags;
 973
 974	struct completion restart_completed;
 975
 976#ifdef CONFIG_ACPI
 977
 978	struct {
 979		bool started;
 980		u32 func_bit;
 981		bool acpi_tas_enable;
 982		bool acpi_bios_sar_enable;
 983		u8 tas_cfg[ATH12K_ACPI_DSM_TAS_CFG_SIZE];
 984		u8 tas_sar_power_table[ATH12K_ACPI_DSM_TAS_DATA_SIZE];
 985		u8 bios_sar_data[ATH12K_ACPI_DSM_BIOS_SAR_DATA_SIZE];
 986		u8 geo_offset_data[ATH12K_ACPI_DSM_GEO_OFFSET_DATA_SIZE];
 987		u8 cca_data[ATH12K_ACPI_DSM_CCA_DATA_SIZE];
 988		u8 band_edge_power[ATH12K_ACPI_DSM_BAND_EDGE_DATA_SIZE];
 989	} acpi;
 990
 991#endif /* CONFIG_ACPI */
 992
 993	struct notifier_block panic_nb;
 994
 995	/* must be last */
 996	u8 drv_priv[] __aligned(sizeof(void *));
 997};
 998
 999struct ath12k_pdev_map {
1000	struct ath12k_base *ab;
1001	u8 pdev_idx;
1002};
1003
1004int ath12k_core_qmi_firmware_ready(struct ath12k_base *ab);
1005int ath12k_core_pre_init(struct ath12k_base *ab);
1006int ath12k_core_init(struct ath12k_base *ath12k);
1007void ath12k_core_deinit(struct ath12k_base *ath12k);
1008struct ath12k_base *ath12k_core_alloc(struct device *dev, size_t priv_size,
1009				      enum ath12k_bus bus);
1010void ath12k_core_free(struct ath12k_base *ath12k);
1011int ath12k_core_fetch_board_data_api_1(struct ath12k_base *ab,
1012				       struct ath12k_board_data *bd,
1013				       char *filename);
1014int ath12k_core_fetch_bdf(struct ath12k_base *ath12k,
1015			  struct ath12k_board_data *bd);
1016void ath12k_core_free_bdf(struct ath12k_base *ab, struct ath12k_board_data *bd);
1017int ath12k_core_fetch_regdb(struct ath12k_base *ab, struct ath12k_board_data *bd);
1018int ath12k_core_check_dt(struct ath12k_base *ath12k);
1019int ath12k_core_check_smbios(struct ath12k_base *ab);
1020void ath12k_core_halt(struct ath12k *ar);
1021int ath12k_core_resume_early(struct ath12k_base *ab);
1022int ath12k_core_resume(struct ath12k_base *ab);
1023int ath12k_core_suspend(struct ath12k_base *ab);
1024int ath12k_core_suspend_late(struct ath12k_base *ab);
1025
1026const struct firmware *ath12k_core_firmware_request(struct ath12k_base *ab,
1027						    const char *filename);
1028u32 ath12k_core_get_max_station_per_radio(struct ath12k_base *ab);
1029u32 ath12k_core_get_max_peers_per_radio(struct ath12k_base *ab);
1030u32 ath12k_core_get_max_num_tids(struct ath12k_base *ab);
1031
1032static inline const char *ath12k_scan_state_str(enum ath12k_scan_state state)
1033{
1034	switch (state) {
1035	case ATH12K_SCAN_IDLE:
1036		return "idle";
1037	case ATH12K_SCAN_STARTING:
1038		return "starting";
1039	case ATH12K_SCAN_RUNNING:
1040		return "running";
1041	case ATH12K_SCAN_ABORTING:
1042		return "aborting";
1043	}
1044
1045	return "unknown";
1046}
1047
1048static inline struct ath12k_skb_cb *ATH12K_SKB_CB(struct sk_buff *skb)
1049{
1050	BUILD_BUG_ON(sizeof(struct ath12k_skb_cb) >
1051		     IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
1052	return (struct ath12k_skb_cb *)&IEEE80211_SKB_CB(skb)->driver_data;
1053}
1054
1055static inline struct ath12k_skb_rxcb *ATH12K_SKB_RXCB(struct sk_buff *skb)
1056{
1057	BUILD_BUG_ON(sizeof(struct ath12k_skb_rxcb) > sizeof(skb->cb));
1058	return (struct ath12k_skb_rxcb *)skb->cb;
1059}
1060
1061static inline struct ath12k_vif *ath12k_vif_to_ahvif(struct ieee80211_vif *vif)
1062{
1063	return (struct ath12k_vif *)vif->drv_priv;
1064}
1065
1066static inline struct ath12k_sta *ath12k_sta_to_ahsta(struct ieee80211_sta *sta)
1067{
1068	return (struct ath12k_sta *)sta->drv_priv;
1069}
1070
1071static inline struct ieee80211_sta *ath12k_ahsta_to_sta(struct ath12k_sta *ahsta)
1072{
1073	return container_of((void *)ahsta, struct ieee80211_sta, drv_priv);
1074}
1075
1076static inline struct ieee80211_vif *ath12k_ahvif_to_vif(struct ath12k_vif *ahvif)
1077{
1078	return container_of((void *)ahvif, struct ieee80211_vif, drv_priv);
1079}
1080
1081static inline struct ath12k *ath12k_ab_to_ar(struct ath12k_base *ab,
1082					     int mac_id)
1083{
1084	return ab->pdevs[ath12k_hw_mac_id_to_pdev_id(ab->hw_params, mac_id)].ar;
1085}
1086
1087static inline void ath12k_core_create_firmware_path(struct ath12k_base *ab,
1088						    const char *filename,
1089						    void *buf, size_t buf_len)
1090{
1091	snprintf(buf, buf_len, "%s/%s/%s", ATH12K_FW_DIR,
1092		 ab->hw_params->fw.dir, filename);
1093}
1094
1095static inline const char *ath12k_bus_str(enum ath12k_bus bus)
1096{
1097	switch (bus) {
1098	case ATH12K_BUS_PCI:
1099		return "pci";
1100	}
1101
1102	return "unknown";
1103}
1104
1105static inline struct ath12k_hw *ath12k_hw_to_ah(struct ieee80211_hw  *hw)
1106{
1107	return hw->priv;
1108}
1109
1110static inline struct ath12k *ath12k_ah_to_ar(struct ath12k_hw *ah, u8 hw_link_id)
1111{
1112	if (WARN(hw_link_id >= ah->num_radio,
1113		 "bad hw link id %d, so switch to default link\n", hw_link_id))
1114		hw_link_id = 0;
1115
1116	return &ah->radio[hw_link_id];
1117}
1118
1119static inline struct ath12k_hw *ath12k_ar_to_ah(struct ath12k *ar)
1120{
1121	return ar->ah;
1122}
1123
1124static inline struct ieee80211_hw *ath12k_ar_to_hw(struct ath12k *ar)
1125{
1126	return ar->ah->hw;
1127}
1128
1129#define for_each_ar(ah, ar, index) \
1130	for ((index) = 0; ((index) < (ah)->num_radio && \
1131	     ((ar) = &(ah)->radio[(index)])); (index)++)
1132#endif /* _CORE_H_ */