18e99ea8dSJohannes Berg /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
28e99ea8dSJohannes Berg /*
3d9d115feSJohannes Berg  * Copyright (C) 2005-2014, 2018-2023 Intel Corporation
48e99ea8dSJohannes Berg  * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
58e99ea8dSJohannes Berg  * Copyright (C) 2016-2017 Intel Deutschland GmbH
68e99ea8dSJohannes Berg  */
7e705c121SKalle Valo #ifndef __iwl_trans_h__
8e705c121SKalle Valo #define __iwl_trans_h__
9e705c121SKalle Valo 
10e705c121SKalle Valo #include <linux/ieee80211.h>
11e705c121SKalle Valo #include <linux/mm.h> /* for page_address */
12e705c121SKalle Valo #include <linux/lockdep.h>
1339bdb17eSSharon Dvir #include <linux/kernel.h>
14e705c121SKalle Valo 
15e705c121SKalle Valo #include "iwl-debug.h"
16e705c121SKalle Valo #include "iwl-config.h"
17d962f9b1SJohannes Berg #include "fw/img.h"
18e705c121SKalle Valo #include "iwl-op-mode.h"
1969725928SLuca Coelho #include <linux/firmware.h>
20d172a5efSJohannes Berg #include "fw/api/cmdhdr.h"
21d172a5efSJohannes Berg #include "fw/api/txq.h"
22f14cda6fSSara Sharon #include "fw/api/dbg-tlv.h"
23f14cda6fSSara Sharon #include "iwl-dbg-tlv.h"
24e705c121SKalle Valo 
25e705c121SKalle Valo /**
26e705c121SKalle Valo  * DOC: Transport layer - what is it ?
27e705c121SKalle Valo  *
28e705c121SKalle Valo  * The transport layer is the layer that deals with the HW directly. It provides
29e705c121SKalle Valo  * an abstraction of the underlying HW to the upper layer. The transport layer
30e705c121SKalle Valo  * doesn't provide any policy, algorithm or anything of this kind, but only
31e705c121SKalle Valo  * mechanisms to make the HW do something. It is not completely stateless but
32e705c121SKalle Valo  * close to it.
33e705c121SKalle Valo  * We will have an implementation for each different supported bus.
34e705c121SKalle Valo  */
35e705c121SKalle Valo 
36e705c121SKalle Valo /**
37e705c121SKalle Valo  * DOC: Life cycle of the transport layer
38e705c121SKalle Valo  *
39e705c121SKalle Valo  * The transport layer has a very precise life cycle.
40e705c121SKalle Valo  *
41e705c121SKalle Valo  *	1) A helper function is called during the module initialization and
42e705c121SKalle Valo  *	   registers the bus driver's ops with the transport's alloc function.
43e705c121SKalle Valo  *	2) Bus's probe calls to the transport layer's allocation functions.
44e705c121SKalle Valo  *	   Of course this function is bus specific.
45e705c121SKalle Valo  *	3) This allocation functions will spawn the upper layer which will
46e705c121SKalle Valo  *	   register mac80211.
47e705c121SKalle Valo  *
48e705c121SKalle Valo  *	4) At some point (i.e. mac80211's start call), the op_mode will call
49e705c121SKalle Valo  *	   the following sequence:
50e705c121SKalle Valo  *	   start_hw
51e705c121SKalle Valo  *	   start_fw
52e705c121SKalle Valo  *
53e705c121SKalle Valo  *	5) Then when finished (or reset):
54e705c121SKalle Valo  *	   stop_device
55e705c121SKalle Valo  *
56e705c121SKalle Valo  *	6) Eventually, the free function will be called.
57e705c121SKalle Valo  */
58e705c121SKalle Valo 
59bc425179SEmmanuel Grumbach /* default preset 0 (start from bit 16)*/
60bc425179SEmmanuel Grumbach #define IWL_FW_DBG_DOMAIN_POS	16
61bc425179SEmmanuel Grumbach #define IWL_FW_DBG_DOMAIN	BIT(IWL_FW_DBG_DOMAIN_POS)
62bc425179SEmmanuel Grumbach 
63e701da0cSLuca Coelho #define IWL_TRANS_FW_DBG_DOMAIN(trans)	IWL_FW_INI_DOMAIN_ALWAYS_ON
64e701da0cSLuca Coelho 
65e705c121SKalle Valo #define FH_RSCSR_FRAME_SIZE_MSK		0x00003FFF	/* bits 0-13 */
66e705c121SKalle Valo #define FH_RSCSR_FRAME_INVALID		0x55550000
67e705c121SKalle Valo #define FH_RSCSR_FRAME_ALIGN		0x40
68fbe41127SSara Sharon #define FH_RSCSR_RPA_EN			BIT(25)
699d0fc5a5SDavid Spinadel #define FH_RSCSR_RADA_EN		BIT(26)
70ab2e696bSSara Sharon #define FH_RSCSR_RXQ_POS		16
71ab2e696bSSara Sharon #define FH_RSCSR_RXQ_MASK		0x3F0000
72e705c121SKalle Valo 
73e705c121SKalle Valo struct iwl_rx_packet {
74e705c121SKalle Valo 	/*
75e705c121SKalle Valo 	 * The first 4 bytes of the RX frame header contain both the RX frame
76e705c121SKalle Valo 	 * size and some flags.
77e705c121SKalle Valo 	 * Bit fields:
78e705c121SKalle Valo 	 * 31:    flag flush RB request
79e705c121SKalle Valo 	 * 30:    flag ignore TC (terminal counter) request
80e705c121SKalle Valo 	 * 29:    flag fast IRQ request
819d0fc5a5SDavid Spinadel 	 * 28-27: Reserved
829d0fc5a5SDavid Spinadel 	 * 26:    RADA enabled
83fbe41127SSara Sharon 	 * 25:    Offload enabled
84ab2e696bSSara Sharon 	 * 24:    RPF enabled
85ab2e696bSSara Sharon 	 * 23:    RSS enabled
86ab2e696bSSara Sharon 	 * 22:    Checksum enabled
87ab2e696bSSara Sharon 	 * 21-16: RX queue
88ab2e696bSSara Sharon 	 * 15-14: Reserved
89e705c121SKalle Valo 	 * 13-00: RX frame size
90e705c121SKalle Valo 	 */
91e705c121SKalle Valo 	__le32 len_n_flags;
92e705c121SKalle Valo 	struct iwl_cmd_header hdr;
93e705c121SKalle Valo 	u8 data[];
94e705c121SKalle Valo } __packed;
95e705c121SKalle Valo 
iwl_rx_packet_len(const struct iwl_rx_packet * pkt)96e705c121SKalle Valo static inline u32 iwl_rx_packet_len(const struct iwl_rx_packet *pkt)
97e705c121SKalle Valo {
98e705c121SKalle Valo 	return le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
99e705c121SKalle Valo }
100e705c121SKalle Valo 
iwl_rx_packet_payload_len(const struct iwl_rx_packet * pkt)101e705c121SKalle Valo static inline u32 iwl_rx_packet_payload_len(const struct iwl_rx_packet *pkt)
102e705c121SKalle Valo {
103e705c121SKalle Valo 	return iwl_rx_packet_len(pkt) - sizeof(pkt->hdr);
104e705c121SKalle Valo }
105e705c121SKalle Valo 
106e705c121SKalle Valo /**
107e705c121SKalle Valo  * enum CMD_MODE - how to send the host commands ?
108e705c121SKalle Valo  *
109e705c121SKalle Valo  * @CMD_ASYNC: Return right away and don't wait for the response
110e705c121SKalle Valo  * @CMD_WANT_SKB: Not valid with CMD_ASYNC. The caller needs the buffer of
111e705c121SKalle Valo  *	the response. The caller needs to call iwl_free_resp when done.
112dcbb4746SEmmanuel Grumbach  * @CMD_WANT_ASYNC_CALLBACK: the op_mode's async callback function must be
113dcbb4746SEmmanuel Grumbach  *	called after this command completes. Valid only with CMD_ASYNC.
114708a39aaSHaim Dreyfuss  * @CMD_SEND_IN_D3: Allow the command to be sent in D3 mode, relevant to
115708a39aaSHaim Dreyfuss  *	SUSPEND and RESUME commands. We are in D3 mode when we set
116708a39aaSHaim Dreyfuss  *	trans->system_pm_mode to IWL_PLAT_PM_MODE_D3.
117e705c121SKalle Valo  */
118e705c121SKalle Valo enum CMD_MODE {
119e705c121SKalle Valo 	CMD_ASYNC		= BIT(0),
120e705c121SKalle Valo 	CMD_WANT_SKB		= BIT(1),
121e705c121SKalle Valo 	CMD_SEND_IN_RFKILL	= BIT(2),
122043fa901SEmmanuel Grumbach 	CMD_WANT_ASYNC_CALLBACK	= BIT(3),
123708a39aaSHaim Dreyfuss 	CMD_SEND_IN_D3          = BIT(4),
124e705c121SKalle Valo };
125e705c121SKalle Valo 
126e705c121SKalle Valo #define DEF_CMD_PAYLOAD_SIZE 320
127e705c121SKalle Valo 
128e705c121SKalle Valo /**
129e705c121SKalle Valo  * struct iwl_device_cmd
130e705c121SKalle Valo  *
131e705c121SKalle Valo  * For allocation of the command and tx queues, this establishes the overall
132e705c121SKalle Valo  * size of the largest command we send to uCode, except for commands that
133e705c121SKalle Valo  * aren't fully copied and use other TFD space.
134e705c121SKalle Valo  */
135e705c121SKalle Valo struct iwl_device_cmd {
136e705c121SKalle Valo 	union {
137e705c121SKalle Valo 		struct {
138e705c121SKalle Valo 			struct iwl_cmd_header hdr;	/* uCode API */
139e705c121SKalle Valo 			u8 payload[DEF_CMD_PAYLOAD_SIZE];
140e705c121SKalle Valo 		};
141e705c121SKalle Valo 		struct {
142e705c121SKalle Valo 			struct iwl_cmd_header_wide hdr_wide;
143e705c121SKalle Valo 			u8 payload_wide[DEF_CMD_PAYLOAD_SIZE -
144e705c121SKalle Valo 					sizeof(struct iwl_cmd_header_wide) +
145e705c121SKalle Valo 					sizeof(struct iwl_cmd_header)];
146e705c121SKalle Valo 		};
147e705c121SKalle Valo 	};
148e705c121SKalle Valo } __packed;
149e705c121SKalle Valo 
150a89c72ffSJohannes Berg /**
151a89c72ffSJohannes Berg  * struct iwl_device_tx_cmd - buffer for TX command
152a89c72ffSJohannes Berg  * @hdr: the header
153a89c72ffSJohannes Berg  * @payload: the payload placeholder
154a89c72ffSJohannes Berg  *
155a89c72ffSJohannes Berg  * The actual structure is sized dynamically according to need.
156a89c72ffSJohannes Berg  */
157a89c72ffSJohannes Berg struct iwl_device_tx_cmd {
158a89c72ffSJohannes Berg 	struct iwl_cmd_header hdr;
159a89c72ffSJohannes Berg 	u8 payload[];
160a89c72ffSJohannes Berg } __packed;
161a89c72ffSJohannes Berg 
162e705c121SKalle Valo #define TFD_MAX_PAYLOAD_SIZE (sizeof(struct iwl_device_cmd))
163e705c121SKalle Valo 
164e705c121SKalle Valo /*
165e705c121SKalle Valo  * number of transfer buffers (fragments) per transmit frame descriptor;
166e705c121SKalle Valo  * this is just the driver's idea, the hardware supports 20
167e705c121SKalle Valo  */
168e705c121SKalle Valo #define IWL_MAX_CMD_TBS_PER_TFD	2
169e705c121SKalle Valo 
170885375d0SMordechay Goodstein /* We need 2 entries for the TX command and header, and another one might
171885375d0SMordechay Goodstein  * be needed for potential data in the SKB's head. The remaining ones can
172885375d0SMordechay Goodstein  * be used for frags.
173885375d0SMordechay Goodstein  */
174885375d0SMordechay Goodstein #define IWL_TRANS_MAX_FRAGS(trans) ((trans)->txqs.tfd.max_tbs - 3)
175885375d0SMordechay Goodstein 
176e705c121SKalle Valo /**
177b8aed81cSJohannes Berg  * enum iwl_hcmd_dataflag - flag for each one of the chunks of the command
178e705c121SKalle Valo  *
179e705c121SKalle Valo  * @IWL_HCMD_DFL_NOCOPY: By default, the command is copied to the host command's
180e705c121SKalle Valo  *	ring. The transport layer doesn't map the command's buffer to DMA, but
181e705c121SKalle Valo  *	rather copies it to a previously allocated DMA buffer. This flag tells
182e705c121SKalle Valo  *	the transport layer not to copy the command, but to map the existing
183e705c121SKalle Valo  *	buffer (that is passed in) instead. This saves the memcpy and allows
184e705c121SKalle Valo  *	commands that are bigger than the fixed buffer to be submitted.
185e705c121SKalle Valo  *	Note that a TFD entry after a NOCOPY one cannot be a normal copied one.
186e705c121SKalle Valo  * @IWL_HCMD_DFL_DUP: Only valid without NOCOPY, duplicate the memory for this
187e705c121SKalle Valo  *	chunk internally and free it again after the command completes. This
188e705c121SKalle Valo  *	can (currently) be used only once per command.
189e705c121SKalle Valo  *	Note that a TFD entry after a DUP one cannot be a normal copied one.
190e705c121SKalle Valo  */
191e705c121SKalle Valo enum iwl_hcmd_dataflag {
192e705c121SKalle Valo 	IWL_HCMD_DFL_NOCOPY	= BIT(0),
193e705c121SKalle Valo 	IWL_HCMD_DFL_DUP	= BIT(1),
194e705c121SKalle Valo };
195e705c121SKalle Valo 
19622463857SShahar S Matityahu enum iwl_error_event_table_status {
19722463857SShahar S Matityahu 	IWL_ERROR_EVENT_TABLE_LMAC1 = BIT(0),
19822463857SShahar S Matityahu 	IWL_ERROR_EVENT_TABLE_LMAC2 = BIT(1),
19922463857SShahar S Matityahu 	IWL_ERROR_EVENT_TABLE_UMAC = BIT(2),
20057417e1bSJohannes Berg 	IWL_ERROR_EVENT_TABLE_TCM1 = BIT(3),
20157417e1bSJohannes Berg 	IWL_ERROR_EVENT_TABLE_TCM2 = BIT(4),
2024cd177b4SJohannes Berg 	IWL_ERROR_EVENT_TABLE_RCM1 = BIT(5),
2034cd177b4SJohannes Berg 	IWL_ERROR_EVENT_TABLE_RCM2 = BIT(6),
20422463857SShahar S Matityahu };
20522463857SShahar S Matityahu 
206e705c121SKalle Valo /**
207e705c121SKalle Valo  * struct iwl_host_cmd - Host command to the uCode
208e705c121SKalle Valo  *
209e705c121SKalle Valo  * @data: array of chunks that composes the data of the host command
210e705c121SKalle Valo  * @resp_pkt: response packet, if %CMD_WANT_SKB was set
211e705c121SKalle Valo  * @_rx_page_order: (internally used to free response packet)
212e705c121SKalle Valo  * @_rx_page_addr: (internally used to free response packet)
213e705c121SKalle Valo  * @flags: can be CMD_*
214e705c121SKalle Valo  * @len: array of the lengths of the chunks in data
215e705c121SKalle Valo  * @dataflags: IWL_HCMD_DFL_*
216e705c121SKalle Valo  * @id: command id of the host command, for wide commands encoding the
217e705c121SKalle Valo  *	version and group as well
218e705c121SKalle Valo  */
219e705c121SKalle Valo struct iwl_host_cmd {
220e705c121SKalle Valo 	const void *data[IWL_MAX_CMD_TBS_PER_TFD];
221e705c121SKalle Valo 	struct iwl_rx_packet *resp_pkt;
222e705c121SKalle Valo 	unsigned long _rx_page_addr;
223e705c121SKalle Valo 	u32 _rx_page_order;
224e705c121SKalle Valo 
225e705c121SKalle Valo 	u32 flags;
226e705c121SKalle Valo 	u32 id;
227e705c121SKalle Valo 	u16 len[IWL_MAX_CMD_TBS_PER_TFD];
228e705c121SKalle Valo 	u8 dataflags[IWL_MAX_CMD_TBS_PER_TFD];
229e705c121SKalle Valo };
230e705c121SKalle Valo 
iwl_free_resp(struct iwl_host_cmd * cmd)231e705c121SKalle Valo static inline void iwl_free_resp(struct iwl_host_cmd *cmd)
232e705c121SKalle Valo {
233e705c121SKalle Valo 	free_pages(cmd->_rx_page_addr, cmd->_rx_page_order);
234e705c121SKalle Valo }
235e705c121SKalle Valo 
236e705c121SKalle Valo struct iwl_rx_cmd_buffer {
237e705c121SKalle Valo 	struct page *_page;
238e705c121SKalle Valo 	int _offset;
239e705c121SKalle Valo 	bool _page_stolen;
240e705c121SKalle Valo 	u32 _rx_page_order;
241e705c121SKalle Valo 	unsigned int truesize;
242e705c121SKalle Valo };
243e705c121SKalle Valo 
rxb_addr(struct iwl_rx_cmd_buffer * r)244e705c121SKalle Valo static inline void *rxb_addr(struct iwl_rx_cmd_buffer *r)
245e705c121SKalle Valo {
246e705c121SKalle Valo 	return (void *)((unsigned long)page_address(r->_page) + r->_offset);
247e705c121SKalle Valo }
248e705c121SKalle Valo 
rxb_offset(struct iwl_rx_cmd_buffer * r)249e705c121SKalle Valo static inline int rxb_offset(struct iwl_rx_cmd_buffer *r)
250e705c121SKalle Valo {
251e705c121SKalle Valo 	return r->_offset;
252e705c121SKalle Valo }
253e705c121SKalle Valo 
rxb_steal_page(struct iwl_rx_cmd_buffer * r)254e705c121SKalle Valo static inline struct page *rxb_steal_page(struct iwl_rx_cmd_buffer *r)
255e705c121SKalle Valo {
256e705c121SKalle Valo 	r->_page_stolen = true;
257e705c121SKalle Valo 	get_page(r->_page);
258e705c121SKalle Valo 	return r->_page;
259e705c121SKalle Valo }
260e705c121SKalle Valo 
iwl_free_rxb(struct iwl_rx_cmd_buffer * r)261e705c121SKalle Valo static inline void iwl_free_rxb(struct iwl_rx_cmd_buffer *r)
262e705c121SKalle Valo {
263e705c121SKalle Valo 	__free_pages(r->_page, r->_rx_page_order);
264e705c121SKalle Valo }
265e705c121SKalle Valo 
266e705c121SKalle Valo #define MAX_NO_RECLAIM_CMDS	6
267e705c121SKalle Valo 
268e705c121SKalle Valo #define IWL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
269e705c121SKalle Valo 
270e705c121SKalle Valo /*
271e705c121SKalle Valo  * Maximum number of HW queues the transport layer
272e705c121SKalle Valo  * currently supports
273e705c121SKalle Valo  */
274e705c121SKalle Valo #define IWL_MAX_HW_QUEUES		32
275e982bc2cSSara Sharon #define IWL_MAX_TVQM_QUEUES		512
276e982bc2cSSara Sharon 
277e705c121SKalle Valo #define IWL_MAX_TID_COUNT	8
278c65f4e03SSara Sharon #define IWL_MGMT_TID		15
279e705c121SKalle Valo #define IWL_FRAME_LIMIT	64
280e705c121SKalle Valo #define IWL_MAX_RX_HW_QUEUES	16
281*13fd96c9SEmmanuel Grumbach #define IWL_9000_MAX_RX_HW_QUEUES	1
282e705c121SKalle Valo 
283e705c121SKalle Valo /**
284e705c121SKalle Valo  * enum iwl_wowlan_status - WoWLAN image/device status
285e705c121SKalle Valo  * @IWL_D3_STATUS_ALIVE: firmware is still running after resume
286e705c121SKalle Valo  * @IWL_D3_STATUS_RESET: device was reset while suspended
287e705c121SKalle Valo  */
288e705c121SKalle Valo enum iwl_d3_status {
289e705c121SKalle Valo 	IWL_D3_STATUS_ALIVE,
290e705c121SKalle Valo 	IWL_D3_STATUS_RESET,
291e705c121SKalle Valo };
292e705c121SKalle Valo 
293e705c121SKalle Valo /**
294e705c121SKalle Valo  * enum iwl_trans_status: transport status flags
295e705c121SKalle Valo  * @STATUS_SYNC_HCMD_ACTIVE: a SYNC command is being processed
296e705c121SKalle Valo  * @STATUS_DEVICE_ENABLED: APM is enabled
297e705c121SKalle Valo  * @STATUS_TPOWER_PMI: the device might be asleep (need to wake it up)
298e705c121SKalle Valo  * @STATUS_INT_ENABLED: interrupts are enabled
299326477e4SJohannes Berg  * @STATUS_RFKILL_HW: the actual HW state of the RF-kill switch
300326477e4SJohannes Berg  * @STATUS_RFKILL_OPMODE: RF-kill state reported to opmode
301e705c121SKalle Valo  * @STATUS_FW_ERROR: the fw is in error state
302e705c121SKalle Valo  * @STATUS_TRANS_GOING_IDLE: shutting down the trans, only special commands
303e705c121SKalle Valo  *	are sent
304e705c121SKalle Valo  * @STATUS_TRANS_IDLE: the trans is idle - general commands are not to be sent
305e705c121SKalle Valo  * @STATUS_TRANS_DEAD: trans is dead - avoid any read/write operation
3064b992db6SJohannes Berg  * @STATUS_SUPPRESS_CMD_ERROR_ONCE: suppress "FW error in SYNC CMD" once,
3074b992db6SJohannes Berg  *	e.g. for testing
308e705c121SKalle Valo  */
309e705c121SKalle Valo enum iwl_trans_status {
310e705c121SKalle Valo 	STATUS_SYNC_HCMD_ACTIVE,
311e705c121SKalle Valo 	STATUS_DEVICE_ENABLED,
312e705c121SKalle Valo 	STATUS_TPOWER_PMI,
313e705c121SKalle Valo 	STATUS_INT_ENABLED,
314326477e4SJohannes Berg 	STATUS_RFKILL_HW,
315326477e4SJohannes Berg 	STATUS_RFKILL_OPMODE,
316e705c121SKalle Valo 	STATUS_FW_ERROR,
317e705c121SKalle Valo 	STATUS_TRANS_GOING_IDLE,
318e705c121SKalle Valo 	STATUS_TRANS_IDLE,
319e705c121SKalle Valo 	STATUS_TRANS_DEAD,
3204b992db6SJohannes Berg 	STATUS_SUPPRESS_CMD_ERROR_ONCE,
321e705c121SKalle Valo };
322e705c121SKalle Valo 
3236c4fbcbcSEmmanuel Grumbach static inline int
iwl_trans_get_rb_size_order(enum iwl_amsdu_size rb_size)3246c4fbcbcSEmmanuel Grumbach iwl_trans_get_rb_size_order(enum iwl_amsdu_size rb_size)
3256c4fbcbcSEmmanuel Grumbach {
3266c4fbcbcSEmmanuel Grumbach 	switch (rb_size) {
3271a4968d1SGolan Ben Ami 	case IWL_AMSDU_2K:
3281a4968d1SGolan Ben Ami 		return get_order(2 * 1024);
3296c4fbcbcSEmmanuel Grumbach 	case IWL_AMSDU_4K:
3306c4fbcbcSEmmanuel Grumbach 		return get_order(4 * 1024);
3316c4fbcbcSEmmanuel Grumbach 	case IWL_AMSDU_8K:
3326c4fbcbcSEmmanuel Grumbach 		return get_order(8 * 1024);
3336c4fbcbcSEmmanuel Grumbach 	case IWL_AMSDU_12K:
3343fa965c2SJohannes Berg 		return get_order(16 * 1024);
3356c4fbcbcSEmmanuel Grumbach 	default:
3366c4fbcbcSEmmanuel Grumbach 		WARN_ON(1);
3376c4fbcbcSEmmanuel Grumbach 		return -1;
3386c4fbcbcSEmmanuel Grumbach 	}
3396c4fbcbcSEmmanuel Grumbach }
3406c4fbcbcSEmmanuel Grumbach 
34180084e35SJohannes Berg static inline int
iwl_trans_get_rb_size(enum iwl_amsdu_size rb_size)34280084e35SJohannes Berg iwl_trans_get_rb_size(enum iwl_amsdu_size rb_size)
34380084e35SJohannes Berg {
34480084e35SJohannes Berg 	switch (rb_size) {
34580084e35SJohannes Berg 	case IWL_AMSDU_2K:
34680084e35SJohannes Berg 		return 2 * 1024;
34780084e35SJohannes Berg 	case IWL_AMSDU_4K:
34880084e35SJohannes Berg 		return 4 * 1024;
34980084e35SJohannes Berg 	case IWL_AMSDU_8K:
35080084e35SJohannes Berg 		return 8 * 1024;
35180084e35SJohannes Berg 	case IWL_AMSDU_12K:
3523fa965c2SJohannes Berg 		return 16 * 1024;
35380084e35SJohannes Berg 	default:
35480084e35SJohannes Berg 		WARN_ON(1);
35580084e35SJohannes Berg 		return 0;
35680084e35SJohannes Berg 	}
35780084e35SJohannes Berg }
35880084e35SJohannes Berg 
35939bdb17eSSharon Dvir struct iwl_hcmd_names {
36039bdb17eSSharon Dvir 	u8 cmd_id;
36139bdb17eSSharon Dvir 	const char *const cmd_name;
36239bdb17eSSharon Dvir };
36339bdb17eSSharon Dvir 
36439bdb17eSSharon Dvir #define HCMD_NAME(x)	\
36539bdb17eSSharon Dvir 	{ .cmd_id = x, .cmd_name = #x }
36639bdb17eSSharon Dvir 
36739bdb17eSSharon Dvir struct iwl_hcmd_arr {
36839bdb17eSSharon Dvir 	const struct iwl_hcmd_names *arr;
36939bdb17eSSharon Dvir 	int size;
37039bdb17eSSharon Dvir };
37139bdb17eSSharon Dvir 
37239bdb17eSSharon Dvir #define HCMD_ARR(x)	\
37339bdb17eSSharon Dvir 	{ .arr = x, .size = ARRAY_SIZE(x) }
37439bdb17eSSharon Dvir 
375e705c121SKalle Valo /**
376fdb70083SJohannes Berg  * struct iwl_dump_sanitize_ops - dump sanitization operations
377fdb70083SJohannes Berg  * @frob_txf: Scrub the TX FIFO data
378fdb70083SJohannes Berg  * @frob_hcmd: Scrub a host command, the %hcmd pointer is to the header
379fdb70083SJohannes Berg  *	but that might be short or long (&struct iwl_cmd_header or
380fdb70083SJohannes Berg  *	&struct iwl_cmd_header_wide)
381fdb70083SJohannes Berg  * @frob_mem: Scrub memory data
382fdb70083SJohannes Berg  */
383fdb70083SJohannes Berg struct iwl_dump_sanitize_ops {
384fdb70083SJohannes Berg 	void (*frob_txf)(void *ctx, void *buf, size_t buflen);
385fdb70083SJohannes Berg 	void (*frob_hcmd)(void *ctx, void *hcmd, size_t buflen);
386fdb70083SJohannes Berg 	void (*frob_mem)(void *ctx, u32 mem_addr, void *mem, size_t buflen);
387fdb70083SJohannes Berg };
388fdb70083SJohannes Berg 
389fdb70083SJohannes Berg /**
390e705c121SKalle Valo  * struct iwl_trans_config - transport configuration
391e705c121SKalle Valo  *
392e705c121SKalle Valo  * @op_mode: pointer to the upper layer.
393e705c121SKalle Valo  * @cmd_queue: the index of the command queue.
394e705c121SKalle Valo  *	Must be set before start_fw.
395e705c121SKalle Valo  * @cmd_fifo: the fifo for host commands
396e705c121SKalle Valo  * @cmd_q_wdg_timeout: the timeout of the watchdog timer for the command queue.
397e705c121SKalle Valo  * @no_reclaim_cmds: Some devices erroneously don't set the
398e705c121SKalle Valo  *	SEQ_RX_FRAME bit on some notifications, this is the
399e705c121SKalle Valo  *	list of such notifications to filter. Max length is
400e705c121SKalle Valo  *	%MAX_NO_RECLAIM_CMDS.
401e705c121SKalle Valo  * @n_no_reclaim_cmds: # of commands in list
4026c4fbcbcSEmmanuel Grumbach  * @rx_buf_size: RX buffer size needed for A-MSDUs
403e705c121SKalle Valo  *	if unset 4k will be the RX buffer size
404e705c121SKalle Valo  * @bc_table_dword: set to true if the BC table expects the byte count to be
405e705c121SKalle Valo  *	in DWORD (as opposed to bytes)
406e705c121SKalle Valo  * @scd_set_active: should the transport configure the SCD for HCMD queue
40739bdb17eSSharon Dvir  * @command_groups: array of command groups, each member is an array of the
40839bdb17eSSharon Dvir  *	commands in the group; for debugging only
40939bdb17eSSharon Dvir  * @command_groups_size: number of command groups, to avoid illegal access
41021cb3222SJohannes Berg  * @cb_data_offs: offset inside skb->cb to store transport data at, must have
41121cb3222SJohannes Berg  *	space for at least two pointers
412906d4eb8SJohannes Berg  * @fw_reset_handshake: firmware supports reset flow handshake
413227f2597SJohannes Berg  * @queue_alloc_cmd_ver: queue allocation command version, set to 0
414227f2597SJohannes Berg  *	for using the older SCD_QUEUE_CFG, set to the version of
415227f2597SJohannes Berg  *	SCD_QUEUE_CONFIG_CMD otherwise.
416e705c121SKalle Valo  */
417e705c121SKalle Valo struct iwl_trans_config {
418e705c121SKalle Valo 	struct iwl_op_mode *op_mode;
419e705c121SKalle Valo 
420e705c121SKalle Valo 	u8 cmd_queue;
421e705c121SKalle Valo 	u8 cmd_fifo;
422e705c121SKalle Valo 	unsigned int cmd_q_wdg_timeout;
423e705c121SKalle Valo 	const u8 *no_reclaim_cmds;
424e705c121SKalle Valo 	unsigned int n_no_reclaim_cmds;
425e705c121SKalle Valo 
4266c4fbcbcSEmmanuel Grumbach 	enum iwl_amsdu_size rx_buf_size;
427e705c121SKalle Valo 	bool bc_table_dword;
428e705c121SKalle Valo 	bool scd_set_active;
42939bdb17eSSharon Dvir 	const struct iwl_hcmd_arr *command_groups;
43039bdb17eSSharon Dvir 	int command_groups_size;
431e705c121SKalle Valo 
43221cb3222SJohannes Berg 	u8 cb_data_offs;
433906d4eb8SJohannes Berg 	bool fw_reset_handshake;
434227f2597SJohannes Berg 	u8 queue_alloc_cmd_ver;
435e705c121SKalle Valo };
436e705c121SKalle Valo 
437e705c121SKalle Valo struct iwl_trans_dump_data {
438e705c121SKalle Valo 	u32 len;
439e705c121SKalle Valo 	u8 data[];
440e705c121SKalle Valo };
441e705c121SKalle Valo 
442e705c121SKalle Valo struct iwl_trans;
443e705c121SKalle Valo 
444e705c121SKalle Valo struct iwl_trans_txq_scd_cfg {
445e705c121SKalle Valo 	u8 fifo;
4462a2e9d10SLiad Kaufman 	u8 sta_id;
447e705c121SKalle Valo 	u8 tid;
448e705c121SKalle Valo 	bool aggregate;
449e705c121SKalle Valo 	int frame_limit;
450e705c121SKalle Valo };
451e705c121SKalle Valo 
4526b35ff91SSara Sharon /**
45392536c96SSara Sharon  * struct iwl_trans_rxq_dma_data - RX queue DMA data
45492536c96SSara Sharon  * @fr_bd_cb: DMA address of free BD cyclic buffer
45592536c96SSara Sharon  * @fr_bd_wid: Initial write index of the free BD cyclic buffer
45692536c96SSara Sharon  * @urbd_stts_wrptr: DMA address of urbd_stts_wrptr
45792536c96SSara Sharon  * @ur_bd_cb: DMA address of used BD cyclic buffer
45892536c96SSara Sharon  */
45992536c96SSara Sharon struct iwl_trans_rxq_dma_data {
46092536c96SSara Sharon 	u64 fr_bd_cb;
46192536c96SSara Sharon 	u32 fr_bd_wid;
46292536c96SSara Sharon 	u64 urbd_stts_wrptr;
46392536c96SSara Sharon 	u64 ur_bd_cb;
46492536c96SSara Sharon };
46592536c96SSara Sharon 
4665f408503SAlon Giladi /* maximal number of DRAM MAP entries supported by FW */
4675f408503SAlon Giladi #define IPC_DRAM_MAP_ENTRY_NUM_MAX 64
4685f408503SAlon Giladi 
4695f408503SAlon Giladi /**
4705f408503SAlon Giladi  * struct iwl_pnvm_image - contains info about the parsed pnvm image
4715f408503SAlon Giladi  * @chunks: array of pointers to pnvm payloads and their sizes
4725f408503SAlon Giladi  * @n_chunks: the number of the pnvm payloads.
473b99e32cbSAlon Giladi  * @version: the version of the loaded PNVM image
4745f408503SAlon Giladi  */
4755f408503SAlon Giladi struct iwl_pnvm_image {
4765f408503SAlon Giladi 	struct {
4775f408503SAlon Giladi 		const void *data;
4785f408503SAlon Giladi 		u32 len;
4795f408503SAlon Giladi 	} chunks[IPC_DRAM_MAP_ENTRY_NUM_MAX];
4805f408503SAlon Giladi 	u32 n_chunks;
481b99e32cbSAlon Giladi 	u32 version;
4825f408503SAlon Giladi };
4835f408503SAlon Giladi 
48492536c96SSara Sharon /**
485e705c121SKalle Valo  * struct iwl_trans_ops - transport specific operations
486e705c121SKalle Valo  *
487e705c121SKalle Valo  * All the handlers MUST be implemented
488e705c121SKalle Valo  *
489bab3cb92SEmmanuel Grumbach  * @start_hw: starts the HW. From that point on, the HW can send interrupts.
490bab3cb92SEmmanuel Grumbach  *	May sleep.
491e705c121SKalle Valo  * @op_mode_leave: Turn off the HW RF kill indication if on
492e705c121SKalle Valo  *	May sleep
493e705c121SKalle Valo  * @start_fw: allocates and inits all the resources for the transport
494e705c121SKalle Valo  *	layer. Also kick a fw image.
495e705c121SKalle Valo  *	May sleep
496e705c121SKalle Valo  * @fw_alive: called when the fw sends alive notification. If the fw provides
497e705c121SKalle Valo  *	the SCD base address in SRAM, then provide it here, or 0 otherwise.
498e705c121SKalle Valo  *	May sleep
499e705c121SKalle Valo  * @stop_device: stops the whole device (embedded CPU put to reset) and stops
500bab3cb92SEmmanuel Grumbach  *	the HW. From that point on, the HW will be stopped but will still issue
501bab3cb92SEmmanuel Grumbach  *	an interrupt if the HW RF kill switch is triggered.
502e705c121SKalle Valo  *	This callback must do the right thing and not crash even if %start_hw()
503e705c121SKalle Valo  *	was called but not &start_fw(). May sleep.
504e705c121SKalle Valo  * @d3_suspend: put the device into the correct mode for WoWLAN during
505e705c121SKalle Valo  *	suspend. This is optional, if not implemented WoWLAN will not be
506e705c121SKalle Valo  *	supported. This callback may sleep.
507e705c121SKalle Valo  * @d3_resume: resume the device after WoWLAN, enabling the opmode to
508e705c121SKalle Valo  *	talk to the WoWLAN image to get its status. This is optional, if not
509e705c121SKalle Valo  *	implemented WoWLAN will not be supported. This callback may sleep.
510e705c121SKalle Valo  * @send_cmd:send a host command. Must return -ERFKILL if RFkill is asserted.
511e705c121SKalle Valo  *	If RFkill is asserted in the middle of a SYNC host command, it must
512e705c121SKalle Valo  *	return -ERFKILL straight away.
513e705c121SKalle Valo  *	May sleep only if CMD_ASYNC is not set
5143f73b8caSEmmanuel Grumbach  * @tx: send an skb. The transport relies on the op_mode to zero the
5156eb5e529SEmmanuel Grumbach  *	the ieee80211_tx_info->driver_data. If the MPDU is an A-MSDU, all
5166eb5e529SEmmanuel Grumbach  *	the CSUM will be taken care of (TCP CSUM and IP header in case of
5176eb5e529SEmmanuel Grumbach  *	IPv4). If the MPDU is a single MSDU, the op_mode must compute the IP
5186eb5e529SEmmanuel Grumbach  *	header if it is IPv4.
519e705c121SKalle Valo  *	Must be atomic
520e705c121SKalle Valo  * @reclaim: free packet until ssn. Returns a list of freed packets.
521e705c121SKalle Valo  *	Must be atomic
522e705c121SKalle Valo  * @txq_enable: setup a queue. To setup an AC queue, use the
523e705c121SKalle Valo  *	iwl_trans_ac_txq_enable wrapper. fw_alive must have been called before
524e705c121SKalle Valo  *	this one. The op_mode must not configure the HCMD queue. The scheduler
525e705c121SKalle Valo  *	configuration may be %NULL, in which case the hardware will not be
526dcfbd67bSEmmanuel Grumbach  *	configured. If true is returned, the operation mode needs to increment
527dcfbd67bSEmmanuel Grumbach  *	the sequence number of the packets routed to this queue because of a
528dcfbd67bSEmmanuel Grumbach  *	hardware scheduler bug. May sleep.
529e705c121SKalle Valo  * @txq_disable: de-configure a Tx queue to send AMPDUs
530e705c121SKalle Valo  *	Must be atomic
53142db09c1SLiad Kaufman  * @txq_set_shared_mode: change Tx queue shared/unshared marking
532d6d517b7SSara Sharon  * @wait_tx_queues_empty: wait until tx queues are empty. May sleep.
533d6d517b7SSara Sharon  * @wait_txq_empty: wait until specific tx queue is empty. May sleep.
534e705c121SKalle Valo  * @freeze_txq_timer: prevents the timer of the queue from firing until the
535e705c121SKalle Valo  *	queue is set to awake. Must be atomic.
5360cd58eaaSEmmanuel Grumbach  * @block_txq_ptrs: stop updating the write pointers of the Tx queues. Note
5370cd58eaaSEmmanuel Grumbach  *	that the transport needs to refcount the calls since this function
5380cd58eaaSEmmanuel Grumbach  *	will be called several times with block = true, and then the queues
5390cd58eaaSEmmanuel Grumbach  *	need to be unblocked only after the same number of calls with
5400cd58eaaSEmmanuel Grumbach  *	block = false.
541e705c121SKalle Valo  * @write8: write a u8 to a register at offset ofs from the BAR
542e705c121SKalle Valo  * @write32: write a u32 to a register at offset ofs from the BAR
543e705c121SKalle Valo  * @read32: read a u32 register at offset ofs from the BAR
544e705c121SKalle Valo  * @read_prph: read a DWORD from a periphery register
545e705c121SKalle Valo  * @write_prph: write a DWORD to a periphery register
546e705c121SKalle Valo  * @read_mem: read device's SRAM in DWORD
547e705c121SKalle Valo  * @write_mem: write device's SRAM in DWORD. If %buf is %NULL, then the memory
548e705c121SKalle Valo  *	will be zeroed.
549f696a7eeSLuca Coelho  * @read_config32: read a u32 value from the device's config space at
550f696a7eeSLuca Coelho  *	the given offset.
551e705c121SKalle Valo  * @configure: configure parameters required by the transport layer from
552e705c121SKalle Valo  *	the op_mode. May be called several times before start_fw, can't be
553e705c121SKalle Valo  *	called after that.
554e705c121SKalle Valo  * @set_pmi: set the power pmi state
555e705c121SKalle Valo  * @grab_nic_access: wake the NIC to be able to access non-HBUS regs.
556e705c121SKalle Valo  *	Sleeping is not allowed between grab_nic_access and
557e705c121SKalle Valo  *	release_nic_access.
558e705c121SKalle Valo  * @release_nic_access: let the NIC go to sleep. The "flags" parameter
559e705c121SKalle Valo  *	must be the same one that was sent before to the grab_nic_access.
560e705c121SKalle Valo  * @set_bits_mask - set SRAM register according to value and mask.
561e705c121SKalle Valo  * @dump_data: return a vmalloc'ed buffer with debug data, maybe containing last
562e705c121SKalle Valo  *	TX'ed commands and similar. The buffer will be vfree'd by the caller.
563e705c121SKalle Valo  *	Note that the transport must fill in the proper file headers.
564f7805b33SLior Cohen  * @debugfs_cleanup: used in the driver unload flow to make a proper cleanup
565f7805b33SLior Cohen  *	of the trans debugfs
566194d1f84SAlon Giladi  * @load_pnvm: save the pnvm data in DRAM
567a182dfabSLuca Coelho  * @set_pnvm: set the pnvm data in the prph scratch buffer, inside the
568a182dfabSLuca Coelho  *	context info.
569c738fb61SAlon Giladi  * @load_reduce_power: copy reduce power table to the corresponding DRAM memory
570c738fb61SAlon Giladi  * @set_reduce_power: set reduce power table addresses in the sratch buffer
5713161a34dSMordechay Goodstein  * @interrupts: disable/enable interrupts to transport
572e705c121SKalle Valo  */
573e705c121SKalle Valo struct iwl_trans_ops {
574e705c121SKalle Valo 
575bab3cb92SEmmanuel Grumbach 	int (*start_hw)(struct iwl_trans *iwl_trans);
576e705c121SKalle Valo 	void (*op_mode_leave)(struct iwl_trans *iwl_trans);
577e705c121SKalle Valo 	int (*start_fw)(struct iwl_trans *trans, const struct fw_img *fw,
578e705c121SKalle Valo 			bool run_in_rfkill);
579e705c121SKalle Valo 	void (*fw_alive)(struct iwl_trans *trans, u32 scd_addr);
580bab3cb92SEmmanuel Grumbach 	void (*stop_device)(struct iwl_trans *trans);
581e705c121SKalle Valo 
582e5f3f215SHaim Dreyfuss 	int (*d3_suspend)(struct iwl_trans *trans, bool test, bool reset);
583e705c121SKalle Valo 	int (*d3_resume)(struct iwl_trans *trans, enum iwl_d3_status *status,
58423ae6128SMatti Gottlieb 			 bool test, bool reset);
585e705c121SKalle Valo 
586e705c121SKalle Valo 	int (*send_cmd)(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
587e705c121SKalle Valo 
588e705c121SKalle Valo 	int (*tx)(struct iwl_trans *trans, struct sk_buff *skb,
589a89c72ffSJohannes Berg 		  struct iwl_device_tx_cmd *dev_cmd, int queue);
590e705c121SKalle Valo 	void (*reclaim)(struct iwl_trans *trans, int queue, int ssn,
591fc163831SMiri Korenblit 			struct sk_buff_head *skbs, bool is_flush);
592e705c121SKalle Valo 
593ba7136f3SAlex Malamud 	void (*set_q_ptrs)(struct iwl_trans *trans, int queue, int ptr);
594ba7136f3SAlex Malamud 
595dcfbd67bSEmmanuel Grumbach 	bool (*txq_enable)(struct iwl_trans *trans, int queue, u16 ssn,
596e705c121SKalle Valo 			   const struct iwl_trans_txq_scd_cfg *cfg,
597e705c121SKalle Valo 			   unsigned int queue_wdg_timeout);
598e705c121SKalle Valo 	void (*txq_disable)(struct iwl_trans *trans, int queue,
599e705c121SKalle Valo 			    bool configure_scd);
6002f7a3863SLuca Coelho 	/* 22000 functions */
601227f2597SJohannes Berg 	int (*txq_alloc)(struct iwl_trans *trans, u32 flags,
602227f2597SJohannes Berg 			 u32 sta_mask, u8 tid,
60385b17a33SJohannes Berg 			 int size, unsigned int queue_wdg_timeout);
6046b35ff91SSara Sharon 	void (*txq_free)(struct iwl_trans *trans, int queue);
60592536c96SSara Sharon 	int (*rxq_dma_data)(struct iwl_trans *trans, int queue,
60692536c96SSara Sharon 			    struct iwl_trans_rxq_dma_data *data);
607e705c121SKalle Valo 
60842db09c1SLiad Kaufman 	void (*txq_set_shared_mode)(struct iwl_trans *trans, u32 txq_id,
60942db09c1SLiad Kaufman 				    bool shared);
61042db09c1SLiad Kaufman 
611a1a57877SSara Sharon 	int (*wait_tx_queues_empty)(struct iwl_trans *trans, u32 txq_bm);
612d6d517b7SSara Sharon 	int (*wait_txq_empty)(struct iwl_trans *trans, int queue);
613e705c121SKalle Valo 	void (*freeze_txq_timer)(struct iwl_trans *trans, unsigned long txqs,
614e705c121SKalle Valo 				 bool freeze);
6150cd58eaaSEmmanuel Grumbach 	void (*block_txq_ptrs)(struct iwl_trans *trans, bool block);
616e705c121SKalle Valo 
617e705c121SKalle Valo 	void (*write8)(struct iwl_trans *trans, u32 ofs, u8 val);
618e705c121SKalle Valo 	void (*write32)(struct iwl_trans *trans, u32 ofs, u32 val);
619e705c121SKalle Valo 	u32 (*read32)(struct iwl_trans *trans, u32 ofs);
620e705c121SKalle Valo 	u32 (*read_prph)(struct iwl_trans *trans, u32 ofs);
621e705c121SKalle Valo 	void (*write_prph)(struct iwl_trans *trans, u32 ofs, u32 val);
622e705c121SKalle Valo 	int (*read_mem)(struct iwl_trans *trans, u32 addr,
623e705c121SKalle Valo 			void *buf, int dwords);
624e705c121SKalle Valo 	int (*write_mem)(struct iwl_trans *trans, u32 addr,
625e705c121SKalle Valo 			 const void *buf, int dwords);
626f696a7eeSLuca Coelho 	int (*read_config32)(struct iwl_trans *trans, u32 ofs, u32 *val);
627e705c121SKalle Valo 	void (*configure)(struct iwl_trans *trans,
628e705c121SKalle Valo 			  const struct iwl_trans_config *trans_cfg);
629e705c121SKalle Valo 	void (*set_pmi)(struct iwl_trans *trans, bool state);
63015bf5ac6SJohannes Berg 	int (*sw_reset)(struct iwl_trans *trans, bool retake_ownership);
6311ed08f6fSJohannes Berg 	bool (*grab_nic_access)(struct iwl_trans *trans);
6321ed08f6fSJohannes Berg 	void (*release_nic_access)(struct iwl_trans *trans);
633e705c121SKalle Valo 	void (*set_bits_mask)(struct iwl_trans *trans, u32 reg, u32 mask,
634e705c121SKalle Valo 			      u32 value);
635e705c121SKalle Valo 
636e705c121SKalle Valo 	struct iwl_trans_dump_data *(*dump_data)(struct iwl_trans *trans,
637fdb70083SJohannes Berg 						 u32 dump_mask,
638fdb70083SJohannes Berg 						 const struct iwl_dump_sanitize_ops *sanitize_ops,
639fdb70083SJohannes Berg 						 void *sanitize_ctx);
640f7805b33SLior Cohen 	void (*debugfs_cleanup)(struct iwl_trans *trans);
641d1967ce6SShahar S Matityahu 	void (*sync_nmi)(struct iwl_trans *trans);
642194d1f84SAlon Giladi 	int (*load_pnvm)(struct iwl_trans *trans,
64333182810SAlon Giladi 			 const struct iwl_pnvm_image *pnvm_payloads,
64433182810SAlon Giladi 			 const struct iwl_ucode_capabilities *capa);
64533182810SAlon Giladi 	void (*set_pnvm)(struct iwl_trans *trans,
64633182810SAlon Giladi 			 const struct iwl_ucode_capabilities *capa);
647c738fb61SAlon Giladi 	int (*load_reduce_power)(struct iwl_trans *trans,
6487c9c8477SAlon Giladi 				 const struct iwl_pnvm_image *payloads,
6497c9c8477SAlon Giladi 				 const struct iwl_ucode_capabilities *capa);
6507c9c8477SAlon Giladi 	void (*set_reduce_power)(struct iwl_trans *trans,
6517c9c8477SAlon Giladi 				 const struct iwl_ucode_capabilities *capa);
652c738fb61SAlon Giladi 
6533161a34dSMordechay Goodstein 	void (*interrupts)(struct iwl_trans *trans, bool enable);
654c0941aceSMukesh Sisodiya 	int (*imr_dma_data)(struct iwl_trans *trans,
655c0941aceSMukesh Sisodiya 			    u32 dst_addr, u64 src_addr,
656c0941aceSMukesh Sisodiya 			    u32 byte_cnt);
657c0941aceSMukesh Sisodiya 
658e705c121SKalle Valo };
659e705c121SKalle Valo 
660e705c121SKalle Valo /**
661e705c121SKalle Valo  * enum iwl_trans_state - state of the transport layer
662e705c121SKalle Valo  *
663b2ed841eSJohannes Berg  * @IWL_TRANS_NO_FW: firmware wasn't started yet, or crashed
664b2ed841eSJohannes Berg  * @IWL_TRANS_FW_STARTED: FW was started, but not alive yet
665b2ed841eSJohannes Berg  * @IWL_TRANS_FW_ALIVE: FW has sent an alive response
666e705c121SKalle Valo  */
667e705c121SKalle Valo enum iwl_trans_state {
668b2ed841eSJohannes Berg 	IWL_TRANS_NO_FW,
669b2ed841eSJohannes Berg 	IWL_TRANS_FW_STARTED,
670b2ed841eSJohannes Berg 	IWL_TRANS_FW_ALIVE,
671e705c121SKalle Valo };
672e705c121SKalle Valo 
673e705c121SKalle Valo /**
674b7282643SLuca Coelho  * DOC: Platform power management
675e705c121SKalle Valo  *
676b7282643SLuca Coelho  * In system-wide power management the entire platform goes into a low
677b7282643SLuca Coelho  * power state (e.g. idle or suspend to RAM) at the same time and the
678b7282643SLuca Coelho  * device is configured as a wakeup source for the entire platform.
679b7282643SLuca Coelho  * This is usually triggered by userspace activity (e.g. the user
680b7282643SLuca Coelho  * presses the suspend button or a power management daemon decides to
681b7282643SLuca Coelho  * put the platform in low power mode).  The device's behavior in this
682b7282643SLuca Coelho  * mode is dictated by the wake-on-WLAN configuration.
683b7282643SLuca Coelho  *
684b7282643SLuca Coelho  * The terms used for the device's behavior are as follows:
685b7282643SLuca Coelho  *
686b7282643SLuca Coelho  *	- D0: the device is fully powered and the host is awake;
687b7282643SLuca Coelho  *	- D3: the device is in low power mode and only reacts to
688b7282643SLuca Coelho  *		specific events (e.g. magic-packet received or scan
689b7282643SLuca Coelho  *		results found);
690b7282643SLuca Coelho  *
691b7282643SLuca Coelho  * These terms reflect the power modes in the firmware and are not to
692f60e2750SEmmanuel Grumbach  * be confused with the physical device power state.
693e705c121SKalle Valo  */
694b7282643SLuca Coelho 
695b7282643SLuca Coelho /**
696b7282643SLuca Coelho  * enum iwl_plat_pm_mode - platform power management mode
697b7282643SLuca Coelho  *
698b7282643SLuca Coelho  * This enumeration describes the device's platform power management
699f60e2750SEmmanuel Grumbach  * behavior when in system-wide suspend (i.e WoWLAN).
700b7282643SLuca Coelho  *
701b7282643SLuca Coelho  * @IWL_PLAT_PM_MODE_DISABLED: power management is disabled for this
702f60e2750SEmmanuel Grumbach  *	device.  In system-wide suspend mode, it means that the all
703f60e2750SEmmanuel Grumbach  *	connections will be closed automatically by mac80211 before
704f60e2750SEmmanuel Grumbach  *	the platform is suspended.
705b7282643SLuca Coelho  * @IWL_PLAT_PM_MODE_D3: the device goes into D3 mode (i.e. WoWLAN).
706b7282643SLuca Coelho  */
707b7282643SLuca Coelho enum iwl_plat_pm_mode {
708b7282643SLuca Coelho 	IWL_PLAT_PM_MODE_DISABLED,
709b7282643SLuca Coelho 	IWL_PLAT_PM_MODE_D3,
710e705c121SKalle Valo };
711e705c121SKalle Valo 
712341bd290SShahar S Matityahu /**
713341bd290SShahar S Matityahu  * enum iwl_ini_cfg_state
714341bd290SShahar S Matityahu  * @IWL_INI_CFG_STATE_NOT_LOADED: no debug cfg was given
715341bd290SShahar S Matityahu  * @IWL_INI_CFG_STATE_LOADED: debug cfg was found and loaded
716341bd290SShahar S Matityahu  * @IWL_INI_CFG_STATE_CORRUPTED: debug cfg was found and some of the TLVs
717341bd290SShahar S Matityahu  *	are corrupted. The rest of the debug TLVs will still be used
718341bd290SShahar S Matityahu  */
719341bd290SShahar S Matityahu enum iwl_ini_cfg_state {
720341bd290SShahar S Matityahu 	IWL_INI_CFG_STATE_NOT_LOADED,
721341bd290SShahar S Matityahu 	IWL_INI_CFG_STATE_LOADED,
722341bd290SShahar S Matityahu 	IWL_INI_CFG_STATE_CORRUPTED,
723341bd290SShahar S Matityahu };
724341bd290SShahar S Matityahu 
725b8a7547dSShahar S Matityahu /* Max time to wait for nmi interrupt */
726b8a7547dSShahar S Matityahu #define IWL_TRANS_NMI_TIMEOUT (HZ / 4)
727b8a7547dSShahar S Matityahu 
72888964b2eSSara Sharon /**
72988964b2eSSara Sharon  * struct iwl_dram_data
73088964b2eSSara Sharon  * @physical: page phy pointer
73188964b2eSSara Sharon  * @block: pointer to the allocated block/page
73288964b2eSSara Sharon  * @size: size of the block/page
73388964b2eSSara Sharon  */
73488964b2eSSara Sharon struct iwl_dram_data {
73588964b2eSSara Sharon 	dma_addr_t physical;
73688964b2eSSara Sharon 	void *block;
73788964b2eSSara Sharon 	int size;
73888964b2eSSara Sharon };
7394cbb8e50SLuciano Coelho 
740e705c121SKalle Valo /**
7417c9c8477SAlon Giladi  * @drams: array of several DRAM areas that contains the pnvm and power
7427c9c8477SAlon Giladi  *	reduction table payloads.
7437c9c8477SAlon Giladi  * @n_regions: number of DRAM regions that were allocated
7447c9c8477SAlon Giladi  * @prph_scratch_mem_desc: points to a structure allocated in dram,
7457c9c8477SAlon Giladi  *	designed to show FW where all the payloads are.
7467c9c8477SAlon Giladi  */
7477c9c8477SAlon Giladi struct iwl_dram_regions {
7487c9c8477SAlon Giladi 	struct iwl_dram_data drams[IPC_DRAM_MAP_ENTRY_NUM_MAX];
7497c9c8477SAlon Giladi 	struct iwl_dram_data prph_scratch_mem_desc;
7507c9c8477SAlon Giladi 	u8 n_regions;
7517c9c8477SAlon Giladi };
7527c9c8477SAlon Giladi 
7537c9c8477SAlon Giladi /**
754593fae3eSShahar S Matityahu  * struct iwl_fw_mon - fw monitor per allocation id
755593fae3eSShahar S Matityahu  * @num_frags: number of fragments
756593fae3eSShahar S Matityahu  * @frags: an array of DRAM buffer fragments
757593fae3eSShahar S Matityahu  */
758593fae3eSShahar S Matityahu struct iwl_fw_mon {
759593fae3eSShahar S Matityahu 	u32 num_frags;
760593fae3eSShahar S Matityahu 	struct iwl_dram_data *frags;
761593fae3eSShahar S Matityahu };
762593fae3eSShahar S Matityahu 
763593fae3eSShahar S Matityahu /**
764505a00c0SShahar S Matityahu  * struct iwl_self_init_dram - dram data used by self init process
765505a00c0SShahar S Matityahu  * @fw: lmac and umac dram data
766505a00c0SShahar S Matityahu  * @fw_cnt: total number of items in array
767505a00c0SShahar S Matityahu  * @paging: paging dram data
768505a00c0SShahar S Matityahu  * @paging_cnt: total number of items in array
769505a00c0SShahar S Matityahu  */
770505a00c0SShahar S Matityahu struct iwl_self_init_dram {
771505a00c0SShahar S Matityahu 	struct iwl_dram_data *fw;
772505a00c0SShahar S Matityahu 	int fw_cnt;
773505a00c0SShahar S Matityahu 	struct iwl_dram_data *paging;
774505a00c0SShahar S Matityahu 	int paging_cnt;
775505a00c0SShahar S Matityahu };
776505a00c0SShahar S Matityahu 
777505a00c0SShahar S Matityahu /**
778c0941aceSMukesh Sisodiya  * struct iwl_imr_data - imr dram data used during debug process
779c0941aceSMukesh Sisodiya  * @imr_enable: imr enable status received from fw
780c0941aceSMukesh Sisodiya  * @imr_size: imr dram size received from fw
781c0941aceSMukesh Sisodiya  * @sram_addr: sram address from debug tlv
782c0941aceSMukesh Sisodiya  * @sram_size: sram size from debug tlv
783c0941aceSMukesh Sisodiya  * @imr2sram_remainbyte`: size remained after each dma transfer
784c0941aceSMukesh Sisodiya  * @imr_curr_addr: current dst address used during dma transfer
785c0941aceSMukesh Sisodiya  * @imr_base_addr: imr address received from fw
786c0941aceSMukesh Sisodiya  */
787c0941aceSMukesh Sisodiya struct iwl_imr_data {
788c0941aceSMukesh Sisodiya 	u32 imr_enable;
789c0941aceSMukesh Sisodiya 	u32 imr_size;
790c0941aceSMukesh Sisodiya 	u32 sram_addr;
791c0941aceSMukesh Sisodiya 	u32 sram_size;
792c0941aceSMukesh Sisodiya 	u32 imr2sram_remainbyte;
793c0941aceSMukesh Sisodiya 	u64 imr_curr_addr;
794c0941aceSMukesh Sisodiya 	__le64 imr_base_addr;
795c0941aceSMukesh Sisodiya };
796c0941aceSMukesh Sisodiya 
7975e31b3dfSMukesh Sisodiya #define IWL_TRANS_CURRENT_PC_NAME_MAX_BYTES      32
7985e31b3dfSMukesh Sisodiya 
7995e31b3dfSMukesh Sisodiya /**
8005e31b3dfSMukesh Sisodiya  * struct iwl_pc_data - program counter details
8015e31b3dfSMukesh Sisodiya  * @pc_name: cpu name
8025e31b3dfSMukesh Sisodiya  * @pc_address: cpu program counter
8035e31b3dfSMukesh Sisodiya  */
8045e31b3dfSMukesh Sisodiya struct iwl_pc_data {
8055e31b3dfSMukesh Sisodiya 	u8  pc_name[IWL_TRANS_CURRENT_PC_NAME_MAX_BYTES];
8065e31b3dfSMukesh Sisodiya 	u32 pc_address;
8075e31b3dfSMukesh Sisodiya };
8085e31b3dfSMukesh Sisodiya 
809c0941aceSMukesh Sisodiya /**
81091c28b83SShahar S Matityahu  * struct iwl_trans_debug - transport debug related data
81191c28b83SShahar S Matityahu  *
81291c28b83SShahar S Matityahu  * @n_dest_reg: num of reg_ops in %dbg_dest_tlv
81391c28b83SShahar S Matityahu  * @rec_on: true iff there is a fw debug recording currently active
81491c28b83SShahar S Matityahu  * @dest_tlv: points to the destination TLV for debug
81591c28b83SShahar S Matityahu  * @conf_tlv: array of pointers to configuration TLVs for debug
81691c28b83SShahar S Matityahu  * @trigger_tlv: array of pointers to triggers TLVs for debug
81791c28b83SShahar S Matityahu  * @lmac_error_event_table: addrs of lmacs error tables
81891c28b83SShahar S Matityahu  * @umac_error_event_table: addr of umac error table
81957417e1bSJohannes Berg  * @tcm_error_event_table: address(es) of TCM error table(s)
8204cd177b4SJohannes Berg  * @rcm_error_event_table: address(es) of RCM error table(s)
82191c28b83SShahar S Matityahu  * @error_event_table_tlv_status: bitmap that indicates what error table
82291c28b83SShahar S Matityahu  *	pointers was recevied via TLV. uses enum &iwl_error_event_table_status
823341bd290SShahar S Matityahu  * @internal_ini_cfg: internal debug cfg state. Uses &enum iwl_ini_cfg_state
824341bd290SShahar S Matityahu  * @external_ini_cfg: external debug cfg state. Uses &enum iwl_ini_cfg_state
825593fae3eSShahar S Matityahu  * @fw_mon_cfg: debug buffer allocation configuration
826593fae3eSShahar S Matityahu  * @fw_mon_ini: DRAM buffer fragments per allocation id
82769f0e505SShahar S Matityahu  * @fw_mon: DRAM buffer for firmware monitor
82891c28b83SShahar S Matityahu  * @hw_error: equals true if hw error interrupt was received from the FW
829029c25f3SShahar S Matityahu  * @ini_dest: debug monitor destination uses &enum iwl_fw_ini_buffer_location
8303b589d56SShahar S Matityahu  * @active_regions: active regions
831677d25b2SShahar S Matityahu  * @debug_info_tlv_list: list of debug info TLVs
832a9248de4SShahar S Matityahu  * @time_point: array of debug time points
83360e8abd9SShahar S Matityahu  * @periodic_trig_list: periodic triggers list
834f21baf24SMukesh Sisodiya  * @domains_bitmap: bitmap of active domains other than &IWL_FW_INI_DOMAIN_ALWAYS_ON
835f21baf24SMukesh Sisodiya  * @ucode_preset: preset based on ucode
83651fa8c02SMukesh Sisodiya  * @dump_file_name_ext: dump file name extension
83751fa8c02SMukesh Sisodiya  * @dump_file_name_ext_valid: dump file name extension if valid or not
8385e31b3dfSMukesh Sisodiya  * @num_pc: number of program counter for cpu
8395e31b3dfSMukesh Sisodiya  * @pc_data: details of the program counter
84091c28b83SShahar S Matityahu  */
84191c28b83SShahar S Matityahu struct iwl_trans_debug {
84291c28b83SShahar S Matityahu 	u8 n_dest_reg;
84391c28b83SShahar S Matityahu 	bool rec_on;
84491c28b83SShahar S Matityahu 
84591c28b83SShahar S Matityahu 	const struct iwl_fw_dbg_dest_tlv_v1 *dest_tlv;
84691c28b83SShahar S Matityahu 	const struct iwl_fw_dbg_conf_tlv *conf_tlv[FW_DBG_CONF_MAX];
84791c28b83SShahar S Matityahu 	struct iwl_fw_dbg_trigger_tlv * const *trigger_tlv;
84891c28b83SShahar S Matityahu 
84991c28b83SShahar S Matityahu 	u32 lmac_error_event_table[2];
85091c28b83SShahar S Matityahu 	u32 umac_error_event_table;
85157417e1bSJohannes Berg 	u32 tcm_error_event_table[2];
8524cd177b4SJohannes Berg 	u32 rcm_error_event_table[2];
85391c28b83SShahar S Matityahu 	unsigned int error_event_table_tlv_status;
85491c28b83SShahar S Matityahu 
855341bd290SShahar S Matityahu 	enum iwl_ini_cfg_state internal_ini_cfg;
856341bd290SShahar S Matityahu 	enum iwl_ini_cfg_state external_ini_cfg;
85791c28b83SShahar S Matityahu 
858593fae3eSShahar S Matityahu 	struct iwl_fw_ini_allocation_tlv fw_mon_cfg[IWL_FW_INI_ALLOCATION_NUM];
859593fae3eSShahar S Matityahu 	struct iwl_fw_mon fw_mon_ini[IWL_FW_INI_ALLOCATION_NUM];
860593fae3eSShahar S Matityahu 
86169f0e505SShahar S Matityahu 	struct iwl_dram_data fw_mon;
86291c28b83SShahar S Matityahu 
86391c28b83SShahar S Matityahu 	bool hw_error;
864029c25f3SShahar S Matityahu 	enum iwl_fw_ini_buffer_location ini_dest;
8653b589d56SShahar S Matityahu 
866beb44c0cSMordechay Goodstein 	u64 unsupported_region_msk;
8673b589d56SShahar S Matityahu 	struct iwl_ucode_tlv *active_regions[IWL_FW_INI_MAX_REGION_ID];
868677d25b2SShahar S Matityahu 	struct list_head debug_info_tlv_list;
869a9248de4SShahar S Matityahu 	struct iwl_dbg_tlv_time_point_data
870a9248de4SShahar S Matityahu 		time_point[IWL_FW_INI_TIME_POINT_NUM];
87160e8abd9SShahar S Matityahu 	struct list_head periodic_trig_list;
872cf29c5b6SShahar S Matityahu 
873cf29c5b6SShahar S Matityahu 	u32 domains_bitmap;
874f21baf24SMukesh Sisodiya 	u32 ucode_preset;
875ddb6b76bSMukesh Sisodiya 	bool restart_required;
876ddb6b76bSMukesh Sisodiya 	u32 last_tp_resetfw;
877c0941aceSMukesh Sisodiya 	struct iwl_imr_data imr_data;
87851fa8c02SMukesh Sisodiya 	u8 dump_file_name_ext[IWL_FW_INI_MAX_NAME];
87951fa8c02SMukesh Sisodiya 	bool dump_file_name_ext_valid;
8805e31b3dfSMukesh Sisodiya 	u32 num_pc;
8815e31b3dfSMukesh Sisodiya 	struct iwl_pc_data *pc_data;
88291c28b83SShahar S Matityahu };
88391c28b83SShahar S Matityahu 
8844807e736SMordechay Goodstein struct iwl_dma_ptr {
8854807e736SMordechay Goodstein 	dma_addr_t dma;
8864807e736SMordechay Goodstein 	void *addr;
8874807e736SMordechay Goodstein 	size_t size;
8884807e736SMordechay Goodstein };
8894807e736SMordechay Goodstein 
8904807e736SMordechay Goodstein struct iwl_cmd_meta {
8914807e736SMordechay Goodstein 	/* only for SYNC commands, iff the reply skb is wanted */
8924807e736SMordechay Goodstein 	struct iwl_host_cmd *source;
8934807e736SMordechay Goodstein 	u32 flags;
8944807e736SMordechay Goodstein 	u32 tbs;
8954807e736SMordechay Goodstein };
8964807e736SMordechay Goodstein 
8974807e736SMordechay Goodstein /*
8984807e736SMordechay Goodstein  * The FH will write back to the first TB only, so we need to copy some data
8994807e736SMordechay Goodstein  * into the buffer regardless of whether it should be mapped or not.
9004807e736SMordechay Goodstein  * This indicates how big the first TB must be to include the scratch buffer
9014807e736SMordechay Goodstein  * and the assigned PN.
9024807e736SMordechay Goodstein  * Since PN location is 8 bytes at offset 12, it's 20 now.
9034807e736SMordechay Goodstein  * If we make it bigger then allocations will be bigger and copy slower, so
9044807e736SMordechay Goodstein  * that's probably not useful.
9054807e736SMordechay Goodstein  */
9064807e736SMordechay Goodstein #define IWL_FIRST_TB_SIZE	20
9074807e736SMordechay Goodstein #define IWL_FIRST_TB_SIZE_ALIGN ALIGN(IWL_FIRST_TB_SIZE, 64)
9084807e736SMordechay Goodstein 
9094807e736SMordechay Goodstein struct iwl_pcie_txq_entry {
9104807e736SMordechay Goodstein 	void *cmd;
9114807e736SMordechay Goodstein 	struct sk_buff *skb;
9124807e736SMordechay Goodstein 	/* buffer to free after command completes */
9134807e736SMordechay Goodstein 	const void *free_buf;
9144807e736SMordechay Goodstein 	struct iwl_cmd_meta meta;
9154807e736SMordechay Goodstein };
9164807e736SMordechay Goodstein 
9174807e736SMordechay Goodstein struct iwl_pcie_first_tb_buf {
9184807e736SMordechay Goodstein 	u8 buf[IWL_FIRST_TB_SIZE_ALIGN];
9194807e736SMordechay Goodstein };
9204807e736SMordechay Goodstein 
9214807e736SMordechay Goodstein /**
9224807e736SMordechay Goodstein  * struct iwl_txq - Tx Queue for DMA
9234807e736SMordechay Goodstein  * @q: generic Rx/Tx queue descriptor
9244807e736SMordechay Goodstein  * @tfds: transmit frame descriptors (DMA memory)
9254807e736SMordechay Goodstein  * @first_tb_bufs: start of command headers, including scratch buffers, for
9264807e736SMordechay Goodstein  *	the writeback -- this is DMA memory and an array holding one buffer
9274807e736SMordechay Goodstein  *	for each command on the queue
9284807e736SMordechay Goodstein  * @first_tb_dma: DMA address for the first_tb_bufs start
9294807e736SMordechay Goodstein  * @entries: transmit entries (driver state)
9304807e736SMordechay Goodstein  * @lock: queue lock
9314807e736SMordechay Goodstein  * @stuck_timer: timer that fires if queue gets stuck
9324807e736SMordechay Goodstein  * @trans: pointer back to transport (for timer)
9334807e736SMordechay Goodstein  * @need_update: indicates need to update read/write index
9344807e736SMordechay Goodstein  * @ampdu: true if this queue is an ampdu queue for an specific RA/TID
9354807e736SMordechay Goodstein  * @wd_timeout: queue watchdog timeout (jiffies) - per queue
9364807e736SMordechay Goodstein  * @frozen: tx stuck queue timer is frozen
9374807e736SMordechay Goodstein  * @frozen_expiry_remainder: remember how long until the timer fires
9384807e736SMordechay Goodstein  * @bc_tbl: byte count table of the queue (relevant only for gen2 transport)
9394807e736SMordechay Goodstein  * @write_ptr: 1-st empty entry (index) host_w
9404807e736SMordechay Goodstein  * @read_ptr: last used entry (index) host_r
9414807e736SMordechay Goodstein  * @dma_addr:  physical addr for BD's
9424807e736SMordechay Goodstein  * @n_window: safe queue window
9434807e736SMordechay Goodstein  * @id: queue id
9444807e736SMordechay Goodstein  * @low_mark: low watermark, resume queue if free space more than this
9454807e736SMordechay Goodstein  * @high_mark: high watermark, stop queue if free space less than this
9464807e736SMordechay Goodstein  *
9474807e736SMordechay Goodstein  * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
9484807e736SMordechay Goodstein  * descriptors) and required locking structures.
9494807e736SMordechay Goodstein  *
9504807e736SMordechay Goodstein  * Note the difference between TFD_QUEUE_SIZE_MAX and n_window: the hardware
9514807e736SMordechay Goodstein  * always assumes 256 descriptors, so TFD_QUEUE_SIZE_MAX is always 256 (unless
9524807e736SMordechay Goodstein  * there might be HW changes in the future). For the normal TX
9534807e736SMordechay Goodstein  * queues, n_window, which is the size of the software queue data
9544807e736SMordechay Goodstein  * is also 256; however, for the command queue, n_window is only
9554807e736SMordechay Goodstein  * 32 since we don't need so many commands pending. Since the HW
9564807e736SMordechay Goodstein  * still uses 256 BDs for DMA though, TFD_QUEUE_SIZE_MAX stays 256.
9574807e736SMordechay Goodstein  * This means that we end up with the following:
9584807e736SMordechay Goodstein  *  HW entries: | 0 | ... | N * 32 | ... | N * 32 + 31 | ... | 255 |
9594807e736SMordechay Goodstein  *  SW entries:           | 0      | ... | 31          |
9604807e736SMordechay Goodstein  * where N is a number between 0 and 7. This means that the SW
9614807e736SMordechay Goodstein  * data is a window overlayed over the HW queue.
9624807e736SMordechay Goodstein  */
9634807e736SMordechay Goodstein struct iwl_txq {
9644807e736SMordechay Goodstein 	void *tfds;
9654807e736SMordechay Goodstein 	struct iwl_pcie_first_tb_buf *first_tb_bufs;
9664807e736SMordechay Goodstein 	dma_addr_t first_tb_dma;
9674807e736SMordechay Goodstein 	struct iwl_pcie_txq_entry *entries;
9684807e736SMordechay Goodstein 	/* lock for syncing changes on the queue */
9694807e736SMordechay Goodstein 	spinlock_t lock;
9704807e736SMordechay Goodstein 	unsigned long frozen_expiry_remainder;
9714807e736SMordechay Goodstein 	struct timer_list stuck_timer;
9724807e736SMordechay Goodstein 	struct iwl_trans *trans;
9734807e736SMordechay Goodstein 	bool need_update;
9744807e736SMordechay Goodstein 	bool frozen;
9754807e736SMordechay Goodstein 	bool ampdu;
9764807e736SMordechay Goodstein 	int block;
9774807e736SMordechay Goodstein 	unsigned long wd_timeout;
9784807e736SMordechay Goodstein 	struct sk_buff_head overflow_q;
9794807e736SMordechay Goodstein 	struct iwl_dma_ptr bc_tbl;
9804807e736SMordechay Goodstein 
9814807e736SMordechay Goodstein 	int write_ptr;
9824807e736SMordechay Goodstein 	int read_ptr;
9834807e736SMordechay Goodstein 	dma_addr_t dma_addr;
9844807e736SMordechay Goodstein 	int n_window;
9854807e736SMordechay Goodstein 	u32 id;
9864807e736SMordechay Goodstein 	int low_mark;
9874807e736SMordechay Goodstein 	int high_mark;
9884807e736SMordechay Goodstein 
9894807e736SMordechay Goodstein 	bool overflow_tx;
9904807e736SMordechay Goodstein };
9914f4822b7SMordechay Goodstein 
9924f4822b7SMordechay Goodstein /**
9934f4822b7SMordechay Goodstein  * struct iwl_trans_txqs - transport tx queues data
9944f4822b7SMordechay Goodstein  *
9958e3b79f8SMordechay Goodstein  * @bc_table_dword: true if the BC table expects DWORD (as opposed to bytes)
99622852fadSMordechay Goodstein  * @page_offs: offset from skb->cb to mac header page pointer
99722852fadSMordechay Goodstein  * @dev_cmd_offs: offset from skb->cb to iwl_device_tx_cmd pointer
9984f4822b7SMordechay Goodstein  * @queue_used - bit mask of used queues
9994f4822b7SMordechay Goodstein  * @queue_stopped - bit mask of stopped queues
10000179bfffSMordechay Goodstein  * @scd_bc_tbls: gen1 pointer to the byte count table of the scheduler
1001227f2597SJohannes Berg  * @queue_alloc_cmd_ver: queue allocation command version
10024f4822b7SMordechay Goodstein  */
10034f4822b7SMordechay Goodstein struct iwl_trans_txqs {
10044f4822b7SMordechay Goodstein 	unsigned long queue_used[BITS_TO_LONGS(IWL_MAX_TVQM_QUEUES)];
10054f4822b7SMordechay Goodstein 	unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_TVQM_QUEUES)];
10064f4822b7SMordechay Goodstein 	struct iwl_txq *txq[IWL_MAX_TVQM_QUEUES];
1007a26014e2SMordechay Goodstein 	struct dma_pool *bc_pool;
1008a26014e2SMordechay Goodstein 	size_t bc_tbl_size;
10098e3b79f8SMordechay Goodstein 	bool bc_table_dword;
101022852fadSMordechay Goodstein 	u8 page_offs;
101122852fadSMordechay Goodstein 	u8 dev_cmd_offs;
10124246465eSJohannes Berg 	struct iwl_tso_hdr_page __percpu *tso_hdr_page;
10138e3b79f8SMordechay Goodstein 
10144f4822b7SMordechay Goodstein 	struct {
10154f4822b7SMordechay Goodstein 		u8 fifo;
10164f4822b7SMordechay Goodstein 		u8 q_id;
10174f4822b7SMordechay Goodstein 		unsigned int wdg_timeout;
10184f4822b7SMordechay Goodstein 	} cmd;
10194f4822b7SMordechay Goodstein 
1020885375d0SMordechay Goodstein 	struct {
1021885375d0SMordechay Goodstein 		u8 max_tbs;
1022885375d0SMordechay Goodstein 		u16 size;
1023885375d0SMordechay Goodstein 		u8 addr_size;
1024885375d0SMordechay Goodstein 	} tfd;
10250179bfffSMordechay Goodstein 
10260179bfffSMordechay Goodstein 	struct iwl_dma_ptr scd_bc_tbls;
1027227f2597SJohannes Berg 
1028227f2597SJohannes Berg 	u8 queue_alloc_cmd_ver;
10294f4822b7SMordechay Goodstein };
10304f4822b7SMordechay Goodstein 
103191c28b83SShahar S Matityahu /**
1032e705c121SKalle Valo  * struct iwl_trans - transport common data
1033e705c121SKalle Valo  *
10346d19a5ebSEmmanuel Grumbach  * @csme_own - true if we couldn't get ownership on the device
1035e705c121SKalle Valo  * @ops - pointer to iwl_trans_ops
1036e705c121SKalle Valo  * @op_mode - pointer to the op_mode
1037286ca8ebSLuca Coelho  * @trans_cfg: the trans-specific configuration part
1038e705c121SKalle Valo  * @cfg - pointer to the configuration
10396f482e37SSara Sharon  * @drv - pointer to iwl_drv
1040e705c121SKalle Valo  * @status: a bit-mask of transport status flags
1041e705c121SKalle Valo  * @dev - pointer to struct device * that represents the device
1042e705c121SKalle Valo  * @max_skb_frags: maximum number of fragments an SKB can have when transmitted.
1043e705c121SKalle Valo  *	0 indicates that frag SKBs (NETIF_F_SG) aren't supported.
10441afb0ae4SHaim Dreyfuss  * @hw_rf_id a u32 with the device RF ID
10453a27a1a1SMukesh Sisodiya  * @hw_crf_id a u32 with the device CRF ID
104672904029SMukesh Sisodiya  * @hw_wfpm_id a u32 with the device wfpm ID
1047e705c121SKalle Valo  * @hw_id: a u32 with the ID of the device / sub-device.
1048e705c121SKalle Valo  *	Set during transport allocation.
1049e705c121SKalle Valo  * @hw_id_str: a string with info about HW ID. Set during transport allocation.
105055c6d8f8SMike Golant  * @hw_rev_step: The mac step of the HW
1051e705c121SKalle Valo  * @pm_support: set to true in start_hw if link pm is supported
1052e705c121SKalle Valo  * @ltr_enabled: set to true if the LTR is enabled
1053b99e32cbSAlon Giladi  * @fail_to_parse_pnvm_image: set to true if pnvm parsing failed
1054380bf72dSAlon Giladi  * @failed_to_load_reduce_power_image: set to true if pnvm loading failed
1055b7d96bcaSLuca Coelho  * @wide_cmd_header: true when ucode supports wide command header format
105613f028b4SMordechay Goodstein  * @wait_command_queue: wait queue for sync commands
1057e705c121SKalle Valo  * @num_rx_queues: number of RX queues allocated by the transport;
1058e705c121SKalle Valo  *	the transport must set this before calling iwl_drv_start()
1059132db31cSGolan Ben-Ami  * @iml_len: the length of the image loader
1060132db31cSGolan Ben-Ami  * @iml: a pointer to the image loader itself
1061e705c121SKalle Valo  * @dev_cmd_pool: pool for Tx cmd allocation - for internal use only.
1062e705c121SKalle Valo  *	The user should use iwl_trans_{alloc,free}_tx_cmd.
1063e705c121SKalle Valo  * @rx_mpdu_cmd: MPDU RX command ID, must be assigned by opmode before
1064e705c121SKalle Valo  *	starting the firmware, used for tracing
1065e705c121SKalle Valo  * @rx_mpdu_cmd_hdr_size: used for tracing, amount of data before the
1066e705c121SKalle Valo  *	start of the 802.11 header in the @rx_mpdu_cmd
1067e705c121SKalle Valo  * @dflt_pwr_limit: default power limit fetched from the platform (ACPI)
1068b7282643SLuca Coelho  * @system_pm_mode: the system-wide power management mode in use.
1069b7282643SLuca Coelho  *	This mode is set dynamically, depending on the WoWLAN values
1070b7282643SLuca Coelho  *	configured from the userspace at runtime.
10714f4822b7SMordechay Goodstein  * @iwl_trans_txqs: transport tx queues data.
107209b4c35dSAyala Barazani  * @mbx_addr_0_step: step address data 0
107309b4c35dSAyala Barazani  * @mbx_addr_1_step: step address data 1
10743a9690d0SJohannes Berg  * @pcie_link_speed: current PCIe link speed (%PCI_EXP_LNKSTA_CLS_*),
10753a9690d0SJohannes Berg  *	only valid for discrete (not integrated) NICs
1076c83031afSJohannes Berg  * @invalid_tx_cmd: invalid TX command buffer
1077e705c121SKalle Valo  */
1078e705c121SKalle Valo struct iwl_trans {
10796d19a5ebSEmmanuel Grumbach 	bool csme_own;
1080e705c121SKalle Valo 	const struct iwl_trans_ops *ops;
1081e705c121SKalle Valo 	struct iwl_op_mode *op_mode;
1082286ca8ebSLuca Coelho 	const struct iwl_cfg_trans_params *trans_cfg;
1083e705c121SKalle Valo 	const struct iwl_cfg *cfg;
10846f482e37SSara Sharon 	struct iwl_drv *drv;
1085e705c121SKalle Valo 	enum iwl_trans_state state;
1086e705c121SKalle Valo 	unsigned long status;
1087e705c121SKalle Valo 
1088e705c121SKalle Valo 	struct device *dev;
1089e705c121SKalle Valo 	u32 max_skb_frags;
1090e705c121SKalle Valo 	u32 hw_rev;
109155c6d8f8SMike Golant 	u32 hw_rev_step;
10921afb0ae4SHaim Dreyfuss 	u32 hw_rf_id;
10933a27a1a1SMukesh Sisodiya 	u32 hw_crf_id;
109472904029SMukesh Sisodiya 	u32 hw_cnv_id;
109572904029SMukesh Sisodiya 	u32 hw_wfpm_id;
1096e705c121SKalle Valo 	u32 hw_id;
1097e705c121SKalle Valo 	char hw_id_str[52];
109890824f2fSLuca Coelho 	u32 sku_id[3];
1099e705c121SKalle Valo 
1100e705c121SKalle Valo 	u8 rx_mpdu_cmd, rx_mpdu_cmd_hdr_size;
1101e705c121SKalle Valo 
1102e705c121SKalle Valo 	bool pm_support;
1103e705c121SKalle Valo 	bool ltr_enabled;
110469725928SLuca Coelho 	u8 pnvm_loaded:1;
1105b99e32cbSAlon Giladi 	u8 fail_to_parse_pnvm_image:1;
11069dad325fSLuca Coelho 	u8 reduce_power_loaded:1;
1107380bf72dSAlon Giladi 	u8 failed_to_load_reduce_power_image:1;
1108e705c121SKalle Valo 
110939bdb17eSSharon Dvir 	const struct iwl_hcmd_arr *command_groups;
111039bdb17eSSharon Dvir 	int command_groups_size;
1111b7d96bcaSLuca Coelho 	bool wide_cmd_header;
111239bdb17eSSharon Dvir 
111313f028b4SMordechay Goodstein 	wait_queue_head_t wait_command_queue;
1114e705c121SKalle Valo 	u8 num_rx_queues;
1115e705c121SKalle Valo 
1116132db31cSGolan Ben-Ami 	size_t iml_len;
1117132db31cSGolan Ben-Ami 	u8 *iml;
1118132db31cSGolan Ben-Ami 
1119e705c121SKalle Valo 	/* The following fields are internal only */
1120e705c121SKalle Valo 	struct kmem_cache *dev_cmd_pool;
1121e705c121SKalle Valo 	char dev_cmd_pool_name[50];
1122e705c121SKalle Valo 
1123e705c121SKalle Valo 	struct dentry *dbgfs_dir;
1124e705c121SKalle Valo 
1125e705c121SKalle Valo #ifdef CONFIG_LOCKDEP
1126e705c121SKalle Valo 	struct lockdep_map sync_cmd_lockdep_map;
1127e705c121SKalle Valo #endif
1128e705c121SKalle Valo 
112991c28b83SShahar S Matityahu 	struct iwl_trans_debug dbg;
1130505a00c0SShahar S Matityahu 	struct iwl_self_init_dram init_dram;
1131e705c121SKalle Valo 
1132b7282643SLuca Coelho 	enum iwl_plat_pm_mode system_pm_mode;
1133700b3799SShahar S Matityahu 
11340b295a1eSLuca Coelho 	const char *name;
11354f4822b7SMordechay Goodstein 	struct iwl_trans_txqs txqs;
113609b4c35dSAyala Barazani 	u32 mbx_addr_0_step;
113709b4c35dSAyala Barazani 	u32 mbx_addr_1_step;
11380b295a1eSLuca Coelho 
11393a9690d0SJohannes Berg 	u8 pcie_link_speed;
11403a9690d0SJohannes Berg 
1141c83031afSJohannes Berg 	struct iwl_dma_ptr invalid_tx_cmd;
1142c83031afSJohannes Berg 
1143e705c121SKalle Valo 	/* pointer to trans specific struct */
1144e705c121SKalle Valo 	/*Ensure that this pointer will always be aligned to sizeof pointer */
114545c21a0eSGustavo A. R. Silva 	char trans_specific[] __aligned(sizeof(void *));
1146e705c121SKalle Valo };
1147e705c121SKalle Valo 
114839bdb17eSSharon Dvir const char *iwl_get_cmd_string(struct iwl_trans *trans, u32 id);
114939bdb17eSSharon Dvir int iwl_cmd_groups_verify_sorted(const struct iwl_trans_config *trans);
115039bdb17eSSharon Dvir 
iwl_trans_configure(struct iwl_trans * trans,const struct iwl_trans_config * trans_cfg)1151e705c121SKalle Valo static inline void iwl_trans_configure(struct iwl_trans *trans,
1152e705c121SKalle Valo 				       const struct iwl_trans_config *trans_cfg)
1153e705c121SKalle Valo {
1154e705c121SKalle Valo 	trans->op_mode = trans_cfg->op_mode;
1155e705c121SKalle Valo 
1156e705c121SKalle Valo 	trans->ops->configure(trans, trans_cfg);
115739bdb17eSSharon Dvir 	WARN_ON(iwl_cmd_groups_verify_sorted(trans_cfg));
1158e705c121SKalle Valo }
1159e705c121SKalle Valo 
iwl_trans_start_hw(struct iwl_trans * trans)1160bab3cb92SEmmanuel Grumbach static inline int iwl_trans_start_hw(struct iwl_trans *trans)
1161e705c121SKalle Valo {
1162e705c121SKalle Valo 	might_sleep();
1163e705c121SKalle Valo 
1164bab3cb92SEmmanuel Grumbach 	return trans->ops->start_hw(trans);
1165e705c121SKalle Valo }
1166e705c121SKalle Valo 
iwl_trans_op_mode_leave(struct iwl_trans * trans)1167e705c121SKalle Valo static inline void iwl_trans_op_mode_leave(struct iwl_trans *trans)
1168e705c121SKalle Valo {
1169e705c121SKalle Valo 	might_sleep();
1170e705c121SKalle Valo 
1171e705c121SKalle Valo 	if (trans->ops->op_mode_leave)
1172e705c121SKalle Valo 		trans->ops->op_mode_leave(trans);
1173e705c121SKalle Valo 
1174e705c121SKalle Valo 	trans->op_mode = NULL;
1175e705c121SKalle Valo 
1176e705c121SKalle Valo 	trans->state = IWL_TRANS_NO_FW;
1177e705c121SKalle Valo }
1178e705c121SKalle Valo 
iwl_trans_fw_alive(struct iwl_trans * trans,u32 scd_addr)1179e705c121SKalle Valo static inline void iwl_trans_fw_alive(struct iwl_trans *trans, u32 scd_addr)
1180e705c121SKalle Valo {
1181e705c121SKalle Valo 	might_sleep();
1182e705c121SKalle Valo 
1183e705c121SKalle Valo 	trans->state = IWL_TRANS_FW_ALIVE;
1184e705c121SKalle Valo 
1185e705c121SKalle Valo 	trans->ops->fw_alive(trans, scd_addr);
1186e705c121SKalle Valo }
1187e705c121SKalle Valo 
iwl_trans_start_fw(struct iwl_trans * trans,const struct fw_img * fw,bool run_in_rfkill)1188e705c121SKalle Valo static inline int iwl_trans_start_fw(struct iwl_trans *trans,
1189e705c121SKalle Valo 				     const struct fw_img *fw,
1190e705c121SKalle Valo 				     bool run_in_rfkill)
1191e705c121SKalle Valo {
1192b2ed841eSJohannes Berg 	int ret;
1193b2ed841eSJohannes Berg 
1194e705c121SKalle Valo 	might_sleep();
1195e705c121SKalle Valo 
1196e705c121SKalle Valo 	WARN_ON_ONCE(!trans->rx_mpdu_cmd);
1197e705c121SKalle Valo 
1198e705c121SKalle Valo 	clear_bit(STATUS_FW_ERROR, &trans->status);
1199b2ed841eSJohannes Berg 	ret = trans->ops->start_fw(trans, fw, run_in_rfkill);
1200b2ed841eSJohannes Berg 	if (ret == 0)
1201b2ed841eSJohannes Berg 		trans->state = IWL_TRANS_FW_STARTED;
1202b2ed841eSJohannes Berg 
1203b2ed841eSJohannes Berg 	return ret;
1204e705c121SKalle Valo }
1205e705c121SKalle Valo 
iwl_trans_stop_device(struct iwl_trans * trans)1206bab3cb92SEmmanuel Grumbach static inline void iwl_trans_stop_device(struct iwl_trans *trans)
1207e705c121SKalle Valo {
1208e705c121SKalle Valo 	might_sleep();
1209e705c121SKalle Valo 
1210bab3cb92SEmmanuel Grumbach 	trans->ops->stop_device(trans);
1211e705c121SKalle Valo 
1212e705c121SKalle Valo 	trans->state = IWL_TRANS_NO_FW;
1213e705c121SKalle Valo }
1214e705c121SKalle Valo 
iwl_trans_d3_suspend(struct iwl_trans * trans,bool test,bool reset)1215e5f3f215SHaim Dreyfuss static inline int iwl_trans_d3_suspend(struct iwl_trans *trans, bool test,
121623ae6128SMatti Gottlieb 				       bool reset)
1217e705c121SKalle Valo {
1218e705c121SKalle Valo 	might_sleep();
1219e5f3f215SHaim Dreyfuss 	if (!trans->ops->d3_suspend)
1220cad7850aSHaim Dreyfuss 		return -EOPNOTSUPP;
1221e5f3f215SHaim Dreyfuss 
1222e5f3f215SHaim Dreyfuss 	return trans->ops->d3_suspend(trans, test, reset);
1223e705c121SKalle Valo }
1224e705c121SKalle Valo 
iwl_trans_d3_resume(struct iwl_trans * trans,enum iwl_d3_status * status,bool test,bool reset)1225e705c121SKalle Valo static inline int iwl_trans_d3_resume(struct iwl_trans *trans,
1226e705c121SKalle Valo 				      enum iwl_d3_status *status,
122723ae6128SMatti Gottlieb 				      bool test, bool reset)
1228e705c121SKalle Valo {
1229e705c121SKalle Valo 	might_sleep();
1230e705c121SKalle Valo 	if (!trans->ops->d3_resume)
1231cad7850aSHaim Dreyfuss 		return -EOPNOTSUPP;
1232e705c121SKalle Valo 
123323ae6128SMatti Gottlieb 	return trans->ops->d3_resume(trans, status, test, reset);
1234e705c121SKalle Valo }
1235e705c121SKalle Valo 
1236e705c121SKalle Valo static inline struct iwl_trans_dump_data *
iwl_trans_dump_data(struct iwl_trans * trans,u32 dump_mask,const struct iwl_dump_sanitize_ops * sanitize_ops,void * sanitize_ctx)1237fdb70083SJohannes Berg iwl_trans_dump_data(struct iwl_trans *trans, u32 dump_mask,
1238fdb70083SJohannes Berg 		    const struct iwl_dump_sanitize_ops *sanitize_ops,
1239fdb70083SJohannes Berg 		    void *sanitize_ctx)
1240e705c121SKalle Valo {
1241e705c121SKalle Valo 	if (!trans->ops->dump_data)
1242e705c121SKalle Valo 		return NULL;
1243fdb70083SJohannes Berg 	return trans->ops->dump_data(trans, dump_mask,
1244fdb70083SJohannes Berg 				     sanitize_ops, sanitize_ctx);
1245e705c121SKalle Valo }
1246e705c121SKalle Valo 
1247a89c72ffSJohannes Berg static inline struct iwl_device_tx_cmd *
iwl_trans_alloc_tx_cmd(struct iwl_trans * trans)1248e705c121SKalle Valo iwl_trans_alloc_tx_cmd(struct iwl_trans *trans)
1249e705c121SKalle Valo {
1250a89c72ffSJohannes Berg 	return kmem_cache_zalloc(trans->dev_cmd_pool, GFP_ATOMIC);
1251e705c121SKalle Valo }
1252e705c121SKalle Valo 
125392fe8343SEmmanuel Grumbach int iwl_trans_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
125492fe8343SEmmanuel Grumbach 
iwl_trans_free_tx_cmd(struct iwl_trans * trans,struct iwl_device_tx_cmd * dev_cmd)1255e705c121SKalle Valo static inline void iwl_trans_free_tx_cmd(struct iwl_trans *trans,
1256a89c72ffSJohannes Berg 					 struct iwl_device_tx_cmd *dev_cmd)
1257e705c121SKalle Valo {
12581ea423b0SLuca Coelho 	kmem_cache_free(trans->dev_cmd_pool, dev_cmd);
1259e705c121SKalle Valo }
1260e705c121SKalle Valo 
iwl_trans_tx(struct iwl_trans * trans,struct sk_buff * skb,struct iwl_device_tx_cmd * dev_cmd,int queue)1261e705c121SKalle Valo static inline int iwl_trans_tx(struct iwl_trans *trans, struct sk_buff *skb,
1262a89c72ffSJohannes Berg 			       struct iwl_device_tx_cmd *dev_cmd, int queue)
1263e705c121SKalle Valo {
1264e705c121SKalle Valo 	if (unlikely(test_bit(STATUS_FW_ERROR, &trans->status)))
1265e705c121SKalle Valo 		return -EIO;
1266e705c121SKalle Valo 
1267e5d15cb5SEliad Peller 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1268e705c121SKalle Valo 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1269e5d15cb5SEliad Peller 		return -EIO;
1270e5d15cb5SEliad Peller 	}
1271e705c121SKalle Valo 
1272e705c121SKalle Valo 	return trans->ops->tx(trans, skb, dev_cmd, queue);
1273e705c121SKalle Valo }
1274e705c121SKalle Valo 
iwl_trans_reclaim(struct iwl_trans * trans,int queue,int ssn,struct sk_buff_head * skbs,bool is_flush)1275e705c121SKalle Valo static inline void iwl_trans_reclaim(struct iwl_trans *trans, int queue,
1276fc163831SMiri Korenblit 				     int ssn, struct sk_buff_head *skbs,
1277fc163831SMiri Korenblit 				     bool is_flush)
1278e705c121SKalle Valo {
1279e5d15cb5SEliad Peller 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1280e705c121SKalle Valo 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1281e5d15cb5SEliad Peller 		return;
1282e5d15cb5SEliad Peller 	}
1283e705c121SKalle Valo 
1284fc163831SMiri Korenblit 	trans->ops->reclaim(trans, queue, ssn, skbs, is_flush);
1285e705c121SKalle Valo }
1286e705c121SKalle Valo 
iwl_trans_set_q_ptrs(struct iwl_trans * trans,int queue,int ptr)1287ba7136f3SAlex Malamud static inline void iwl_trans_set_q_ptrs(struct iwl_trans *trans, int queue,
1288ba7136f3SAlex Malamud 					int ptr)
1289ba7136f3SAlex Malamud {
1290ba7136f3SAlex Malamud 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1291ba7136f3SAlex Malamud 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1292ba7136f3SAlex Malamud 		return;
1293ba7136f3SAlex Malamud 	}
1294ba7136f3SAlex Malamud 
1295ba7136f3SAlex Malamud 	trans->ops->set_q_ptrs(trans, queue, ptr);
1296ba7136f3SAlex Malamud }
1297ba7136f3SAlex Malamud 
iwl_trans_txq_disable(struct iwl_trans * trans,int queue,bool configure_scd)1298e705c121SKalle Valo static inline void iwl_trans_txq_disable(struct iwl_trans *trans, int queue,
1299e705c121SKalle Valo 					 bool configure_scd)
1300e705c121SKalle Valo {
1301e705c121SKalle Valo 	trans->ops->txq_disable(trans, queue, configure_scd);
1302e705c121SKalle Valo }
1303e705c121SKalle Valo 
1304dcfbd67bSEmmanuel Grumbach static inline bool
iwl_trans_txq_enable_cfg(struct iwl_trans * trans,int queue,u16 ssn,const struct iwl_trans_txq_scd_cfg * cfg,unsigned int queue_wdg_timeout)1305e705c121SKalle Valo iwl_trans_txq_enable_cfg(struct iwl_trans *trans, int queue, u16 ssn,
1306e705c121SKalle Valo 			 const struct iwl_trans_txq_scd_cfg *cfg,
1307e705c121SKalle Valo 			 unsigned int queue_wdg_timeout)
1308e705c121SKalle Valo {
1309e705c121SKalle Valo 	might_sleep();
1310e705c121SKalle Valo 
1311e5d15cb5SEliad Peller 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1312e705c121SKalle Valo 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1313dcfbd67bSEmmanuel Grumbach 		return false;
1314e5d15cb5SEliad Peller 	}
1315e705c121SKalle Valo 
1316dcfbd67bSEmmanuel Grumbach 	return trans->ops->txq_enable(trans, queue, ssn,
1317dcfbd67bSEmmanuel Grumbach 				      cfg, queue_wdg_timeout);
1318e705c121SKalle Valo }
1319e705c121SKalle Valo 
132092536c96SSara Sharon static inline int
iwl_trans_get_rxq_dma_data(struct iwl_trans * trans,int queue,struct iwl_trans_rxq_dma_data * data)132192536c96SSara Sharon iwl_trans_get_rxq_dma_data(struct iwl_trans *trans, int queue,
132292536c96SSara Sharon 			   struct iwl_trans_rxq_dma_data *data)
132392536c96SSara Sharon {
132492536c96SSara Sharon 	if (WARN_ON_ONCE(!trans->ops->rxq_dma_data))
132592536c96SSara Sharon 		return -ENOTSUPP;
132692536c96SSara Sharon 
132792536c96SSara Sharon 	return trans->ops->rxq_dma_data(trans, queue, data);
132892536c96SSara Sharon }
132992536c96SSara Sharon 
13306b35ff91SSara Sharon static inline void
iwl_trans_txq_free(struct iwl_trans * trans,int queue)13316b35ff91SSara Sharon iwl_trans_txq_free(struct iwl_trans *trans, int queue)
13326b35ff91SSara Sharon {
13336b35ff91SSara Sharon 	if (WARN_ON_ONCE(!trans->ops->txq_free))
13346b35ff91SSara Sharon 		return;
13356b35ff91SSara Sharon 
13366b35ff91SSara Sharon 	trans->ops->txq_free(trans, queue);
13376b35ff91SSara Sharon }
13386b35ff91SSara Sharon 
13396b35ff91SSara Sharon static inline int
iwl_trans_txq_alloc(struct iwl_trans * trans,u32 flags,u32 sta_mask,u8 tid,int size,unsigned int wdg_timeout)13406b35ff91SSara Sharon iwl_trans_txq_alloc(struct iwl_trans *trans,
1341227f2597SJohannes Berg 		    u32 flags, u32 sta_mask, u8 tid,
134285b17a33SJohannes Berg 		    int size, unsigned int wdg_timeout)
13436b35ff91SSara Sharon {
13446b35ff91SSara Sharon 	might_sleep();
13456b35ff91SSara Sharon 
13466b35ff91SSara Sharon 	if (WARN_ON_ONCE(!trans->ops->txq_alloc))
13476b35ff91SSara Sharon 		return -ENOTSUPP;
13486b35ff91SSara Sharon 
13496b35ff91SSara Sharon 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
13506b35ff91SSara Sharon 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
13516b35ff91SSara Sharon 		return -EIO;
13526b35ff91SSara Sharon 	}
13536b35ff91SSara Sharon 
1354227f2597SJohannes Berg 	return trans->ops->txq_alloc(trans, flags, sta_mask, tid,
135585b17a33SJohannes Berg 				     size, wdg_timeout);
13566b35ff91SSara Sharon }
13576b35ff91SSara Sharon 
iwl_trans_txq_set_shared_mode(struct iwl_trans * trans,int queue,bool shared_mode)135842db09c1SLiad Kaufman static inline void iwl_trans_txq_set_shared_mode(struct iwl_trans *trans,
135942db09c1SLiad Kaufman 						 int queue, bool shared_mode)
136042db09c1SLiad Kaufman {
136142db09c1SLiad Kaufman 	if (trans->ops->txq_set_shared_mode)
136242db09c1SLiad Kaufman 		trans->ops->txq_set_shared_mode(trans, queue, shared_mode);
136342db09c1SLiad Kaufman }
136442db09c1SLiad Kaufman 
iwl_trans_txq_enable(struct iwl_trans * trans,int queue,int fifo,int sta_id,int tid,int frame_limit,u16 ssn,unsigned int queue_wdg_timeout)1365e705c121SKalle Valo static inline void iwl_trans_txq_enable(struct iwl_trans *trans, int queue,
1366e705c121SKalle Valo 					int fifo, int sta_id, int tid,
1367e705c121SKalle Valo 					int frame_limit, u16 ssn,
1368e705c121SKalle Valo 					unsigned int queue_wdg_timeout)
1369e705c121SKalle Valo {
1370e705c121SKalle Valo 	struct iwl_trans_txq_scd_cfg cfg = {
1371e705c121SKalle Valo 		.fifo = fifo,
1372e705c121SKalle Valo 		.sta_id = sta_id,
1373e705c121SKalle Valo 		.tid = tid,
1374e705c121SKalle Valo 		.frame_limit = frame_limit,
1375e705c121SKalle Valo 		.aggregate = sta_id >= 0,
1376e705c121SKalle Valo 	};
1377e705c121SKalle Valo 
1378e705c121SKalle Valo 	iwl_trans_txq_enable_cfg(trans, queue, ssn, &cfg, queue_wdg_timeout);
1379e705c121SKalle Valo }
1380e705c121SKalle Valo 
1381e705c121SKalle Valo static inline
iwl_trans_ac_txq_enable(struct iwl_trans * trans,int queue,int fifo,unsigned int queue_wdg_timeout)1382e705c121SKalle Valo void iwl_trans_ac_txq_enable(struct iwl_trans *trans, int queue, int fifo,
1383e705c121SKalle Valo 			     unsigned int queue_wdg_timeout)
1384e705c121SKalle Valo {
1385e705c121SKalle Valo 	struct iwl_trans_txq_scd_cfg cfg = {
1386e705c121SKalle Valo 		.fifo = fifo,
1387e705c121SKalle Valo 		.sta_id = -1,
1388e705c121SKalle Valo 		.tid = IWL_MAX_TID_COUNT,
1389e705c121SKalle Valo 		.frame_limit = IWL_FRAME_LIMIT,
1390e705c121SKalle Valo 		.aggregate = false,
1391e705c121SKalle Valo 	};
1392e705c121SKalle Valo 
1393e705c121SKalle Valo 	iwl_trans_txq_enable_cfg(trans, queue, 0, &cfg, queue_wdg_timeout);
1394e705c121SKalle Valo }
1395e705c121SKalle Valo 
iwl_trans_freeze_txq_timer(struct iwl_trans * trans,unsigned long txqs,bool freeze)1396e705c121SKalle Valo static inline void iwl_trans_freeze_txq_timer(struct iwl_trans *trans,
1397e705c121SKalle Valo 					      unsigned long txqs,
1398e705c121SKalle Valo 					      bool freeze)
1399e705c121SKalle Valo {
1400e5d15cb5SEliad Peller 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1401e705c121SKalle Valo 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1402e5d15cb5SEliad Peller 		return;
1403e5d15cb5SEliad Peller 	}
1404e705c121SKalle Valo 
1405e705c121SKalle Valo 	if (trans->ops->freeze_txq_timer)
1406e705c121SKalle Valo 		trans->ops->freeze_txq_timer(trans, txqs, freeze);
1407e705c121SKalle Valo }
1408e705c121SKalle Valo 
iwl_trans_block_txq_ptrs(struct iwl_trans * trans,bool block)14090cd58eaaSEmmanuel Grumbach static inline void iwl_trans_block_txq_ptrs(struct iwl_trans *trans,
14100cd58eaaSEmmanuel Grumbach 					    bool block)
14110cd58eaaSEmmanuel Grumbach {
1412e5d15cb5SEliad Peller 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
14130cd58eaaSEmmanuel Grumbach 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1414e5d15cb5SEliad Peller 		return;
1415e5d15cb5SEliad Peller 	}
14160cd58eaaSEmmanuel Grumbach 
14170cd58eaaSEmmanuel Grumbach 	if (trans->ops->block_txq_ptrs)
14180cd58eaaSEmmanuel Grumbach 		trans->ops->block_txq_ptrs(trans, block);
14190cd58eaaSEmmanuel Grumbach }
14200cd58eaaSEmmanuel Grumbach 
iwl_trans_wait_tx_queues_empty(struct iwl_trans * trans,u32 txqs)1421a1a57877SSara Sharon static inline int iwl_trans_wait_tx_queues_empty(struct iwl_trans *trans,
1422e705c121SKalle Valo 						 u32 txqs)
1423e705c121SKalle Valo {
1424d6d517b7SSara Sharon 	if (WARN_ON_ONCE(!trans->ops->wait_tx_queues_empty))
1425d6d517b7SSara Sharon 		return -ENOTSUPP;
1426d6d517b7SSara Sharon 
14272b84e632SEmmanuel Grumbach 	/* No need to wait if the firmware is not alive */
14282b84e632SEmmanuel Grumbach 	if (trans->state != IWL_TRANS_FW_ALIVE) {
1429e705c121SKalle Valo 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1430e5d15cb5SEliad Peller 		return -EIO;
1431e5d15cb5SEliad Peller 	}
1432e705c121SKalle Valo 
1433a1a57877SSara Sharon 	return trans->ops->wait_tx_queues_empty(trans, txqs);
1434e705c121SKalle Valo }
1435e705c121SKalle Valo 
iwl_trans_wait_txq_empty(struct iwl_trans * trans,int queue)1436d6d517b7SSara Sharon static inline int iwl_trans_wait_txq_empty(struct iwl_trans *trans, int queue)
1437d6d517b7SSara Sharon {
1438d6d517b7SSara Sharon 	if (WARN_ON_ONCE(!trans->ops->wait_txq_empty))
1439d6d517b7SSara Sharon 		return -ENOTSUPP;
1440d6d517b7SSara Sharon 
1441d6d517b7SSara Sharon 	if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1442d6d517b7SSara Sharon 		IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1443d6d517b7SSara Sharon 		return -EIO;
1444d6d517b7SSara Sharon 	}
1445d6d517b7SSara Sharon 
1446d6d517b7SSara Sharon 	return trans->ops->wait_txq_empty(trans, queue);
1447d6d517b7SSara Sharon }
1448d6d517b7SSara Sharon 
iwl_trans_write8(struct iwl_trans * trans,u32 ofs,u8 val)1449e705c121SKalle Valo static inline void iwl_trans_write8(struct iwl_trans *trans, u32 ofs, u8 val)
1450e705c121SKalle Valo {
1451e705c121SKalle Valo 	trans->ops->write8(trans, ofs, val);
1452e705c121SKalle Valo }
1453e705c121SKalle Valo 
iwl_trans_write32(struct iwl_trans * trans,u32 ofs,u32 val)1454e705c121SKalle Valo static inline void iwl_trans_write32(struct iwl_trans *trans, u32 ofs, u32 val)
1455e705c121SKalle Valo {
1456e705c121SKalle Valo 	trans->ops->write32(trans, ofs, val);
1457e705c121SKalle Valo }
1458e705c121SKalle Valo 
iwl_trans_read32(struct iwl_trans * trans,u32 ofs)1459e705c121SKalle Valo static inline u32 iwl_trans_read32(struct iwl_trans *trans, u32 ofs)
1460e705c121SKalle Valo {
1461e705c121SKalle Valo 	return trans->ops->read32(trans, ofs);
1462e705c121SKalle Valo }
1463e705c121SKalle Valo 
iwl_trans_read_prph(struct iwl_trans * trans,u32 ofs)1464e705c121SKalle Valo static inline u32 iwl_trans_read_prph(struct iwl_trans *trans, u32 ofs)
1465e705c121SKalle Valo {
1466e705c121SKalle Valo 	return trans->ops->read_prph(trans, ofs);
1467e705c121SKalle Valo }
1468e705c121SKalle Valo 
iwl_trans_write_prph(struct iwl_trans * trans,u32 ofs,u32 val)1469e705c121SKalle Valo static inline void iwl_trans_write_prph(struct iwl_trans *trans, u32 ofs,
1470e705c121SKalle Valo 					u32 val)
1471e705c121SKalle Valo {
1472e705c121SKalle Valo 	return trans->ops->write_prph(trans, ofs, val);
1473e705c121SKalle Valo }
1474e705c121SKalle Valo 
iwl_trans_read_mem(struct iwl_trans * trans,u32 addr,void * buf,int dwords)1475e705c121SKalle Valo static inline int iwl_trans_read_mem(struct iwl_trans *trans, u32 addr,
1476e705c121SKalle Valo 				     void *buf, int dwords)
1477e705c121SKalle Valo {
1478e705c121SKalle Valo 	return trans->ops->read_mem(trans, addr, buf, dwords);
1479e705c121SKalle Valo }
1480e705c121SKalle Valo 
1481e705c121SKalle Valo #define iwl_trans_read_mem_bytes(trans, addr, buf, bufsize)		      \
1482e705c121SKalle Valo 	do {								      \
1483e705c121SKalle Valo 		if (__builtin_constant_p(bufsize))			      \
1484e705c121SKalle Valo 			BUILD_BUG_ON((bufsize) % sizeof(u32));		      \
1485e705c121SKalle Valo 		iwl_trans_read_mem(trans, addr, buf, (bufsize) / sizeof(u32));\
1486e705c121SKalle Valo 	} while (0)
1487e705c121SKalle Valo 
iwl_trans_write_imr_mem(struct iwl_trans * trans,u32 dst_addr,u64 src_addr,u32 byte_cnt)1488c0941aceSMukesh Sisodiya static inline int iwl_trans_write_imr_mem(struct iwl_trans *trans,
1489c0941aceSMukesh Sisodiya 					  u32 dst_addr, u64 src_addr,
1490c0941aceSMukesh Sisodiya 					  u32 byte_cnt)
1491c0941aceSMukesh Sisodiya {
1492c0941aceSMukesh Sisodiya 	if (trans->ops->imr_dma_data)
1493c0941aceSMukesh Sisodiya 		return trans->ops->imr_dma_data(trans, dst_addr, src_addr, byte_cnt);
1494c0941aceSMukesh Sisodiya 	return 0;
1495c0941aceSMukesh Sisodiya }
1496c0941aceSMukesh Sisodiya 
iwl_trans_read_mem32(struct iwl_trans * trans,u32 addr)1497e705c121SKalle Valo static inline u32 iwl_trans_read_mem32(struct iwl_trans *trans, u32 addr)
1498e705c121SKalle Valo {
1499e705c121SKalle Valo 	u32 value;
1500e705c121SKalle Valo 
1501d9d115feSJohannes Berg 	if (iwl_trans_read_mem(trans, addr, &value, 1))
1502e705c121SKalle Valo 		return 0xa5a5a5a5;
1503e705c121SKalle Valo 
1504e705c121SKalle Valo 	return value;
1505e705c121SKalle Valo }
1506e705c121SKalle Valo 
iwl_trans_write_mem(struct iwl_trans * trans,u32 addr,const void * buf,int dwords)1507e705c121SKalle Valo static inline int iwl_trans_write_mem(struct iwl_trans *trans, u32 addr,
1508e705c121SKalle Valo 				      const void *buf, int dwords)
1509e705c121SKalle Valo {
1510e705c121SKalle Valo 	return trans->ops->write_mem(trans, addr, buf, dwords);
1511e705c121SKalle Valo }
1512e705c121SKalle Valo 
iwl_trans_write_mem32(struct iwl_trans * trans,u32 addr,u32 val)1513e705c121SKalle Valo static inline u32 iwl_trans_write_mem32(struct iwl_trans *trans, u32 addr,
1514e705c121SKalle Valo 					u32 val)
1515e705c121SKalle Valo {
1516e705c121SKalle Valo 	return iwl_trans_write_mem(trans, addr, &val, 1);
1517e705c121SKalle Valo }
1518e705c121SKalle Valo 
iwl_trans_set_pmi(struct iwl_trans * trans,bool state)1519e705c121SKalle Valo static inline void iwl_trans_set_pmi(struct iwl_trans *trans, bool state)
1520e705c121SKalle Valo {
1521e705c121SKalle Valo 	if (trans->ops->set_pmi)
1522e705c121SKalle Valo 		trans->ops->set_pmi(trans, state);
1523e705c121SKalle Valo }
1524e705c121SKalle Valo 
iwl_trans_sw_reset(struct iwl_trans * trans,bool retake_ownership)152515bf5ac6SJohannes Berg static inline int iwl_trans_sw_reset(struct iwl_trans *trans,
152615bf5ac6SJohannes Berg 				     bool retake_ownership)
1527870c2a11SGolan Ben Ami {
1528870c2a11SGolan Ben Ami 	if (trans->ops->sw_reset)
152915bf5ac6SJohannes Berg 		return trans->ops->sw_reset(trans, retake_ownership);
153015bf5ac6SJohannes Berg 	return 0;
1531870c2a11SGolan Ben Ami }
1532870c2a11SGolan Ben Ami 
1533e705c121SKalle Valo static inline void
iwl_trans_set_bits_mask(struct iwl_trans * trans,u32 reg,u32 mask,u32 value)1534e705c121SKalle Valo iwl_trans_set_bits_mask(struct iwl_trans *trans, u32 reg, u32 mask, u32 value)
1535e705c121SKalle Valo {
1536e705c121SKalle Valo 	trans->ops->set_bits_mask(trans, reg, mask, value);
1537e705c121SKalle Valo }
1538e705c121SKalle Valo 
15391ed08f6fSJohannes Berg #define iwl_trans_grab_nic_access(trans)		\
1540e705c121SKalle Valo 	__cond_lock(nic_access,				\
15411ed08f6fSJohannes Berg 		    likely((trans)->ops->grab_nic_access(trans)))
1542e705c121SKalle Valo 
__releases(nic_access)1543e705c121SKalle Valo static inline void __releases(nic_access)
15441ed08f6fSJohannes Berg iwl_trans_release_nic_access(struct iwl_trans *trans)
1545e705c121SKalle Valo {
15461ed08f6fSJohannes Berg 	trans->ops->release_nic_access(trans);
1547e705c121SKalle Valo 	__release(nic_access);
1548e705c121SKalle Valo }
1549e705c121SKalle Valo 
iwl_trans_fw_error(struct iwl_trans * trans,bool sync)1550b8221b0fSJohannes Berg static inline void iwl_trans_fw_error(struct iwl_trans *trans, bool sync)
1551e705c121SKalle Valo {
1552e705c121SKalle Valo 	if (WARN_ON_ONCE(!trans->op_mode))
1553e705c121SKalle Valo 		return;
1554e705c121SKalle Valo 
1555e705c121SKalle Valo 	/* prevent double restarts due to the same erroneous FW */
1556152fdc0fSJohannes Berg 	if (!test_and_set_bit(STATUS_FW_ERROR, &trans->status)) {
1557b8221b0fSJohannes Berg 		iwl_op_mode_nic_error(trans->op_mode, sync);
1558152fdc0fSJohannes Berg 		trans->state = IWL_TRANS_NO_FW;
1559152fdc0fSJohannes Berg 	}
1560e705c121SKalle Valo }
1561e705c121SKalle Valo 
iwl_trans_fw_running(struct iwl_trans * trans)1562068893b7SShahar S Matityahu static inline bool iwl_trans_fw_running(struct iwl_trans *trans)
1563068893b7SShahar S Matityahu {
1564068893b7SShahar S Matityahu 	return trans->state == IWL_TRANS_FW_ALIVE;
1565068893b7SShahar S Matityahu }
1566068893b7SShahar S Matityahu 
iwl_trans_sync_nmi(struct iwl_trans * trans)1567d1967ce6SShahar S Matityahu static inline void iwl_trans_sync_nmi(struct iwl_trans *trans)
1568d1967ce6SShahar S Matityahu {
1569d1967ce6SShahar S Matityahu 	if (trans->ops->sync_nmi)
1570d1967ce6SShahar S Matityahu 		trans->ops->sync_nmi(trans);
1571d1967ce6SShahar S Matityahu }
1572d1967ce6SShahar S Matityahu 
15733161a34dSMordechay Goodstein void iwl_trans_sync_nmi_with_addr(struct iwl_trans *trans, u32 inta_addr,
15743161a34dSMordechay Goodstein 				  u32 sw_err_bit);
15753161a34dSMordechay Goodstein 
iwl_trans_load_pnvm(struct iwl_trans * trans,const struct iwl_pnvm_image * pnvm_data,const struct iwl_ucode_capabilities * capa)1576194d1f84SAlon Giladi static inline int iwl_trans_load_pnvm(struct iwl_trans *trans,
157733182810SAlon Giladi 				      const struct iwl_pnvm_image *pnvm_data,
157833182810SAlon Giladi 				      const struct iwl_ucode_capabilities *capa)
1579a182dfabSLuca Coelho {
158033182810SAlon Giladi 	return trans->ops->load_pnvm(trans, pnvm_data, capa);
158169725928SLuca Coelho }
158269725928SLuca Coelho 
iwl_trans_set_pnvm(struct iwl_trans * trans,const struct iwl_ucode_capabilities * capa)158333182810SAlon Giladi static inline void iwl_trans_set_pnvm(struct iwl_trans *trans,
158433182810SAlon Giladi 				      const struct iwl_ucode_capabilities *capa)
1585194d1f84SAlon Giladi {
1586194d1f84SAlon Giladi 	if (trans->ops->set_pnvm)
158733182810SAlon Giladi 		trans->ops->set_pnvm(trans, capa);
1588a182dfabSLuca Coelho }
1589a182dfabSLuca Coelho 
iwl_trans_load_reduce_power(struct iwl_trans * trans,const struct iwl_pnvm_image * payloads,const struct iwl_ucode_capabilities * capa)1590ea3571f4SAlon Giladi static inline int iwl_trans_load_reduce_power
1591ea3571f4SAlon Giladi 				(struct iwl_trans *trans,
15927c9c8477SAlon Giladi 				 const struct iwl_pnvm_image *payloads,
15937c9c8477SAlon Giladi 				 const struct iwl_ucode_capabilities *capa)
15949dad325fSLuca Coelho {
15957c9c8477SAlon Giladi 	return trans->ops->load_reduce_power(trans, payloads, capa);
15969dad325fSLuca Coelho }
15979dad325fSLuca Coelho 
15987c9c8477SAlon Giladi static inline void
iwl_trans_set_reduce_power(struct iwl_trans * trans,const struct iwl_ucode_capabilities * capa)15997c9c8477SAlon Giladi iwl_trans_set_reduce_power(struct iwl_trans *trans,
16007c9c8477SAlon Giladi 			   const struct iwl_ucode_capabilities *capa)
1601c738fb61SAlon Giladi {
1602c738fb61SAlon Giladi 	if (trans->ops->set_reduce_power)
16037c9c8477SAlon Giladi 		trans->ops->set_reduce_power(trans, capa);
16049dad325fSLuca Coelho }
16059dad325fSLuca Coelho 
iwl_trans_dbg_ini_valid(struct iwl_trans * trans)1606a1af4c48SShahar S Matityahu static inline bool iwl_trans_dbg_ini_valid(struct iwl_trans *trans)
1607a1af4c48SShahar S Matityahu {
1608341bd290SShahar S Matityahu 	return trans->dbg.internal_ini_cfg != IWL_INI_CFG_STATE_NOT_LOADED ||
1609341bd290SShahar S Matityahu 		trans->dbg.external_ini_cfg != IWL_INI_CFG_STATE_NOT_LOADED;
1610a1af4c48SShahar S Matityahu }
1611a1af4c48SShahar S Matityahu 
iwl_trans_interrupts(struct iwl_trans * trans,bool enable)16123161a34dSMordechay Goodstein static inline void iwl_trans_interrupts(struct iwl_trans *trans, bool enable)
16133161a34dSMordechay Goodstein {
16143161a34dSMordechay Goodstein 	if (trans->ops->interrupts)
16153161a34dSMordechay Goodstein 		trans->ops->interrupts(trans, enable);
16163161a34dSMordechay Goodstein }
16173161a34dSMordechay Goodstein 
1618e705c121SKalle Valo /*****************************************************
1619e705c121SKalle Valo  * transport helper functions
1620e705c121SKalle Valo  *****************************************************/
1621e705c121SKalle Valo struct iwl_trans *iwl_trans_alloc(unsigned int priv_size,
1622e705c121SKalle Valo 			  struct device *dev,
1623a89c72ffSJohannes Berg 			  const struct iwl_trans_ops *ops,
1624fda1bd0dSMordechay Goodstein 			  const struct iwl_cfg_trans_params *cfg_trans);
1625d12455fdSJohannes Berg int iwl_trans_init(struct iwl_trans *trans);
1626e705c121SKalle Valo void iwl_trans_free(struct iwl_trans *trans);
1627e705c121SKalle Valo 
iwl_trans_is_hw_error_value(u32 val)1628d4f1a50cSJohannes Berg static inline bool iwl_trans_is_hw_error_value(u32 val)
1629d4f1a50cSJohannes Berg {
1630d4f1a50cSJohannes Berg 	return ((val & ~0xf) == 0xa5a5a5a0) || ((val & ~0xf) == 0x5a5a5a50);
1631d4f1a50cSJohannes Berg }
1632d4f1a50cSJohannes Berg 
1633e705c121SKalle Valo /*****************************************************
1634e705c121SKalle Valo * driver (transport) register/unregister functions
1635e705c121SKalle Valo ******************************************************/
1636e705c121SKalle Valo int __must_check iwl_pci_register_driver(void);
1637e705c121SKalle Valo void iwl_pci_unregister_driver(void);
1638b8133439SAvraham Stern void iwl_trans_pcie_remove(struct iwl_trans *trans, bool rescan);
1639e705c121SKalle Valo 
1640e705c121SKalle Valo #endif /* __iwl_trans_h__ */
1641