1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun *
3*4882a593Smuzhiyun * This file is provided under a dual BSD/GPLv2 license. When using or
4*4882a593Smuzhiyun * redistributing this file, you may do so under either license.
5*4882a593Smuzhiyun *
6*4882a593Smuzhiyun * GPL LICENSE SUMMARY
7*4882a593Smuzhiyun *
8*4882a593Smuzhiyun * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
9*4882a593Smuzhiyun * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10*4882a593Smuzhiyun * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11*4882a593Smuzhiyun * Copyright(c) 2018 - 2019 Intel Corporation
12*4882a593Smuzhiyun *
13*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or modify
14*4882a593Smuzhiyun * it under the terms of version 2 of the GNU General Public License as
15*4882a593Smuzhiyun * published by the Free Software Foundation.
16*4882a593Smuzhiyun *
17*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful, but
18*4882a593Smuzhiyun * WITHOUT ANY WARRANTY; without even the implied warranty of
19*4882a593Smuzhiyun * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20*4882a593Smuzhiyun * General Public License for more details.
21*4882a593Smuzhiyun *
22*4882a593Smuzhiyun * The full GNU General Public License is included in this distribution
23*4882a593Smuzhiyun * in the file called COPYING.
24*4882a593Smuzhiyun *
25*4882a593Smuzhiyun * Contact Information:
26*4882a593Smuzhiyun * Intel Linux Wireless <linuxwifi@intel.com>
27*4882a593Smuzhiyun * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28*4882a593Smuzhiyun *
29*4882a593Smuzhiyun * BSD LICENSE
30*4882a593Smuzhiyun *
31*4882a593Smuzhiyun * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
32*4882a593Smuzhiyun * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
33*4882a593Smuzhiyun * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
34*4882a593Smuzhiyun * Copyright(c) 2018 - 2019 Intel Corporation
35*4882a593Smuzhiyun * All rights reserved.
36*4882a593Smuzhiyun *
37*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or without
38*4882a593Smuzhiyun * modification, are permitted provided that the following conditions
39*4882a593Smuzhiyun * are met:
40*4882a593Smuzhiyun *
41*4882a593Smuzhiyun * * Redistributions of source code must retain the above copyright
42*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer.
43*4882a593Smuzhiyun * * Redistributions in binary form must reproduce the above copyright
44*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer in
45*4882a593Smuzhiyun * the documentation and/or other materials provided with the
46*4882a593Smuzhiyun * distribution.
47*4882a593Smuzhiyun * * Neither the name Intel Corporation nor the names of its
48*4882a593Smuzhiyun * contributors may be used to endorse or promote products derived
49*4882a593Smuzhiyun * from this software without specific prior written permission.
50*4882a593Smuzhiyun *
51*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
52*4882a593Smuzhiyun * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
53*4882a593Smuzhiyun * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
54*4882a593Smuzhiyun * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
55*4882a593Smuzhiyun * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
56*4882a593Smuzhiyun * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
57*4882a593Smuzhiyun * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58*4882a593Smuzhiyun * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59*4882a593Smuzhiyun * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60*4882a593Smuzhiyun * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
61*4882a593Smuzhiyun * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62*4882a593Smuzhiyun *
63*4882a593Smuzhiyun *****************************************************************************/
64*4882a593Smuzhiyun #ifndef __iwl_trans_h__
65*4882a593Smuzhiyun #define __iwl_trans_h__
66*4882a593Smuzhiyun
67*4882a593Smuzhiyun #include <linux/ieee80211.h>
68*4882a593Smuzhiyun #include <linux/mm.h> /* for page_address */
69*4882a593Smuzhiyun #include <linux/lockdep.h>
70*4882a593Smuzhiyun #include <linux/kernel.h>
71*4882a593Smuzhiyun
72*4882a593Smuzhiyun #include "iwl-debug.h"
73*4882a593Smuzhiyun #include "iwl-config.h"
74*4882a593Smuzhiyun #include "fw/img.h"
75*4882a593Smuzhiyun #include "iwl-op-mode.h"
76*4882a593Smuzhiyun #include <linux/firmware.h>
77*4882a593Smuzhiyun #include "fw/api/cmdhdr.h"
78*4882a593Smuzhiyun #include "fw/api/txq.h"
79*4882a593Smuzhiyun #include "fw/api/dbg-tlv.h"
80*4882a593Smuzhiyun #include "iwl-dbg-tlv.h"
81*4882a593Smuzhiyun
82*4882a593Smuzhiyun /**
83*4882a593Smuzhiyun * DOC: Transport layer - what is it ?
84*4882a593Smuzhiyun *
85*4882a593Smuzhiyun * The transport layer is the layer that deals with the HW directly. It provides
86*4882a593Smuzhiyun * an abstraction of the underlying HW to the upper layer. The transport layer
87*4882a593Smuzhiyun * doesn't provide any policy, algorithm or anything of this kind, but only
88*4882a593Smuzhiyun * mechanisms to make the HW do something. It is not completely stateless but
89*4882a593Smuzhiyun * close to it.
90*4882a593Smuzhiyun * We will have an implementation for each different supported bus.
91*4882a593Smuzhiyun */
92*4882a593Smuzhiyun
93*4882a593Smuzhiyun /**
94*4882a593Smuzhiyun * DOC: Life cycle of the transport layer
95*4882a593Smuzhiyun *
96*4882a593Smuzhiyun * The transport layer has a very precise life cycle.
97*4882a593Smuzhiyun *
98*4882a593Smuzhiyun * 1) A helper function is called during the module initialization and
99*4882a593Smuzhiyun * registers the bus driver's ops with the transport's alloc function.
100*4882a593Smuzhiyun * 2) Bus's probe calls to the transport layer's allocation functions.
101*4882a593Smuzhiyun * Of course this function is bus specific.
102*4882a593Smuzhiyun * 3) This allocation functions will spawn the upper layer which will
103*4882a593Smuzhiyun * register mac80211.
104*4882a593Smuzhiyun *
105*4882a593Smuzhiyun * 4) At some point (i.e. mac80211's start call), the op_mode will call
106*4882a593Smuzhiyun * the following sequence:
107*4882a593Smuzhiyun * start_hw
108*4882a593Smuzhiyun * start_fw
109*4882a593Smuzhiyun *
110*4882a593Smuzhiyun * 5) Then when finished (or reset):
111*4882a593Smuzhiyun * stop_device
112*4882a593Smuzhiyun *
113*4882a593Smuzhiyun * 6) Eventually, the free function will be called.
114*4882a593Smuzhiyun */
115*4882a593Smuzhiyun
116*4882a593Smuzhiyun #define IWL_TRANS_FW_DBG_DOMAIN(trans) IWL_FW_INI_DOMAIN_ALWAYS_ON
117*4882a593Smuzhiyun
118*4882a593Smuzhiyun #define FH_RSCSR_FRAME_SIZE_MSK 0x00003FFF /* bits 0-13 */
119*4882a593Smuzhiyun #define FH_RSCSR_FRAME_INVALID 0x55550000
120*4882a593Smuzhiyun #define FH_RSCSR_FRAME_ALIGN 0x40
121*4882a593Smuzhiyun #define FH_RSCSR_RPA_EN BIT(25)
122*4882a593Smuzhiyun #define FH_RSCSR_RADA_EN BIT(26)
123*4882a593Smuzhiyun #define FH_RSCSR_RXQ_POS 16
124*4882a593Smuzhiyun #define FH_RSCSR_RXQ_MASK 0x3F0000
125*4882a593Smuzhiyun
126*4882a593Smuzhiyun struct iwl_rx_packet {
127*4882a593Smuzhiyun /*
128*4882a593Smuzhiyun * The first 4 bytes of the RX frame header contain both the RX frame
129*4882a593Smuzhiyun * size and some flags.
130*4882a593Smuzhiyun * Bit fields:
131*4882a593Smuzhiyun * 31: flag flush RB request
132*4882a593Smuzhiyun * 30: flag ignore TC (terminal counter) request
133*4882a593Smuzhiyun * 29: flag fast IRQ request
134*4882a593Smuzhiyun * 28-27: Reserved
135*4882a593Smuzhiyun * 26: RADA enabled
136*4882a593Smuzhiyun * 25: Offload enabled
137*4882a593Smuzhiyun * 24: RPF enabled
138*4882a593Smuzhiyun * 23: RSS enabled
139*4882a593Smuzhiyun * 22: Checksum enabled
140*4882a593Smuzhiyun * 21-16: RX queue
141*4882a593Smuzhiyun * 15-14: Reserved
142*4882a593Smuzhiyun * 13-00: RX frame size
143*4882a593Smuzhiyun */
144*4882a593Smuzhiyun __le32 len_n_flags;
145*4882a593Smuzhiyun struct iwl_cmd_header hdr;
146*4882a593Smuzhiyun u8 data[];
147*4882a593Smuzhiyun } __packed;
148*4882a593Smuzhiyun
iwl_rx_packet_len(const struct iwl_rx_packet * pkt)149*4882a593Smuzhiyun static inline u32 iwl_rx_packet_len(const struct iwl_rx_packet *pkt)
150*4882a593Smuzhiyun {
151*4882a593Smuzhiyun return le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
152*4882a593Smuzhiyun }
153*4882a593Smuzhiyun
iwl_rx_packet_payload_len(const struct iwl_rx_packet * pkt)154*4882a593Smuzhiyun static inline u32 iwl_rx_packet_payload_len(const struct iwl_rx_packet *pkt)
155*4882a593Smuzhiyun {
156*4882a593Smuzhiyun return iwl_rx_packet_len(pkt) - sizeof(pkt->hdr);
157*4882a593Smuzhiyun }
158*4882a593Smuzhiyun
159*4882a593Smuzhiyun /**
160*4882a593Smuzhiyun * enum CMD_MODE - how to send the host commands ?
161*4882a593Smuzhiyun *
162*4882a593Smuzhiyun * @CMD_ASYNC: Return right away and don't wait for the response
163*4882a593Smuzhiyun * @CMD_WANT_SKB: Not valid with CMD_ASYNC. The caller needs the buffer of
164*4882a593Smuzhiyun * the response. The caller needs to call iwl_free_resp when done.
165*4882a593Smuzhiyun * @CMD_WANT_ASYNC_CALLBACK: the op_mode's async callback function must be
166*4882a593Smuzhiyun * called after this command completes. Valid only with CMD_ASYNC.
167*4882a593Smuzhiyun */
168*4882a593Smuzhiyun enum CMD_MODE {
169*4882a593Smuzhiyun CMD_ASYNC = BIT(0),
170*4882a593Smuzhiyun CMD_WANT_SKB = BIT(1),
171*4882a593Smuzhiyun CMD_SEND_IN_RFKILL = BIT(2),
172*4882a593Smuzhiyun CMD_WANT_ASYNC_CALLBACK = BIT(3),
173*4882a593Smuzhiyun };
174*4882a593Smuzhiyun
175*4882a593Smuzhiyun #define DEF_CMD_PAYLOAD_SIZE 320
176*4882a593Smuzhiyun
177*4882a593Smuzhiyun /**
178*4882a593Smuzhiyun * struct iwl_device_cmd
179*4882a593Smuzhiyun *
180*4882a593Smuzhiyun * For allocation of the command and tx queues, this establishes the overall
181*4882a593Smuzhiyun * size of the largest command we send to uCode, except for commands that
182*4882a593Smuzhiyun * aren't fully copied and use other TFD space.
183*4882a593Smuzhiyun */
184*4882a593Smuzhiyun struct iwl_device_cmd {
185*4882a593Smuzhiyun union {
186*4882a593Smuzhiyun struct {
187*4882a593Smuzhiyun struct iwl_cmd_header hdr; /* uCode API */
188*4882a593Smuzhiyun u8 payload[DEF_CMD_PAYLOAD_SIZE];
189*4882a593Smuzhiyun };
190*4882a593Smuzhiyun struct {
191*4882a593Smuzhiyun struct iwl_cmd_header_wide hdr_wide;
192*4882a593Smuzhiyun u8 payload_wide[DEF_CMD_PAYLOAD_SIZE -
193*4882a593Smuzhiyun sizeof(struct iwl_cmd_header_wide) +
194*4882a593Smuzhiyun sizeof(struct iwl_cmd_header)];
195*4882a593Smuzhiyun };
196*4882a593Smuzhiyun };
197*4882a593Smuzhiyun } __packed;
198*4882a593Smuzhiyun
199*4882a593Smuzhiyun /**
200*4882a593Smuzhiyun * struct iwl_device_tx_cmd - buffer for TX command
201*4882a593Smuzhiyun * @hdr: the header
202*4882a593Smuzhiyun * @payload: the payload placeholder
203*4882a593Smuzhiyun *
204*4882a593Smuzhiyun * The actual structure is sized dynamically according to need.
205*4882a593Smuzhiyun */
206*4882a593Smuzhiyun struct iwl_device_tx_cmd {
207*4882a593Smuzhiyun struct iwl_cmd_header hdr;
208*4882a593Smuzhiyun u8 payload[];
209*4882a593Smuzhiyun } __packed;
210*4882a593Smuzhiyun
211*4882a593Smuzhiyun #define TFD_MAX_PAYLOAD_SIZE (sizeof(struct iwl_device_cmd))
212*4882a593Smuzhiyun
213*4882a593Smuzhiyun /*
214*4882a593Smuzhiyun * number of transfer buffers (fragments) per transmit frame descriptor;
215*4882a593Smuzhiyun * this is just the driver's idea, the hardware supports 20
216*4882a593Smuzhiyun */
217*4882a593Smuzhiyun #define IWL_MAX_CMD_TBS_PER_TFD 2
218*4882a593Smuzhiyun
219*4882a593Smuzhiyun /* We need 2 entries for the TX command and header, and another one might
220*4882a593Smuzhiyun * be needed for potential data in the SKB's head. The remaining ones can
221*4882a593Smuzhiyun * be used for frags.
222*4882a593Smuzhiyun */
223*4882a593Smuzhiyun #define IWL_TRANS_MAX_FRAGS(trans) ((trans)->txqs.tfd.max_tbs - 3)
224*4882a593Smuzhiyun
225*4882a593Smuzhiyun /**
226*4882a593Smuzhiyun * enum iwl_hcmd_dataflag - flag for each one of the chunks of the command
227*4882a593Smuzhiyun *
228*4882a593Smuzhiyun * @IWL_HCMD_DFL_NOCOPY: By default, the command is copied to the host command's
229*4882a593Smuzhiyun * ring. The transport layer doesn't map the command's buffer to DMA, but
230*4882a593Smuzhiyun * rather copies it to a previously allocated DMA buffer. This flag tells
231*4882a593Smuzhiyun * the transport layer not to copy the command, but to map the existing
232*4882a593Smuzhiyun * buffer (that is passed in) instead. This saves the memcpy and allows
233*4882a593Smuzhiyun * commands that are bigger than the fixed buffer to be submitted.
234*4882a593Smuzhiyun * Note that a TFD entry after a NOCOPY one cannot be a normal copied one.
235*4882a593Smuzhiyun * @IWL_HCMD_DFL_DUP: Only valid without NOCOPY, duplicate the memory for this
236*4882a593Smuzhiyun * chunk internally and free it again after the command completes. This
237*4882a593Smuzhiyun * can (currently) be used only once per command.
238*4882a593Smuzhiyun * Note that a TFD entry after a DUP one cannot be a normal copied one.
239*4882a593Smuzhiyun */
240*4882a593Smuzhiyun enum iwl_hcmd_dataflag {
241*4882a593Smuzhiyun IWL_HCMD_DFL_NOCOPY = BIT(0),
242*4882a593Smuzhiyun IWL_HCMD_DFL_DUP = BIT(1),
243*4882a593Smuzhiyun };
244*4882a593Smuzhiyun
245*4882a593Smuzhiyun enum iwl_error_event_table_status {
246*4882a593Smuzhiyun IWL_ERROR_EVENT_TABLE_LMAC1 = BIT(0),
247*4882a593Smuzhiyun IWL_ERROR_EVENT_TABLE_LMAC2 = BIT(1),
248*4882a593Smuzhiyun IWL_ERROR_EVENT_TABLE_UMAC = BIT(2),
249*4882a593Smuzhiyun };
250*4882a593Smuzhiyun
251*4882a593Smuzhiyun /**
252*4882a593Smuzhiyun * struct iwl_host_cmd - Host command to the uCode
253*4882a593Smuzhiyun *
254*4882a593Smuzhiyun * @data: array of chunks that composes the data of the host command
255*4882a593Smuzhiyun * @resp_pkt: response packet, if %CMD_WANT_SKB was set
256*4882a593Smuzhiyun * @_rx_page_order: (internally used to free response packet)
257*4882a593Smuzhiyun * @_rx_page_addr: (internally used to free response packet)
258*4882a593Smuzhiyun * @flags: can be CMD_*
259*4882a593Smuzhiyun * @len: array of the lengths of the chunks in data
260*4882a593Smuzhiyun * @dataflags: IWL_HCMD_DFL_*
261*4882a593Smuzhiyun * @id: command id of the host command, for wide commands encoding the
262*4882a593Smuzhiyun * version and group as well
263*4882a593Smuzhiyun */
264*4882a593Smuzhiyun struct iwl_host_cmd {
265*4882a593Smuzhiyun const void *data[IWL_MAX_CMD_TBS_PER_TFD];
266*4882a593Smuzhiyun struct iwl_rx_packet *resp_pkt;
267*4882a593Smuzhiyun unsigned long _rx_page_addr;
268*4882a593Smuzhiyun u32 _rx_page_order;
269*4882a593Smuzhiyun
270*4882a593Smuzhiyun u32 flags;
271*4882a593Smuzhiyun u32 id;
272*4882a593Smuzhiyun u16 len[IWL_MAX_CMD_TBS_PER_TFD];
273*4882a593Smuzhiyun u8 dataflags[IWL_MAX_CMD_TBS_PER_TFD];
274*4882a593Smuzhiyun };
275*4882a593Smuzhiyun
iwl_free_resp(struct iwl_host_cmd * cmd)276*4882a593Smuzhiyun static inline void iwl_free_resp(struct iwl_host_cmd *cmd)
277*4882a593Smuzhiyun {
278*4882a593Smuzhiyun free_pages(cmd->_rx_page_addr, cmd->_rx_page_order);
279*4882a593Smuzhiyun }
280*4882a593Smuzhiyun
281*4882a593Smuzhiyun struct iwl_rx_cmd_buffer {
282*4882a593Smuzhiyun struct page *_page;
283*4882a593Smuzhiyun int _offset;
284*4882a593Smuzhiyun bool _page_stolen;
285*4882a593Smuzhiyun u32 _rx_page_order;
286*4882a593Smuzhiyun unsigned int truesize;
287*4882a593Smuzhiyun };
288*4882a593Smuzhiyun
rxb_addr(struct iwl_rx_cmd_buffer * r)289*4882a593Smuzhiyun static inline void *rxb_addr(struct iwl_rx_cmd_buffer *r)
290*4882a593Smuzhiyun {
291*4882a593Smuzhiyun return (void *)((unsigned long)page_address(r->_page) + r->_offset);
292*4882a593Smuzhiyun }
293*4882a593Smuzhiyun
rxb_offset(struct iwl_rx_cmd_buffer * r)294*4882a593Smuzhiyun static inline int rxb_offset(struct iwl_rx_cmd_buffer *r)
295*4882a593Smuzhiyun {
296*4882a593Smuzhiyun return r->_offset;
297*4882a593Smuzhiyun }
298*4882a593Smuzhiyun
rxb_steal_page(struct iwl_rx_cmd_buffer * r)299*4882a593Smuzhiyun static inline struct page *rxb_steal_page(struct iwl_rx_cmd_buffer *r)
300*4882a593Smuzhiyun {
301*4882a593Smuzhiyun r->_page_stolen = true;
302*4882a593Smuzhiyun get_page(r->_page);
303*4882a593Smuzhiyun return r->_page;
304*4882a593Smuzhiyun }
305*4882a593Smuzhiyun
iwl_free_rxb(struct iwl_rx_cmd_buffer * r)306*4882a593Smuzhiyun static inline void iwl_free_rxb(struct iwl_rx_cmd_buffer *r)
307*4882a593Smuzhiyun {
308*4882a593Smuzhiyun __free_pages(r->_page, r->_rx_page_order);
309*4882a593Smuzhiyun }
310*4882a593Smuzhiyun
311*4882a593Smuzhiyun #define MAX_NO_RECLAIM_CMDS 6
312*4882a593Smuzhiyun
313*4882a593Smuzhiyun #define IWL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
314*4882a593Smuzhiyun
315*4882a593Smuzhiyun /*
316*4882a593Smuzhiyun * Maximum number of HW queues the transport layer
317*4882a593Smuzhiyun * currently supports
318*4882a593Smuzhiyun */
319*4882a593Smuzhiyun #define IWL_MAX_HW_QUEUES 32
320*4882a593Smuzhiyun #define IWL_MAX_TVQM_QUEUES 512
321*4882a593Smuzhiyun
322*4882a593Smuzhiyun #define IWL_MAX_TID_COUNT 8
323*4882a593Smuzhiyun #define IWL_MGMT_TID 15
324*4882a593Smuzhiyun #define IWL_FRAME_LIMIT 64
325*4882a593Smuzhiyun #define IWL_MAX_RX_HW_QUEUES 16
326*4882a593Smuzhiyun #define IWL_9000_MAX_RX_HW_QUEUES 6
327*4882a593Smuzhiyun
328*4882a593Smuzhiyun /**
329*4882a593Smuzhiyun * enum iwl_wowlan_status - WoWLAN image/device status
330*4882a593Smuzhiyun * @IWL_D3_STATUS_ALIVE: firmware is still running after resume
331*4882a593Smuzhiyun * @IWL_D3_STATUS_RESET: device was reset while suspended
332*4882a593Smuzhiyun */
333*4882a593Smuzhiyun enum iwl_d3_status {
334*4882a593Smuzhiyun IWL_D3_STATUS_ALIVE,
335*4882a593Smuzhiyun IWL_D3_STATUS_RESET,
336*4882a593Smuzhiyun };
337*4882a593Smuzhiyun
338*4882a593Smuzhiyun /**
339*4882a593Smuzhiyun * enum iwl_trans_status: transport status flags
340*4882a593Smuzhiyun * @STATUS_SYNC_HCMD_ACTIVE: a SYNC command is being processed
341*4882a593Smuzhiyun * @STATUS_DEVICE_ENABLED: APM is enabled
342*4882a593Smuzhiyun * @STATUS_TPOWER_PMI: the device might be asleep (need to wake it up)
343*4882a593Smuzhiyun * @STATUS_INT_ENABLED: interrupts are enabled
344*4882a593Smuzhiyun * @STATUS_RFKILL_HW: the actual HW state of the RF-kill switch
345*4882a593Smuzhiyun * @STATUS_RFKILL_OPMODE: RF-kill state reported to opmode
346*4882a593Smuzhiyun * @STATUS_FW_ERROR: the fw is in error state
347*4882a593Smuzhiyun * @STATUS_TRANS_GOING_IDLE: shutting down the trans, only special commands
348*4882a593Smuzhiyun * are sent
349*4882a593Smuzhiyun * @STATUS_TRANS_IDLE: the trans is idle - general commands are not to be sent
350*4882a593Smuzhiyun * @STATUS_TRANS_DEAD: trans is dead - avoid any read/write operation
351*4882a593Smuzhiyun */
352*4882a593Smuzhiyun enum iwl_trans_status {
353*4882a593Smuzhiyun STATUS_SYNC_HCMD_ACTIVE,
354*4882a593Smuzhiyun STATUS_DEVICE_ENABLED,
355*4882a593Smuzhiyun STATUS_TPOWER_PMI,
356*4882a593Smuzhiyun STATUS_INT_ENABLED,
357*4882a593Smuzhiyun STATUS_RFKILL_HW,
358*4882a593Smuzhiyun STATUS_RFKILL_OPMODE,
359*4882a593Smuzhiyun STATUS_FW_ERROR,
360*4882a593Smuzhiyun STATUS_TRANS_GOING_IDLE,
361*4882a593Smuzhiyun STATUS_TRANS_IDLE,
362*4882a593Smuzhiyun STATUS_TRANS_DEAD,
363*4882a593Smuzhiyun };
364*4882a593Smuzhiyun
365*4882a593Smuzhiyun static inline int
iwl_trans_get_rb_size_order(enum iwl_amsdu_size rb_size)366*4882a593Smuzhiyun iwl_trans_get_rb_size_order(enum iwl_amsdu_size rb_size)
367*4882a593Smuzhiyun {
368*4882a593Smuzhiyun switch (rb_size) {
369*4882a593Smuzhiyun case IWL_AMSDU_2K:
370*4882a593Smuzhiyun return get_order(2 * 1024);
371*4882a593Smuzhiyun case IWL_AMSDU_4K:
372*4882a593Smuzhiyun return get_order(4 * 1024);
373*4882a593Smuzhiyun case IWL_AMSDU_8K:
374*4882a593Smuzhiyun return get_order(8 * 1024);
375*4882a593Smuzhiyun case IWL_AMSDU_12K:
376*4882a593Smuzhiyun return get_order(12 * 1024);
377*4882a593Smuzhiyun default:
378*4882a593Smuzhiyun WARN_ON(1);
379*4882a593Smuzhiyun return -1;
380*4882a593Smuzhiyun }
381*4882a593Smuzhiyun }
382*4882a593Smuzhiyun
383*4882a593Smuzhiyun static inline int
iwl_trans_get_rb_size(enum iwl_amsdu_size rb_size)384*4882a593Smuzhiyun iwl_trans_get_rb_size(enum iwl_amsdu_size rb_size)
385*4882a593Smuzhiyun {
386*4882a593Smuzhiyun switch (rb_size) {
387*4882a593Smuzhiyun case IWL_AMSDU_2K:
388*4882a593Smuzhiyun return 2 * 1024;
389*4882a593Smuzhiyun case IWL_AMSDU_4K:
390*4882a593Smuzhiyun return 4 * 1024;
391*4882a593Smuzhiyun case IWL_AMSDU_8K:
392*4882a593Smuzhiyun return 8 * 1024;
393*4882a593Smuzhiyun case IWL_AMSDU_12K:
394*4882a593Smuzhiyun return 12 * 1024;
395*4882a593Smuzhiyun default:
396*4882a593Smuzhiyun WARN_ON(1);
397*4882a593Smuzhiyun return 0;
398*4882a593Smuzhiyun }
399*4882a593Smuzhiyun }
400*4882a593Smuzhiyun
401*4882a593Smuzhiyun struct iwl_hcmd_names {
402*4882a593Smuzhiyun u8 cmd_id;
403*4882a593Smuzhiyun const char *const cmd_name;
404*4882a593Smuzhiyun };
405*4882a593Smuzhiyun
406*4882a593Smuzhiyun #define HCMD_NAME(x) \
407*4882a593Smuzhiyun { .cmd_id = x, .cmd_name = #x }
408*4882a593Smuzhiyun
409*4882a593Smuzhiyun struct iwl_hcmd_arr {
410*4882a593Smuzhiyun const struct iwl_hcmd_names *arr;
411*4882a593Smuzhiyun int size;
412*4882a593Smuzhiyun };
413*4882a593Smuzhiyun
414*4882a593Smuzhiyun #define HCMD_ARR(x) \
415*4882a593Smuzhiyun { .arr = x, .size = ARRAY_SIZE(x) }
416*4882a593Smuzhiyun
417*4882a593Smuzhiyun /**
418*4882a593Smuzhiyun * struct iwl_trans_config - transport configuration
419*4882a593Smuzhiyun *
420*4882a593Smuzhiyun * @op_mode: pointer to the upper layer.
421*4882a593Smuzhiyun * @cmd_queue: the index of the command queue.
422*4882a593Smuzhiyun * Must be set before start_fw.
423*4882a593Smuzhiyun * @cmd_fifo: the fifo for host commands
424*4882a593Smuzhiyun * @cmd_q_wdg_timeout: the timeout of the watchdog timer for the command queue.
425*4882a593Smuzhiyun * @no_reclaim_cmds: Some devices erroneously don't set the
426*4882a593Smuzhiyun * SEQ_RX_FRAME bit on some notifications, this is the
427*4882a593Smuzhiyun * list of such notifications to filter. Max length is
428*4882a593Smuzhiyun * %MAX_NO_RECLAIM_CMDS.
429*4882a593Smuzhiyun * @n_no_reclaim_cmds: # of commands in list
430*4882a593Smuzhiyun * @rx_buf_size: RX buffer size needed for A-MSDUs
431*4882a593Smuzhiyun * if unset 4k will be the RX buffer size
432*4882a593Smuzhiyun * @bc_table_dword: set to true if the BC table expects the byte count to be
433*4882a593Smuzhiyun * in DWORD (as opposed to bytes)
434*4882a593Smuzhiyun * @scd_set_active: should the transport configure the SCD for HCMD queue
435*4882a593Smuzhiyun * @sw_csum_tx: transport should compute the TCP checksum
436*4882a593Smuzhiyun * @command_groups: array of command groups, each member is an array of the
437*4882a593Smuzhiyun * commands in the group; for debugging only
438*4882a593Smuzhiyun * @command_groups_size: number of command groups, to avoid illegal access
439*4882a593Smuzhiyun * @cb_data_offs: offset inside skb->cb to store transport data at, must have
440*4882a593Smuzhiyun * space for at least two pointers
441*4882a593Smuzhiyun */
442*4882a593Smuzhiyun struct iwl_trans_config {
443*4882a593Smuzhiyun struct iwl_op_mode *op_mode;
444*4882a593Smuzhiyun
445*4882a593Smuzhiyun u8 cmd_queue;
446*4882a593Smuzhiyun u8 cmd_fifo;
447*4882a593Smuzhiyun unsigned int cmd_q_wdg_timeout;
448*4882a593Smuzhiyun const u8 *no_reclaim_cmds;
449*4882a593Smuzhiyun unsigned int n_no_reclaim_cmds;
450*4882a593Smuzhiyun
451*4882a593Smuzhiyun enum iwl_amsdu_size rx_buf_size;
452*4882a593Smuzhiyun bool bc_table_dword;
453*4882a593Smuzhiyun bool scd_set_active;
454*4882a593Smuzhiyun bool sw_csum_tx;
455*4882a593Smuzhiyun const struct iwl_hcmd_arr *command_groups;
456*4882a593Smuzhiyun int command_groups_size;
457*4882a593Smuzhiyun
458*4882a593Smuzhiyun u8 cb_data_offs;
459*4882a593Smuzhiyun };
460*4882a593Smuzhiyun
461*4882a593Smuzhiyun struct iwl_trans_dump_data {
462*4882a593Smuzhiyun u32 len;
463*4882a593Smuzhiyun u8 data[];
464*4882a593Smuzhiyun };
465*4882a593Smuzhiyun
466*4882a593Smuzhiyun struct iwl_trans;
467*4882a593Smuzhiyun
468*4882a593Smuzhiyun struct iwl_trans_txq_scd_cfg {
469*4882a593Smuzhiyun u8 fifo;
470*4882a593Smuzhiyun u8 sta_id;
471*4882a593Smuzhiyun u8 tid;
472*4882a593Smuzhiyun bool aggregate;
473*4882a593Smuzhiyun int frame_limit;
474*4882a593Smuzhiyun };
475*4882a593Smuzhiyun
476*4882a593Smuzhiyun /**
477*4882a593Smuzhiyun * struct iwl_trans_rxq_dma_data - RX queue DMA data
478*4882a593Smuzhiyun * @fr_bd_cb: DMA address of free BD cyclic buffer
479*4882a593Smuzhiyun * @fr_bd_wid: Initial write index of the free BD cyclic buffer
480*4882a593Smuzhiyun * @urbd_stts_wrptr: DMA address of urbd_stts_wrptr
481*4882a593Smuzhiyun * @ur_bd_cb: DMA address of used BD cyclic buffer
482*4882a593Smuzhiyun */
483*4882a593Smuzhiyun struct iwl_trans_rxq_dma_data {
484*4882a593Smuzhiyun u64 fr_bd_cb;
485*4882a593Smuzhiyun u32 fr_bd_wid;
486*4882a593Smuzhiyun u64 urbd_stts_wrptr;
487*4882a593Smuzhiyun u64 ur_bd_cb;
488*4882a593Smuzhiyun };
489*4882a593Smuzhiyun
490*4882a593Smuzhiyun /**
491*4882a593Smuzhiyun * struct iwl_trans_ops - transport specific operations
492*4882a593Smuzhiyun *
493*4882a593Smuzhiyun * All the handlers MUST be implemented
494*4882a593Smuzhiyun *
495*4882a593Smuzhiyun * @start_hw: starts the HW. From that point on, the HW can send interrupts.
496*4882a593Smuzhiyun * May sleep.
497*4882a593Smuzhiyun * @op_mode_leave: Turn off the HW RF kill indication if on
498*4882a593Smuzhiyun * May sleep
499*4882a593Smuzhiyun * @start_fw: allocates and inits all the resources for the transport
500*4882a593Smuzhiyun * layer. Also kick a fw image.
501*4882a593Smuzhiyun * May sleep
502*4882a593Smuzhiyun * @fw_alive: called when the fw sends alive notification. If the fw provides
503*4882a593Smuzhiyun * the SCD base address in SRAM, then provide it here, or 0 otherwise.
504*4882a593Smuzhiyun * May sleep
505*4882a593Smuzhiyun * @stop_device: stops the whole device (embedded CPU put to reset) and stops
506*4882a593Smuzhiyun * the HW. From that point on, the HW will be stopped but will still issue
507*4882a593Smuzhiyun * an interrupt if the HW RF kill switch is triggered.
508*4882a593Smuzhiyun * This callback must do the right thing and not crash even if %start_hw()
509*4882a593Smuzhiyun * was called but not &start_fw(). May sleep.
510*4882a593Smuzhiyun * @d3_suspend: put the device into the correct mode for WoWLAN during
511*4882a593Smuzhiyun * suspend. This is optional, if not implemented WoWLAN will not be
512*4882a593Smuzhiyun * supported. This callback may sleep.
513*4882a593Smuzhiyun * @d3_resume: resume the device after WoWLAN, enabling the opmode to
514*4882a593Smuzhiyun * talk to the WoWLAN image to get its status. This is optional, if not
515*4882a593Smuzhiyun * implemented WoWLAN will not be supported. This callback may sleep.
516*4882a593Smuzhiyun * @send_cmd:send a host command. Must return -ERFKILL if RFkill is asserted.
517*4882a593Smuzhiyun * If RFkill is asserted in the middle of a SYNC host command, it must
518*4882a593Smuzhiyun * return -ERFKILL straight away.
519*4882a593Smuzhiyun * May sleep only if CMD_ASYNC is not set
520*4882a593Smuzhiyun * @tx: send an skb. The transport relies on the op_mode to zero the
521*4882a593Smuzhiyun * the ieee80211_tx_info->driver_data. If the MPDU is an A-MSDU, all
522*4882a593Smuzhiyun * the CSUM will be taken care of (TCP CSUM and IP header in case of
523*4882a593Smuzhiyun * IPv4). If the MPDU is a single MSDU, the op_mode must compute the IP
524*4882a593Smuzhiyun * header if it is IPv4.
525*4882a593Smuzhiyun * Must be atomic
526*4882a593Smuzhiyun * @reclaim: free packet until ssn. Returns a list of freed packets.
527*4882a593Smuzhiyun * Must be atomic
528*4882a593Smuzhiyun * @txq_enable: setup a queue. To setup an AC queue, use the
529*4882a593Smuzhiyun * iwl_trans_ac_txq_enable wrapper. fw_alive must have been called before
530*4882a593Smuzhiyun * this one. The op_mode must not configure the HCMD queue. The scheduler
531*4882a593Smuzhiyun * configuration may be %NULL, in which case the hardware will not be
532*4882a593Smuzhiyun * configured. If true is returned, the operation mode needs to increment
533*4882a593Smuzhiyun * the sequence number of the packets routed to this queue because of a
534*4882a593Smuzhiyun * hardware scheduler bug. May sleep.
535*4882a593Smuzhiyun * @txq_disable: de-configure a Tx queue to send AMPDUs
536*4882a593Smuzhiyun * Must be atomic
537*4882a593Smuzhiyun * @txq_set_shared_mode: change Tx queue shared/unshared marking
538*4882a593Smuzhiyun * @wait_tx_queues_empty: wait until tx queues are empty. May sleep.
539*4882a593Smuzhiyun * @wait_txq_empty: wait until specific tx queue is empty. May sleep.
540*4882a593Smuzhiyun * @freeze_txq_timer: prevents the timer of the queue from firing until the
541*4882a593Smuzhiyun * queue is set to awake. Must be atomic.
542*4882a593Smuzhiyun * @block_txq_ptrs: stop updating the write pointers of the Tx queues. Note
543*4882a593Smuzhiyun * that the transport needs to refcount the calls since this function
544*4882a593Smuzhiyun * will be called several times with block = true, and then the queues
545*4882a593Smuzhiyun * need to be unblocked only after the same number of calls with
546*4882a593Smuzhiyun * block = false.
547*4882a593Smuzhiyun * @write8: write a u8 to a register at offset ofs from the BAR
548*4882a593Smuzhiyun * @write32: write a u32 to a register at offset ofs from the BAR
549*4882a593Smuzhiyun * @read32: read a u32 register at offset ofs from the BAR
550*4882a593Smuzhiyun * @read_prph: read a DWORD from a periphery register
551*4882a593Smuzhiyun * @write_prph: write a DWORD to a periphery register
552*4882a593Smuzhiyun * @read_mem: read device's SRAM in DWORD
553*4882a593Smuzhiyun * @write_mem: write device's SRAM in DWORD. If %buf is %NULL, then the memory
554*4882a593Smuzhiyun * will be zeroed.
555*4882a593Smuzhiyun * @read_config32: read a u32 value from the device's config space at
556*4882a593Smuzhiyun * the given offset.
557*4882a593Smuzhiyun * @configure: configure parameters required by the transport layer from
558*4882a593Smuzhiyun * the op_mode. May be called several times before start_fw, can't be
559*4882a593Smuzhiyun * called after that.
560*4882a593Smuzhiyun * @set_pmi: set the power pmi state
561*4882a593Smuzhiyun * @grab_nic_access: wake the NIC to be able to access non-HBUS regs.
562*4882a593Smuzhiyun * Sleeping is not allowed between grab_nic_access and
563*4882a593Smuzhiyun * release_nic_access.
564*4882a593Smuzhiyun * @release_nic_access: let the NIC go to sleep. The "flags" parameter
565*4882a593Smuzhiyun * must be the same one that was sent before to the grab_nic_access.
566*4882a593Smuzhiyun * @set_bits_mask - set SRAM register according to value and mask.
567*4882a593Smuzhiyun * @dump_data: return a vmalloc'ed buffer with debug data, maybe containing last
568*4882a593Smuzhiyun * TX'ed commands and similar. The buffer will be vfree'd by the caller.
569*4882a593Smuzhiyun * Note that the transport must fill in the proper file headers.
570*4882a593Smuzhiyun * @debugfs_cleanup: used in the driver unload flow to make a proper cleanup
571*4882a593Smuzhiyun * of the trans debugfs
572*4882a593Smuzhiyun * @set_pnvm: set the pnvm data in the prph scratch buffer, inside the
573*4882a593Smuzhiyun * context info.
574*4882a593Smuzhiyun */
575*4882a593Smuzhiyun struct iwl_trans_ops {
576*4882a593Smuzhiyun
577*4882a593Smuzhiyun int (*start_hw)(struct iwl_trans *iwl_trans);
578*4882a593Smuzhiyun void (*op_mode_leave)(struct iwl_trans *iwl_trans);
579*4882a593Smuzhiyun int (*start_fw)(struct iwl_trans *trans, const struct fw_img *fw,
580*4882a593Smuzhiyun bool run_in_rfkill);
581*4882a593Smuzhiyun void (*fw_alive)(struct iwl_trans *trans, u32 scd_addr);
582*4882a593Smuzhiyun void (*stop_device)(struct iwl_trans *trans);
583*4882a593Smuzhiyun
584*4882a593Smuzhiyun int (*d3_suspend)(struct iwl_trans *trans, bool test, bool reset);
585*4882a593Smuzhiyun int (*d3_resume)(struct iwl_trans *trans, enum iwl_d3_status *status,
586*4882a593Smuzhiyun bool test, bool reset);
587*4882a593Smuzhiyun
588*4882a593Smuzhiyun int (*send_cmd)(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
589*4882a593Smuzhiyun
590*4882a593Smuzhiyun int (*tx)(struct iwl_trans *trans, struct sk_buff *skb,
591*4882a593Smuzhiyun struct iwl_device_tx_cmd *dev_cmd, int queue);
592*4882a593Smuzhiyun void (*reclaim)(struct iwl_trans *trans, int queue, int ssn,
593*4882a593Smuzhiyun struct sk_buff_head *skbs);
594*4882a593Smuzhiyun
595*4882a593Smuzhiyun void (*set_q_ptrs)(struct iwl_trans *trans, int queue, int ptr);
596*4882a593Smuzhiyun
597*4882a593Smuzhiyun bool (*txq_enable)(struct iwl_trans *trans, int queue, u16 ssn,
598*4882a593Smuzhiyun const struct iwl_trans_txq_scd_cfg *cfg,
599*4882a593Smuzhiyun unsigned int queue_wdg_timeout);
600*4882a593Smuzhiyun void (*txq_disable)(struct iwl_trans *trans, int queue,
601*4882a593Smuzhiyun bool configure_scd);
602*4882a593Smuzhiyun /* 22000 functions */
603*4882a593Smuzhiyun int (*txq_alloc)(struct iwl_trans *trans,
604*4882a593Smuzhiyun __le16 flags, u8 sta_id, u8 tid,
605*4882a593Smuzhiyun int cmd_id, int size,
606*4882a593Smuzhiyun unsigned int queue_wdg_timeout);
607*4882a593Smuzhiyun void (*txq_free)(struct iwl_trans *trans, int queue);
608*4882a593Smuzhiyun int (*rxq_dma_data)(struct iwl_trans *trans, int queue,
609*4882a593Smuzhiyun struct iwl_trans_rxq_dma_data *data);
610*4882a593Smuzhiyun
611*4882a593Smuzhiyun void (*txq_set_shared_mode)(struct iwl_trans *trans, u32 txq_id,
612*4882a593Smuzhiyun bool shared);
613*4882a593Smuzhiyun
614*4882a593Smuzhiyun int (*wait_tx_queues_empty)(struct iwl_trans *trans, u32 txq_bm);
615*4882a593Smuzhiyun int (*wait_txq_empty)(struct iwl_trans *trans, int queue);
616*4882a593Smuzhiyun void (*freeze_txq_timer)(struct iwl_trans *trans, unsigned long txqs,
617*4882a593Smuzhiyun bool freeze);
618*4882a593Smuzhiyun void (*block_txq_ptrs)(struct iwl_trans *trans, bool block);
619*4882a593Smuzhiyun
620*4882a593Smuzhiyun void (*write8)(struct iwl_trans *trans, u32 ofs, u8 val);
621*4882a593Smuzhiyun void (*write32)(struct iwl_trans *trans, u32 ofs, u32 val);
622*4882a593Smuzhiyun u32 (*read32)(struct iwl_trans *trans, u32 ofs);
623*4882a593Smuzhiyun u32 (*read_prph)(struct iwl_trans *trans, u32 ofs);
624*4882a593Smuzhiyun void (*write_prph)(struct iwl_trans *trans, u32 ofs, u32 val);
625*4882a593Smuzhiyun int (*read_mem)(struct iwl_trans *trans, u32 addr,
626*4882a593Smuzhiyun void *buf, int dwords);
627*4882a593Smuzhiyun int (*write_mem)(struct iwl_trans *trans, u32 addr,
628*4882a593Smuzhiyun const void *buf, int dwords);
629*4882a593Smuzhiyun int (*read_config32)(struct iwl_trans *trans, u32 ofs, u32 *val);
630*4882a593Smuzhiyun void (*configure)(struct iwl_trans *trans,
631*4882a593Smuzhiyun const struct iwl_trans_config *trans_cfg);
632*4882a593Smuzhiyun void (*set_pmi)(struct iwl_trans *trans, bool state);
633*4882a593Smuzhiyun void (*sw_reset)(struct iwl_trans *trans);
634*4882a593Smuzhiyun bool (*grab_nic_access)(struct iwl_trans *trans, unsigned long *flags);
635*4882a593Smuzhiyun void (*release_nic_access)(struct iwl_trans *trans,
636*4882a593Smuzhiyun unsigned long *flags);
637*4882a593Smuzhiyun void (*set_bits_mask)(struct iwl_trans *trans, u32 reg, u32 mask,
638*4882a593Smuzhiyun u32 value);
639*4882a593Smuzhiyun int (*suspend)(struct iwl_trans *trans);
640*4882a593Smuzhiyun void (*resume)(struct iwl_trans *trans);
641*4882a593Smuzhiyun
642*4882a593Smuzhiyun struct iwl_trans_dump_data *(*dump_data)(struct iwl_trans *trans,
643*4882a593Smuzhiyun u32 dump_mask);
644*4882a593Smuzhiyun void (*debugfs_cleanup)(struct iwl_trans *trans);
645*4882a593Smuzhiyun void (*sync_nmi)(struct iwl_trans *trans);
646*4882a593Smuzhiyun int (*set_pnvm)(struct iwl_trans *trans, const void *data, u32 len);
647*4882a593Smuzhiyun };
648*4882a593Smuzhiyun
649*4882a593Smuzhiyun /**
650*4882a593Smuzhiyun * enum iwl_trans_state - state of the transport layer
651*4882a593Smuzhiyun *
652*4882a593Smuzhiyun * @IWL_TRANS_NO_FW: no fw has sent an alive response
653*4882a593Smuzhiyun * @IWL_TRANS_FW_ALIVE: a fw has sent an alive response
654*4882a593Smuzhiyun */
655*4882a593Smuzhiyun enum iwl_trans_state {
656*4882a593Smuzhiyun IWL_TRANS_NO_FW = 0,
657*4882a593Smuzhiyun IWL_TRANS_FW_ALIVE = 1,
658*4882a593Smuzhiyun };
659*4882a593Smuzhiyun
660*4882a593Smuzhiyun /**
661*4882a593Smuzhiyun * DOC: Platform power management
662*4882a593Smuzhiyun *
663*4882a593Smuzhiyun * In system-wide power management the entire platform goes into a low
664*4882a593Smuzhiyun * power state (e.g. idle or suspend to RAM) at the same time and the
665*4882a593Smuzhiyun * device is configured as a wakeup source for the entire platform.
666*4882a593Smuzhiyun * This is usually triggered by userspace activity (e.g. the user
667*4882a593Smuzhiyun * presses the suspend button or a power management daemon decides to
668*4882a593Smuzhiyun * put the platform in low power mode). The device's behavior in this
669*4882a593Smuzhiyun * mode is dictated by the wake-on-WLAN configuration.
670*4882a593Smuzhiyun *
671*4882a593Smuzhiyun * The terms used for the device's behavior are as follows:
672*4882a593Smuzhiyun *
673*4882a593Smuzhiyun * - D0: the device is fully powered and the host is awake;
674*4882a593Smuzhiyun * - D3: the device is in low power mode and only reacts to
675*4882a593Smuzhiyun * specific events (e.g. magic-packet received or scan
676*4882a593Smuzhiyun * results found);
677*4882a593Smuzhiyun *
678*4882a593Smuzhiyun * These terms reflect the power modes in the firmware and are not to
679*4882a593Smuzhiyun * be confused with the physical device power state.
680*4882a593Smuzhiyun */
681*4882a593Smuzhiyun
682*4882a593Smuzhiyun /**
683*4882a593Smuzhiyun * enum iwl_plat_pm_mode - platform power management mode
684*4882a593Smuzhiyun *
685*4882a593Smuzhiyun * This enumeration describes the device's platform power management
686*4882a593Smuzhiyun * behavior when in system-wide suspend (i.e WoWLAN).
687*4882a593Smuzhiyun *
688*4882a593Smuzhiyun * @IWL_PLAT_PM_MODE_DISABLED: power management is disabled for this
689*4882a593Smuzhiyun * device. In system-wide suspend mode, it means that the all
690*4882a593Smuzhiyun * connections will be closed automatically by mac80211 before
691*4882a593Smuzhiyun * the platform is suspended.
692*4882a593Smuzhiyun * @IWL_PLAT_PM_MODE_D3: the device goes into D3 mode (i.e. WoWLAN).
693*4882a593Smuzhiyun */
694*4882a593Smuzhiyun enum iwl_plat_pm_mode {
695*4882a593Smuzhiyun IWL_PLAT_PM_MODE_DISABLED,
696*4882a593Smuzhiyun IWL_PLAT_PM_MODE_D3,
697*4882a593Smuzhiyun };
698*4882a593Smuzhiyun
699*4882a593Smuzhiyun /**
700*4882a593Smuzhiyun * enum iwl_ini_cfg_state
701*4882a593Smuzhiyun * @IWL_INI_CFG_STATE_NOT_LOADED: no debug cfg was given
702*4882a593Smuzhiyun * @IWL_INI_CFG_STATE_LOADED: debug cfg was found and loaded
703*4882a593Smuzhiyun * @IWL_INI_CFG_STATE_CORRUPTED: debug cfg was found and some of the TLVs
704*4882a593Smuzhiyun * are corrupted. The rest of the debug TLVs will still be used
705*4882a593Smuzhiyun */
706*4882a593Smuzhiyun enum iwl_ini_cfg_state {
707*4882a593Smuzhiyun IWL_INI_CFG_STATE_NOT_LOADED,
708*4882a593Smuzhiyun IWL_INI_CFG_STATE_LOADED,
709*4882a593Smuzhiyun IWL_INI_CFG_STATE_CORRUPTED,
710*4882a593Smuzhiyun };
711*4882a593Smuzhiyun
712*4882a593Smuzhiyun /* Max time to wait for nmi interrupt */
713*4882a593Smuzhiyun #define IWL_TRANS_NMI_TIMEOUT (HZ / 4)
714*4882a593Smuzhiyun
715*4882a593Smuzhiyun /**
716*4882a593Smuzhiyun * struct iwl_dram_data
717*4882a593Smuzhiyun * @physical: page phy pointer
718*4882a593Smuzhiyun * @block: pointer to the allocated block/page
719*4882a593Smuzhiyun * @size: size of the block/page
720*4882a593Smuzhiyun */
721*4882a593Smuzhiyun struct iwl_dram_data {
722*4882a593Smuzhiyun dma_addr_t physical;
723*4882a593Smuzhiyun void *block;
724*4882a593Smuzhiyun int size;
725*4882a593Smuzhiyun };
726*4882a593Smuzhiyun
727*4882a593Smuzhiyun /**
728*4882a593Smuzhiyun * struct iwl_fw_mon - fw monitor per allocation id
729*4882a593Smuzhiyun * @num_frags: number of fragments
730*4882a593Smuzhiyun * @frags: an array of DRAM buffer fragments
731*4882a593Smuzhiyun */
732*4882a593Smuzhiyun struct iwl_fw_mon {
733*4882a593Smuzhiyun u32 num_frags;
734*4882a593Smuzhiyun struct iwl_dram_data *frags;
735*4882a593Smuzhiyun };
736*4882a593Smuzhiyun
737*4882a593Smuzhiyun /**
738*4882a593Smuzhiyun * struct iwl_self_init_dram - dram data used by self init process
739*4882a593Smuzhiyun * @fw: lmac and umac dram data
740*4882a593Smuzhiyun * @fw_cnt: total number of items in array
741*4882a593Smuzhiyun * @paging: paging dram data
742*4882a593Smuzhiyun * @paging_cnt: total number of items in array
743*4882a593Smuzhiyun */
744*4882a593Smuzhiyun struct iwl_self_init_dram {
745*4882a593Smuzhiyun struct iwl_dram_data *fw;
746*4882a593Smuzhiyun int fw_cnt;
747*4882a593Smuzhiyun struct iwl_dram_data *paging;
748*4882a593Smuzhiyun int paging_cnt;
749*4882a593Smuzhiyun };
750*4882a593Smuzhiyun
751*4882a593Smuzhiyun /**
752*4882a593Smuzhiyun * struct iwl_trans_debug - transport debug related data
753*4882a593Smuzhiyun *
754*4882a593Smuzhiyun * @n_dest_reg: num of reg_ops in %dbg_dest_tlv
755*4882a593Smuzhiyun * @rec_on: true iff there is a fw debug recording currently active
756*4882a593Smuzhiyun * @dest_tlv: points to the destination TLV for debug
757*4882a593Smuzhiyun * @conf_tlv: array of pointers to configuration TLVs for debug
758*4882a593Smuzhiyun * @trigger_tlv: array of pointers to triggers TLVs for debug
759*4882a593Smuzhiyun * @lmac_error_event_table: addrs of lmacs error tables
760*4882a593Smuzhiyun * @umac_error_event_table: addr of umac error table
761*4882a593Smuzhiyun * @error_event_table_tlv_status: bitmap that indicates what error table
762*4882a593Smuzhiyun * pointers was recevied via TLV. uses enum &iwl_error_event_table_status
763*4882a593Smuzhiyun * @internal_ini_cfg: internal debug cfg state. Uses &enum iwl_ini_cfg_state
764*4882a593Smuzhiyun * @external_ini_cfg: external debug cfg state. Uses &enum iwl_ini_cfg_state
765*4882a593Smuzhiyun * @fw_mon_cfg: debug buffer allocation configuration
766*4882a593Smuzhiyun * @fw_mon_ini: DRAM buffer fragments per allocation id
767*4882a593Smuzhiyun * @fw_mon: DRAM buffer for firmware monitor
768*4882a593Smuzhiyun * @hw_error: equals true if hw error interrupt was received from the FW
769*4882a593Smuzhiyun * @ini_dest: debug monitor destination uses &enum iwl_fw_ini_buffer_location
770*4882a593Smuzhiyun * @active_regions: active regions
771*4882a593Smuzhiyun * @debug_info_tlv_list: list of debug info TLVs
772*4882a593Smuzhiyun * @time_point: array of debug time points
773*4882a593Smuzhiyun * @periodic_trig_list: periodic triggers list
774*4882a593Smuzhiyun * @domains_bitmap: bitmap of active domains other than
775*4882a593Smuzhiyun * &IWL_FW_INI_DOMAIN_ALWAYS_ON
776*4882a593Smuzhiyun */
777*4882a593Smuzhiyun struct iwl_trans_debug {
778*4882a593Smuzhiyun u8 n_dest_reg;
779*4882a593Smuzhiyun bool rec_on;
780*4882a593Smuzhiyun
781*4882a593Smuzhiyun const struct iwl_fw_dbg_dest_tlv_v1 *dest_tlv;
782*4882a593Smuzhiyun const struct iwl_fw_dbg_conf_tlv *conf_tlv[FW_DBG_CONF_MAX];
783*4882a593Smuzhiyun struct iwl_fw_dbg_trigger_tlv * const *trigger_tlv;
784*4882a593Smuzhiyun
785*4882a593Smuzhiyun u32 lmac_error_event_table[2];
786*4882a593Smuzhiyun u32 umac_error_event_table;
787*4882a593Smuzhiyun unsigned int error_event_table_tlv_status;
788*4882a593Smuzhiyun
789*4882a593Smuzhiyun enum iwl_ini_cfg_state internal_ini_cfg;
790*4882a593Smuzhiyun enum iwl_ini_cfg_state external_ini_cfg;
791*4882a593Smuzhiyun
792*4882a593Smuzhiyun struct iwl_fw_ini_allocation_tlv fw_mon_cfg[IWL_FW_INI_ALLOCATION_NUM];
793*4882a593Smuzhiyun struct iwl_fw_mon fw_mon_ini[IWL_FW_INI_ALLOCATION_NUM];
794*4882a593Smuzhiyun
795*4882a593Smuzhiyun struct iwl_dram_data fw_mon;
796*4882a593Smuzhiyun
797*4882a593Smuzhiyun bool hw_error;
798*4882a593Smuzhiyun enum iwl_fw_ini_buffer_location ini_dest;
799*4882a593Smuzhiyun
800*4882a593Smuzhiyun struct iwl_ucode_tlv *active_regions[IWL_FW_INI_MAX_REGION_ID];
801*4882a593Smuzhiyun struct list_head debug_info_tlv_list;
802*4882a593Smuzhiyun struct iwl_dbg_tlv_time_point_data
803*4882a593Smuzhiyun time_point[IWL_FW_INI_TIME_POINT_NUM];
804*4882a593Smuzhiyun struct list_head periodic_trig_list;
805*4882a593Smuzhiyun
806*4882a593Smuzhiyun u32 domains_bitmap;
807*4882a593Smuzhiyun };
808*4882a593Smuzhiyun
809*4882a593Smuzhiyun struct iwl_dma_ptr {
810*4882a593Smuzhiyun dma_addr_t dma;
811*4882a593Smuzhiyun void *addr;
812*4882a593Smuzhiyun size_t size;
813*4882a593Smuzhiyun };
814*4882a593Smuzhiyun
815*4882a593Smuzhiyun struct iwl_cmd_meta {
816*4882a593Smuzhiyun /* only for SYNC commands, iff the reply skb is wanted */
817*4882a593Smuzhiyun struct iwl_host_cmd *source;
818*4882a593Smuzhiyun u32 flags;
819*4882a593Smuzhiyun u32 tbs;
820*4882a593Smuzhiyun };
821*4882a593Smuzhiyun
822*4882a593Smuzhiyun /*
823*4882a593Smuzhiyun * The FH will write back to the first TB only, so we need to copy some data
824*4882a593Smuzhiyun * into the buffer regardless of whether it should be mapped or not.
825*4882a593Smuzhiyun * This indicates how big the first TB must be to include the scratch buffer
826*4882a593Smuzhiyun * and the assigned PN.
827*4882a593Smuzhiyun * Since PN location is 8 bytes at offset 12, it's 20 now.
828*4882a593Smuzhiyun * If we make it bigger then allocations will be bigger and copy slower, so
829*4882a593Smuzhiyun * that's probably not useful.
830*4882a593Smuzhiyun */
831*4882a593Smuzhiyun #define IWL_FIRST_TB_SIZE 20
832*4882a593Smuzhiyun #define IWL_FIRST_TB_SIZE_ALIGN ALIGN(IWL_FIRST_TB_SIZE, 64)
833*4882a593Smuzhiyun
834*4882a593Smuzhiyun struct iwl_pcie_txq_entry {
835*4882a593Smuzhiyun void *cmd;
836*4882a593Smuzhiyun struct sk_buff *skb;
837*4882a593Smuzhiyun /* buffer to free after command completes */
838*4882a593Smuzhiyun const void *free_buf;
839*4882a593Smuzhiyun struct iwl_cmd_meta meta;
840*4882a593Smuzhiyun };
841*4882a593Smuzhiyun
842*4882a593Smuzhiyun struct iwl_pcie_first_tb_buf {
843*4882a593Smuzhiyun u8 buf[IWL_FIRST_TB_SIZE_ALIGN];
844*4882a593Smuzhiyun };
845*4882a593Smuzhiyun
846*4882a593Smuzhiyun /**
847*4882a593Smuzhiyun * struct iwl_txq - Tx Queue for DMA
848*4882a593Smuzhiyun * @q: generic Rx/Tx queue descriptor
849*4882a593Smuzhiyun * @tfds: transmit frame descriptors (DMA memory)
850*4882a593Smuzhiyun * @first_tb_bufs: start of command headers, including scratch buffers, for
851*4882a593Smuzhiyun * the writeback -- this is DMA memory and an array holding one buffer
852*4882a593Smuzhiyun * for each command on the queue
853*4882a593Smuzhiyun * @first_tb_dma: DMA address for the first_tb_bufs start
854*4882a593Smuzhiyun * @entries: transmit entries (driver state)
855*4882a593Smuzhiyun * @lock: queue lock
856*4882a593Smuzhiyun * @stuck_timer: timer that fires if queue gets stuck
857*4882a593Smuzhiyun * @trans: pointer back to transport (for timer)
858*4882a593Smuzhiyun * @need_update: indicates need to update read/write index
859*4882a593Smuzhiyun * @ampdu: true if this queue is an ampdu queue for an specific RA/TID
860*4882a593Smuzhiyun * @wd_timeout: queue watchdog timeout (jiffies) - per queue
861*4882a593Smuzhiyun * @frozen: tx stuck queue timer is frozen
862*4882a593Smuzhiyun * @frozen_expiry_remainder: remember how long until the timer fires
863*4882a593Smuzhiyun * @bc_tbl: byte count table of the queue (relevant only for gen2 transport)
864*4882a593Smuzhiyun * @write_ptr: 1-st empty entry (index) host_w
865*4882a593Smuzhiyun * @read_ptr: last used entry (index) host_r
866*4882a593Smuzhiyun * @dma_addr: physical addr for BD's
867*4882a593Smuzhiyun * @n_window: safe queue window
868*4882a593Smuzhiyun * @id: queue id
869*4882a593Smuzhiyun * @low_mark: low watermark, resume queue if free space more than this
870*4882a593Smuzhiyun * @high_mark: high watermark, stop queue if free space less than this
871*4882a593Smuzhiyun *
872*4882a593Smuzhiyun * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
873*4882a593Smuzhiyun * descriptors) and required locking structures.
874*4882a593Smuzhiyun *
875*4882a593Smuzhiyun * Note the difference between TFD_QUEUE_SIZE_MAX and n_window: the hardware
876*4882a593Smuzhiyun * always assumes 256 descriptors, so TFD_QUEUE_SIZE_MAX is always 256 (unless
877*4882a593Smuzhiyun * there might be HW changes in the future). For the normal TX
878*4882a593Smuzhiyun * queues, n_window, which is the size of the software queue data
879*4882a593Smuzhiyun * is also 256; however, for the command queue, n_window is only
880*4882a593Smuzhiyun * 32 since we don't need so many commands pending. Since the HW
881*4882a593Smuzhiyun * still uses 256 BDs for DMA though, TFD_QUEUE_SIZE_MAX stays 256.
882*4882a593Smuzhiyun * This means that we end up with the following:
883*4882a593Smuzhiyun * HW entries: | 0 | ... | N * 32 | ... | N * 32 + 31 | ... | 255 |
884*4882a593Smuzhiyun * SW entries: | 0 | ... | 31 |
885*4882a593Smuzhiyun * where N is a number between 0 and 7. This means that the SW
886*4882a593Smuzhiyun * data is a window overlayed over the HW queue.
887*4882a593Smuzhiyun */
888*4882a593Smuzhiyun struct iwl_txq {
889*4882a593Smuzhiyun void *tfds;
890*4882a593Smuzhiyun struct iwl_pcie_first_tb_buf *first_tb_bufs;
891*4882a593Smuzhiyun dma_addr_t first_tb_dma;
892*4882a593Smuzhiyun struct iwl_pcie_txq_entry *entries;
893*4882a593Smuzhiyun /* lock for syncing changes on the queue */
894*4882a593Smuzhiyun spinlock_t lock;
895*4882a593Smuzhiyun unsigned long frozen_expiry_remainder;
896*4882a593Smuzhiyun struct timer_list stuck_timer;
897*4882a593Smuzhiyun struct iwl_trans *trans;
898*4882a593Smuzhiyun bool need_update;
899*4882a593Smuzhiyun bool frozen;
900*4882a593Smuzhiyun bool ampdu;
901*4882a593Smuzhiyun int block;
902*4882a593Smuzhiyun unsigned long wd_timeout;
903*4882a593Smuzhiyun struct sk_buff_head overflow_q;
904*4882a593Smuzhiyun struct iwl_dma_ptr bc_tbl;
905*4882a593Smuzhiyun
906*4882a593Smuzhiyun int write_ptr;
907*4882a593Smuzhiyun int read_ptr;
908*4882a593Smuzhiyun dma_addr_t dma_addr;
909*4882a593Smuzhiyun int n_window;
910*4882a593Smuzhiyun u32 id;
911*4882a593Smuzhiyun int low_mark;
912*4882a593Smuzhiyun int high_mark;
913*4882a593Smuzhiyun
914*4882a593Smuzhiyun bool overflow_tx;
915*4882a593Smuzhiyun };
916*4882a593Smuzhiyun
917*4882a593Smuzhiyun /**
918*4882a593Smuzhiyun * struct iwl_trans_txqs - transport tx queues data
919*4882a593Smuzhiyun *
920*4882a593Smuzhiyun * @bc_table_dword: true if the BC table expects DWORD (as opposed to bytes)
921*4882a593Smuzhiyun * @page_offs: offset from skb->cb to mac header page pointer
922*4882a593Smuzhiyun * @dev_cmd_offs: offset from skb->cb to iwl_device_tx_cmd pointer
923*4882a593Smuzhiyun * @queue_used - bit mask of used queues
924*4882a593Smuzhiyun * @queue_stopped - bit mask of stopped queues
925*4882a593Smuzhiyun * @scd_bc_tbls: gen1 pointer to the byte count table of the scheduler
926*4882a593Smuzhiyun */
927*4882a593Smuzhiyun struct iwl_trans_txqs {
928*4882a593Smuzhiyun unsigned long queue_used[BITS_TO_LONGS(IWL_MAX_TVQM_QUEUES)];
929*4882a593Smuzhiyun unsigned long queue_stopped[BITS_TO_LONGS(IWL_MAX_TVQM_QUEUES)];
930*4882a593Smuzhiyun struct iwl_txq *txq[IWL_MAX_TVQM_QUEUES];
931*4882a593Smuzhiyun struct dma_pool *bc_pool;
932*4882a593Smuzhiyun size_t bc_tbl_size;
933*4882a593Smuzhiyun bool bc_table_dword;
934*4882a593Smuzhiyun u8 page_offs;
935*4882a593Smuzhiyun u8 dev_cmd_offs;
936*4882a593Smuzhiyun struct __percpu iwl_tso_hdr_page * tso_hdr_page;
937*4882a593Smuzhiyun
938*4882a593Smuzhiyun struct {
939*4882a593Smuzhiyun u8 fifo;
940*4882a593Smuzhiyun u8 q_id;
941*4882a593Smuzhiyun unsigned int wdg_timeout;
942*4882a593Smuzhiyun } cmd;
943*4882a593Smuzhiyun
944*4882a593Smuzhiyun struct {
945*4882a593Smuzhiyun u8 max_tbs;
946*4882a593Smuzhiyun u16 size;
947*4882a593Smuzhiyun u8 addr_size;
948*4882a593Smuzhiyun } tfd;
949*4882a593Smuzhiyun
950*4882a593Smuzhiyun struct iwl_dma_ptr scd_bc_tbls;
951*4882a593Smuzhiyun };
952*4882a593Smuzhiyun
953*4882a593Smuzhiyun /**
954*4882a593Smuzhiyun * struct iwl_trans - transport common data
955*4882a593Smuzhiyun *
956*4882a593Smuzhiyun * @ops - pointer to iwl_trans_ops
957*4882a593Smuzhiyun * @op_mode - pointer to the op_mode
958*4882a593Smuzhiyun * @trans_cfg: the trans-specific configuration part
959*4882a593Smuzhiyun * @cfg - pointer to the configuration
960*4882a593Smuzhiyun * @drv - pointer to iwl_drv
961*4882a593Smuzhiyun * @status: a bit-mask of transport status flags
962*4882a593Smuzhiyun * @dev - pointer to struct device * that represents the device
963*4882a593Smuzhiyun * @max_skb_frags: maximum number of fragments an SKB can have when transmitted.
964*4882a593Smuzhiyun * 0 indicates that frag SKBs (NETIF_F_SG) aren't supported.
965*4882a593Smuzhiyun * @hw_rf_id a u32 with the device RF ID
966*4882a593Smuzhiyun * @hw_id: a u32 with the ID of the device / sub-device.
967*4882a593Smuzhiyun * Set during transport allocation.
968*4882a593Smuzhiyun * @hw_id_str: a string with info about HW ID. Set during transport allocation.
969*4882a593Smuzhiyun * @pm_support: set to true in start_hw if link pm is supported
970*4882a593Smuzhiyun * @ltr_enabled: set to true if the LTR is enabled
971*4882a593Smuzhiyun * @wide_cmd_header: true when ucode supports wide command header format
972*4882a593Smuzhiyun * @num_rx_queues: number of RX queues allocated by the transport;
973*4882a593Smuzhiyun * the transport must set this before calling iwl_drv_start()
974*4882a593Smuzhiyun * @iml_len: the length of the image loader
975*4882a593Smuzhiyun * @iml: a pointer to the image loader itself
976*4882a593Smuzhiyun * @dev_cmd_pool: pool for Tx cmd allocation - for internal use only.
977*4882a593Smuzhiyun * The user should use iwl_trans_{alloc,free}_tx_cmd.
978*4882a593Smuzhiyun * @rx_mpdu_cmd: MPDU RX command ID, must be assigned by opmode before
979*4882a593Smuzhiyun * starting the firmware, used for tracing
980*4882a593Smuzhiyun * @rx_mpdu_cmd_hdr_size: used for tracing, amount of data before the
981*4882a593Smuzhiyun * start of the 802.11 header in the @rx_mpdu_cmd
982*4882a593Smuzhiyun * @dflt_pwr_limit: default power limit fetched from the platform (ACPI)
983*4882a593Smuzhiyun * @system_pm_mode: the system-wide power management mode in use.
984*4882a593Smuzhiyun * This mode is set dynamically, depending on the WoWLAN values
985*4882a593Smuzhiyun * configured from the userspace at runtime.
986*4882a593Smuzhiyun * @iwl_trans_txqs: transport tx queues data.
987*4882a593Smuzhiyun */
988*4882a593Smuzhiyun struct iwl_trans {
989*4882a593Smuzhiyun const struct iwl_trans_ops *ops;
990*4882a593Smuzhiyun struct iwl_op_mode *op_mode;
991*4882a593Smuzhiyun const struct iwl_cfg_trans_params *trans_cfg;
992*4882a593Smuzhiyun const struct iwl_cfg *cfg;
993*4882a593Smuzhiyun struct iwl_drv *drv;
994*4882a593Smuzhiyun enum iwl_trans_state state;
995*4882a593Smuzhiyun unsigned long status;
996*4882a593Smuzhiyun
997*4882a593Smuzhiyun struct device *dev;
998*4882a593Smuzhiyun u32 max_skb_frags;
999*4882a593Smuzhiyun u32 hw_rev;
1000*4882a593Smuzhiyun u32 hw_rf_id;
1001*4882a593Smuzhiyun u32 hw_id;
1002*4882a593Smuzhiyun char hw_id_str[52];
1003*4882a593Smuzhiyun u32 sku_id[3];
1004*4882a593Smuzhiyun
1005*4882a593Smuzhiyun u8 rx_mpdu_cmd, rx_mpdu_cmd_hdr_size;
1006*4882a593Smuzhiyun
1007*4882a593Smuzhiyun bool pm_support;
1008*4882a593Smuzhiyun bool ltr_enabled;
1009*4882a593Smuzhiyun u8 pnvm_loaded:1;
1010*4882a593Smuzhiyun
1011*4882a593Smuzhiyun const struct iwl_hcmd_arr *command_groups;
1012*4882a593Smuzhiyun int command_groups_size;
1013*4882a593Smuzhiyun bool wide_cmd_header;
1014*4882a593Smuzhiyun
1015*4882a593Smuzhiyun u8 num_rx_queues;
1016*4882a593Smuzhiyun
1017*4882a593Smuzhiyun size_t iml_len;
1018*4882a593Smuzhiyun u8 *iml;
1019*4882a593Smuzhiyun
1020*4882a593Smuzhiyun /* The following fields are internal only */
1021*4882a593Smuzhiyun struct kmem_cache *dev_cmd_pool;
1022*4882a593Smuzhiyun char dev_cmd_pool_name[50];
1023*4882a593Smuzhiyun
1024*4882a593Smuzhiyun struct dentry *dbgfs_dir;
1025*4882a593Smuzhiyun
1026*4882a593Smuzhiyun #ifdef CONFIG_LOCKDEP
1027*4882a593Smuzhiyun struct lockdep_map sync_cmd_lockdep_map;
1028*4882a593Smuzhiyun #endif
1029*4882a593Smuzhiyun
1030*4882a593Smuzhiyun struct iwl_trans_debug dbg;
1031*4882a593Smuzhiyun struct iwl_self_init_dram init_dram;
1032*4882a593Smuzhiyun
1033*4882a593Smuzhiyun enum iwl_plat_pm_mode system_pm_mode;
1034*4882a593Smuzhiyun
1035*4882a593Smuzhiyun const char *name;
1036*4882a593Smuzhiyun struct iwl_trans_txqs txqs;
1037*4882a593Smuzhiyun
1038*4882a593Smuzhiyun /* pointer to trans specific struct */
1039*4882a593Smuzhiyun /*Ensure that this pointer will always be aligned to sizeof pointer */
1040*4882a593Smuzhiyun char trans_specific[] __aligned(sizeof(void *));
1041*4882a593Smuzhiyun };
1042*4882a593Smuzhiyun
1043*4882a593Smuzhiyun const char *iwl_get_cmd_string(struct iwl_trans *trans, u32 id);
1044*4882a593Smuzhiyun int iwl_cmd_groups_verify_sorted(const struct iwl_trans_config *trans);
1045*4882a593Smuzhiyun
iwl_trans_configure(struct iwl_trans * trans,const struct iwl_trans_config * trans_cfg)1046*4882a593Smuzhiyun static inline void iwl_trans_configure(struct iwl_trans *trans,
1047*4882a593Smuzhiyun const struct iwl_trans_config *trans_cfg)
1048*4882a593Smuzhiyun {
1049*4882a593Smuzhiyun trans->op_mode = trans_cfg->op_mode;
1050*4882a593Smuzhiyun
1051*4882a593Smuzhiyun trans->ops->configure(trans, trans_cfg);
1052*4882a593Smuzhiyun WARN_ON(iwl_cmd_groups_verify_sorted(trans_cfg));
1053*4882a593Smuzhiyun }
1054*4882a593Smuzhiyun
iwl_trans_start_hw(struct iwl_trans * trans)1055*4882a593Smuzhiyun static inline int iwl_trans_start_hw(struct iwl_trans *trans)
1056*4882a593Smuzhiyun {
1057*4882a593Smuzhiyun might_sleep();
1058*4882a593Smuzhiyun
1059*4882a593Smuzhiyun return trans->ops->start_hw(trans);
1060*4882a593Smuzhiyun }
1061*4882a593Smuzhiyun
iwl_trans_op_mode_leave(struct iwl_trans * trans)1062*4882a593Smuzhiyun static inline void iwl_trans_op_mode_leave(struct iwl_trans *trans)
1063*4882a593Smuzhiyun {
1064*4882a593Smuzhiyun might_sleep();
1065*4882a593Smuzhiyun
1066*4882a593Smuzhiyun if (trans->ops->op_mode_leave)
1067*4882a593Smuzhiyun trans->ops->op_mode_leave(trans);
1068*4882a593Smuzhiyun
1069*4882a593Smuzhiyun trans->op_mode = NULL;
1070*4882a593Smuzhiyun
1071*4882a593Smuzhiyun trans->state = IWL_TRANS_NO_FW;
1072*4882a593Smuzhiyun }
1073*4882a593Smuzhiyun
iwl_trans_fw_alive(struct iwl_trans * trans,u32 scd_addr)1074*4882a593Smuzhiyun static inline void iwl_trans_fw_alive(struct iwl_trans *trans, u32 scd_addr)
1075*4882a593Smuzhiyun {
1076*4882a593Smuzhiyun might_sleep();
1077*4882a593Smuzhiyun
1078*4882a593Smuzhiyun trans->state = IWL_TRANS_FW_ALIVE;
1079*4882a593Smuzhiyun
1080*4882a593Smuzhiyun trans->ops->fw_alive(trans, scd_addr);
1081*4882a593Smuzhiyun }
1082*4882a593Smuzhiyun
iwl_trans_start_fw(struct iwl_trans * trans,const struct fw_img * fw,bool run_in_rfkill)1083*4882a593Smuzhiyun static inline int iwl_trans_start_fw(struct iwl_trans *trans,
1084*4882a593Smuzhiyun const struct fw_img *fw,
1085*4882a593Smuzhiyun bool run_in_rfkill)
1086*4882a593Smuzhiyun {
1087*4882a593Smuzhiyun might_sleep();
1088*4882a593Smuzhiyun
1089*4882a593Smuzhiyun WARN_ON_ONCE(!trans->rx_mpdu_cmd);
1090*4882a593Smuzhiyun
1091*4882a593Smuzhiyun clear_bit(STATUS_FW_ERROR, &trans->status);
1092*4882a593Smuzhiyun return trans->ops->start_fw(trans, fw, run_in_rfkill);
1093*4882a593Smuzhiyun }
1094*4882a593Smuzhiyun
iwl_trans_stop_device(struct iwl_trans * trans)1095*4882a593Smuzhiyun static inline void iwl_trans_stop_device(struct iwl_trans *trans)
1096*4882a593Smuzhiyun {
1097*4882a593Smuzhiyun might_sleep();
1098*4882a593Smuzhiyun
1099*4882a593Smuzhiyun trans->ops->stop_device(trans);
1100*4882a593Smuzhiyun
1101*4882a593Smuzhiyun trans->state = IWL_TRANS_NO_FW;
1102*4882a593Smuzhiyun }
1103*4882a593Smuzhiyun
iwl_trans_d3_suspend(struct iwl_trans * trans,bool test,bool reset)1104*4882a593Smuzhiyun static inline int iwl_trans_d3_suspend(struct iwl_trans *trans, bool test,
1105*4882a593Smuzhiyun bool reset)
1106*4882a593Smuzhiyun {
1107*4882a593Smuzhiyun might_sleep();
1108*4882a593Smuzhiyun if (!trans->ops->d3_suspend)
1109*4882a593Smuzhiyun return 0;
1110*4882a593Smuzhiyun
1111*4882a593Smuzhiyun return trans->ops->d3_suspend(trans, test, reset);
1112*4882a593Smuzhiyun }
1113*4882a593Smuzhiyun
iwl_trans_d3_resume(struct iwl_trans * trans,enum iwl_d3_status * status,bool test,bool reset)1114*4882a593Smuzhiyun static inline int iwl_trans_d3_resume(struct iwl_trans *trans,
1115*4882a593Smuzhiyun enum iwl_d3_status *status,
1116*4882a593Smuzhiyun bool test, bool reset)
1117*4882a593Smuzhiyun {
1118*4882a593Smuzhiyun might_sleep();
1119*4882a593Smuzhiyun if (!trans->ops->d3_resume)
1120*4882a593Smuzhiyun return 0;
1121*4882a593Smuzhiyun
1122*4882a593Smuzhiyun return trans->ops->d3_resume(trans, status, test, reset);
1123*4882a593Smuzhiyun }
1124*4882a593Smuzhiyun
iwl_trans_suspend(struct iwl_trans * trans)1125*4882a593Smuzhiyun static inline int iwl_trans_suspend(struct iwl_trans *trans)
1126*4882a593Smuzhiyun {
1127*4882a593Smuzhiyun if (!trans->ops->suspend)
1128*4882a593Smuzhiyun return 0;
1129*4882a593Smuzhiyun
1130*4882a593Smuzhiyun return trans->ops->suspend(trans);
1131*4882a593Smuzhiyun }
1132*4882a593Smuzhiyun
iwl_trans_resume(struct iwl_trans * trans)1133*4882a593Smuzhiyun static inline void iwl_trans_resume(struct iwl_trans *trans)
1134*4882a593Smuzhiyun {
1135*4882a593Smuzhiyun if (trans->ops->resume)
1136*4882a593Smuzhiyun trans->ops->resume(trans);
1137*4882a593Smuzhiyun }
1138*4882a593Smuzhiyun
1139*4882a593Smuzhiyun static inline struct iwl_trans_dump_data *
iwl_trans_dump_data(struct iwl_trans * trans,u32 dump_mask)1140*4882a593Smuzhiyun iwl_trans_dump_data(struct iwl_trans *trans, u32 dump_mask)
1141*4882a593Smuzhiyun {
1142*4882a593Smuzhiyun if (!trans->ops->dump_data)
1143*4882a593Smuzhiyun return NULL;
1144*4882a593Smuzhiyun return trans->ops->dump_data(trans, dump_mask);
1145*4882a593Smuzhiyun }
1146*4882a593Smuzhiyun
1147*4882a593Smuzhiyun static inline struct iwl_device_tx_cmd *
iwl_trans_alloc_tx_cmd(struct iwl_trans * trans)1148*4882a593Smuzhiyun iwl_trans_alloc_tx_cmd(struct iwl_trans *trans)
1149*4882a593Smuzhiyun {
1150*4882a593Smuzhiyun return kmem_cache_zalloc(trans->dev_cmd_pool, GFP_ATOMIC);
1151*4882a593Smuzhiyun }
1152*4882a593Smuzhiyun
1153*4882a593Smuzhiyun int iwl_trans_send_cmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
1154*4882a593Smuzhiyun
iwl_trans_free_tx_cmd(struct iwl_trans * trans,struct iwl_device_tx_cmd * dev_cmd)1155*4882a593Smuzhiyun static inline void iwl_trans_free_tx_cmd(struct iwl_trans *trans,
1156*4882a593Smuzhiyun struct iwl_device_tx_cmd *dev_cmd)
1157*4882a593Smuzhiyun {
1158*4882a593Smuzhiyun kmem_cache_free(trans->dev_cmd_pool, dev_cmd);
1159*4882a593Smuzhiyun }
1160*4882a593Smuzhiyun
iwl_trans_tx(struct iwl_trans * trans,struct sk_buff * skb,struct iwl_device_tx_cmd * dev_cmd,int queue)1161*4882a593Smuzhiyun static inline int iwl_trans_tx(struct iwl_trans *trans, struct sk_buff *skb,
1162*4882a593Smuzhiyun struct iwl_device_tx_cmd *dev_cmd, int queue)
1163*4882a593Smuzhiyun {
1164*4882a593Smuzhiyun if (unlikely(test_bit(STATUS_FW_ERROR, &trans->status)))
1165*4882a593Smuzhiyun return -EIO;
1166*4882a593Smuzhiyun
1167*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1168*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1169*4882a593Smuzhiyun return -EIO;
1170*4882a593Smuzhiyun }
1171*4882a593Smuzhiyun
1172*4882a593Smuzhiyun return trans->ops->tx(trans, skb, dev_cmd, queue);
1173*4882a593Smuzhiyun }
1174*4882a593Smuzhiyun
iwl_trans_reclaim(struct iwl_trans * trans,int queue,int ssn,struct sk_buff_head * skbs)1175*4882a593Smuzhiyun static inline void iwl_trans_reclaim(struct iwl_trans *trans, int queue,
1176*4882a593Smuzhiyun int ssn, struct sk_buff_head *skbs)
1177*4882a593Smuzhiyun {
1178*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1179*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1180*4882a593Smuzhiyun return;
1181*4882a593Smuzhiyun }
1182*4882a593Smuzhiyun
1183*4882a593Smuzhiyun trans->ops->reclaim(trans, queue, ssn, skbs);
1184*4882a593Smuzhiyun }
1185*4882a593Smuzhiyun
iwl_trans_set_q_ptrs(struct iwl_trans * trans,int queue,int ptr)1186*4882a593Smuzhiyun static inline void iwl_trans_set_q_ptrs(struct iwl_trans *trans, int queue,
1187*4882a593Smuzhiyun int ptr)
1188*4882a593Smuzhiyun {
1189*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1190*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1191*4882a593Smuzhiyun return;
1192*4882a593Smuzhiyun }
1193*4882a593Smuzhiyun
1194*4882a593Smuzhiyun trans->ops->set_q_ptrs(trans, queue, ptr);
1195*4882a593Smuzhiyun }
1196*4882a593Smuzhiyun
iwl_trans_txq_disable(struct iwl_trans * trans,int queue,bool configure_scd)1197*4882a593Smuzhiyun static inline void iwl_trans_txq_disable(struct iwl_trans *trans, int queue,
1198*4882a593Smuzhiyun bool configure_scd)
1199*4882a593Smuzhiyun {
1200*4882a593Smuzhiyun trans->ops->txq_disable(trans, queue, configure_scd);
1201*4882a593Smuzhiyun }
1202*4882a593Smuzhiyun
1203*4882a593Smuzhiyun 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)1204*4882a593Smuzhiyun iwl_trans_txq_enable_cfg(struct iwl_trans *trans, int queue, u16 ssn,
1205*4882a593Smuzhiyun const struct iwl_trans_txq_scd_cfg *cfg,
1206*4882a593Smuzhiyun unsigned int queue_wdg_timeout)
1207*4882a593Smuzhiyun {
1208*4882a593Smuzhiyun might_sleep();
1209*4882a593Smuzhiyun
1210*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1211*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1212*4882a593Smuzhiyun return false;
1213*4882a593Smuzhiyun }
1214*4882a593Smuzhiyun
1215*4882a593Smuzhiyun return trans->ops->txq_enable(trans, queue, ssn,
1216*4882a593Smuzhiyun cfg, queue_wdg_timeout);
1217*4882a593Smuzhiyun }
1218*4882a593Smuzhiyun
1219*4882a593Smuzhiyun static inline int
iwl_trans_get_rxq_dma_data(struct iwl_trans * trans,int queue,struct iwl_trans_rxq_dma_data * data)1220*4882a593Smuzhiyun iwl_trans_get_rxq_dma_data(struct iwl_trans *trans, int queue,
1221*4882a593Smuzhiyun struct iwl_trans_rxq_dma_data *data)
1222*4882a593Smuzhiyun {
1223*4882a593Smuzhiyun if (WARN_ON_ONCE(!trans->ops->rxq_dma_data))
1224*4882a593Smuzhiyun return -ENOTSUPP;
1225*4882a593Smuzhiyun
1226*4882a593Smuzhiyun return trans->ops->rxq_dma_data(trans, queue, data);
1227*4882a593Smuzhiyun }
1228*4882a593Smuzhiyun
1229*4882a593Smuzhiyun static inline void
iwl_trans_txq_free(struct iwl_trans * trans,int queue)1230*4882a593Smuzhiyun iwl_trans_txq_free(struct iwl_trans *trans, int queue)
1231*4882a593Smuzhiyun {
1232*4882a593Smuzhiyun if (WARN_ON_ONCE(!trans->ops->txq_free))
1233*4882a593Smuzhiyun return;
1234*4882a593Smuzhiyun
1235*4882a593Smuzhiyun trans->ops->txq_free(trans, queue);
1236*4882a593Smuzhiyun }
1237*4882a593Smuzhiyun
1238*4882a593Smuzhiyun static inline int
iwl_trans_txq_alloc(struct iwl_trans * trans,__le16 flags,u8 sta_id,u8 tid,int cmd_id,int size,unsigned int wdg_timeout)1239*4882a593Smuzhiyun iwl_trans_txq_alloc(struct iwl_trans *trans,
1240*4882a593Smuzhiyun __le16 flags, u8 sta_id, u8 tid,
1241*4882a593Smuzhiyun int cmd_id, int size,
1242*4882a593Smuzhiyun unsigned int wdg_timeout)
1243*4882a593Smuzhiyun {
1244*4882a593Smuzhiyun might_sleep();
1245*4882a593Smuzhiyun
1246*4882a593Smuzhiyun if (WARN_ON_ONCE(!trans->ops->txq_alloc))
1247*4882a593Smuzhiyun return -ENOTSUPP;
1248*4882a593Smuzhiyun
1249*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1250*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1251*4882a593Smuzhiyun return -EIO;
1252*4882a593Smuzhiyun }
1253*4882a593Smuzhiyun
1254*4882a593Smuzhiyun return trans->ops->txq_alloc(trans, flags, sta_id, tid,
1255*4882a593Smuzhiyun cmd_id, size, wdg_timeout);
1256*4882a593Smuzhiyun }
1257*4882a593Smuzhiyun
iwl_trans_txq_set_shared_mode(struct iwl_trans * trans,int queue,bool shared_mode)1258*4882a593Smuzhiyun static inline void iwl_trans_txq_set_shared_mode(struct iwl_trans *trans,
1259*4882a593Smuzhiyun int queue, bool shared_mode)
1260*4882a593Smuzhiyun {
1261*4882a593Smuzhiyun if (trans->ops->txq_set_shared_mode)
1262*4882a593Smuzhiyun trans->ops->txq_set_shared_mode(trans, queue, shared_mode);
1263*4882a593Smuzhiyun }
1264*4882a593Smuzhiyun
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)1265*4882a593Smuzhiyun static inline void iwl_trans_txq_enable(struct iwl_trans *trans, int queue,
1266*4882a593Smuzhiyun int fifo, int sta_id, int tid,
1267*4882a593Smuzhiyun int frame_limit, u16 ssn,
1268*4882a593Smuzhiyun unsigned int queue_wdg_timeout)
1269*4882a593Smuzhiyun {
1270*4882a593Smuzhiyun struct iwl_trans_txq_scd_cfg cfg = {
1271*4882a593Smuzhiyun .fifo = fifo,
1272*4882a593Smuzhiyun .sta_id = sta_id,
1273*4882a593Smuzhiyun .tid = tid,
1274*4882a593Smuzhiyun .frame_limit = frame_limit,
1275*4882a593Smuzhiyun .aggregate = sta_id >= 0,
1276*4882a593Smuzhiyun };
1277*4882a593Smuzhiyun
1278*4882a593Smuzhiyun iwl_trans_txq_enable_cfg(trans, queue, ssn, &cfg, queue_wdg_timeout);
1279*4882a593Smuzhiyun }
1280*4882a593Smuzhiyun
1281*4882a593Smuzhiyun static inline
iwl_trans_ac_txq_enable(struct iwl_trans * trans,int queue,int fifo,unsigned int queue_wdg_timeout)1282*4882a593Smuzhiyun void iwl_trans_ac_txq_enable(struct iwl_trans *trans, int queue, int fifo,
1283*4882a593Smuzhiyun unsigned int queue_wdg_timeout)
1284*4882a593Smuzhiyun {
1285*4882a593Smuzhiyun struct iwl_trans_txq_scd_cfg cfg = {
1286*4882a593Smuzhiyun .fifo = fifo,
1287*4882a593Smuzhiyun .sta_id = -1,
1288*4882a593Smuzhiyun .tid = IWL_MAX_TID_COUNT,
1289*4882a593Smuzhiyun .frame_limit = IWL_FRAME_LIMIT,
1290*4882a593Smuzhiyun .aggregate = false,
1291*4882a593Smuzhiyun };
1292*4882a593Smuzhiyun
1293*4882a593Smuzhiyun iwl_trans_txq_enable_cfg(trans, queue, 0, &cfg, queue_wdg_timeout);
1294*4882a593Smuzhiyun }
1295*4882a593Smuzhiyun
iwl_trans_freeze_txq_timer(struct iwl_trans * trans,unsigned long txqs,bool freeze)1296*4882a593Smuzhiyun static inline void iwl_trans_freeze_txq_timer(struct iwl_trans *trans,
1297*4882a593Smuzhiyun unsigned long txqs,
1298*4882a593Smuzhiyun bool freeze)
1299*4882a593Smuzhiyun {
1300*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1301*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1302*4882a593Smuzhiyun return;
1303*4882a593Smuzhiyun }
1304*4882a593Smuzhiyun
1305*4882a593Smuzhiyun if (trans->ops->freeze_txq_timer)
1306*4882a593Smuzhiyun trans->ops->freeze_txq_timer(trans, txqs, freeze);
1307*4882a593Smuzhiyun }
1308*4882a593Smuzhiyun
iwl_trans_block_txq_ptrs(struct iwl_trans * trans,bool block)1309*4882a593Smuzhiyun static inline void iwl_trans_block_txq_ptrs(struct iwl_trans *trans,
1310*4882a593Smuzhiyun bool block)
1311*4882a593Smuzhiyun {
1312*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1313*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1314*4882a593Smuzhiyun return;
1315*4882a593Smuzhiyun }
1316*4882a593Smuzhiyun
1317*4882a593Smuzhiyun if (trans->ops->block_txq_ptrs)
1318*4882a593Smuzhiyun trans->ops->block_txq_ptrs(trans, block);
1319*4882a593Smuzhiyun }
1320*4882a593Smuzhiyun
iwl_trans_wait_tx_queues_empty(struct iwl_trans * trans,u32 txqs)1321*4882a593Smuzhiyun static inline int iwl_trans_wait_tx_queues_empty(struct iwl_trans *trans,
1322*4882a593Smuzhiyun u32 txqs)
1323*4882a593Smuzhiyun {
1324*4882a593Smuzhiyun if (WARN_ON_ONCE(!trans->ops->wait_tx_queues_empty))
1325*4882a593Smuzhiyun return -ENOTSUPP;
1326*4882a593Smuzhiyun
1327*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1328*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1329*4882a593Smuzhiyun return -EIO;
1330*4882a593Smuzhiyun }
1331*4882a593Smuzhiyun
1332*4882a593Smuzhiyun return trans->ops->wait_tx_queues_empty(trans, txqs);
1333*4882a593Smuzhiyun }
1334*4882a593Smuzhiyun
iwl_trans_wait_txq_empty(struct iwl_trans * trans,int queue)1335*4882a593Smuzhiyun static inline int iwl_trans_wait_txq_empty(struct iwl_trans *trans, int queue)
1336*4882a593Smuzhiyun {
1337*4882a593Smuzhiyun if (WARN_ON_ONCE(!trans->ops->wait_txq_empty))
1338*4882a593Smuzhiyun return -ENOTSUPP;
1339*4882a593Smuzhiyun
1340*4882a593Smuzhiyun if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) {
1341*4882a593Smuzhiyun IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
1342*4882a593Smuzhiyun return -EIO;
1343*4882a593Smuzhiyun }
1344*4882a593Smuzhiyun
1345*4882a593Smuzhiyun return trans->ops->wait_txq_empty(trans, queue);
1346*4882a593Smuzhiyun }
1347*4882a593Smuzhiyun
iwl_trans_write8(struct iwl_trans * trans,u32 ofs,u8 val)1348*4882a593Smuzhiyun static inline void iwl_trans_write8(struct iwl_trans *trans, u32 ofs, u8 val)
1349*4882a593Smuzhiyun {
1350*4882a593Smuzhiyun trans->ops->write8(trans, ofs, val);
1351*4882a593Smuzhiyun }
1352*4882a593Smuzhiyun
iwl_trans_write32(struct iwl_trans * trans,u32 ofs,u32 val)1353*4882a593Smuzhiyun static inline void iwl_trans_write32(struct iwl_trans *trans, u32 ofs, u32 val)
1354*4882a593Smuzhiyun {
1355*4882a593Smuzhiyun trans->ops->write32(trans, ofs, val);
1356*4882a593Smuzhiyun }
1357*4882a593Smuzhiyun
iwl_trans_read32(struct iwl_trans * trans,u32 ofs)1358*4882a593Smuzhiyun static inline u32 iwl_trans_read32(struct iwl_trans *trans, u32 ofs)
1359*4882a593Smuzhiyun {
1360*4882a593Smuzhiyun return trans->ops->read32(trans, ofs);
1361*4882a593Smuzhiyun }
1362*4882a593Smuzhiyun
iwl_trans_read_prph(struct iwl_trans * trans,u32 ofs)1363*4882a593Smuzhiyun static inline u32 iwl_trans_read_prph(struct iwl_trans *trans, u32 ofs)
1364*4882a593Smuzhiyun {
1365*4882a593Smuzhiyun return trans->ops->read_prph(trans, ofs);
1366*4882a593Smuzhiyun }
1367*4882a593Smuzhiyun
iwl_trans_write_prph(struct iwl_trans * trans,u32 ofs,u32 val)1368*4882a593Smuzhiyun static inline void iwl_trans_write_prph(struct iwl_trans *trans, u32 ofs,
1369*4882a593Smuzhiyun u32 val)
1370*4882a593Smuzhiyun {
1371*4882a593Smuzhiyun return trans->ops->write_prph(trans, ofs, val);
1372*4882a593Smuzhiyun }
1373*4882a593Smuzhiyun
iwl_trans_read_mem(struct iwl_trans * trans,u32 addr,void * buf,int dwords)1374*4882a593Smuzhiyun static inline int iwl_trans_read_mem(struct iwl_trans *trans, u32 addr,
1375*4882a593Smuzhiyun void *buf, int dwords)
1376*4882a593Smuzhiyun {
1377*4882a593Smuzhiyun return trans->ops->read_mem(trans, addr, buf, dwords);
1378*4882a593Smuzhiyun }
1379*4882a593Smuzhiyun
1380*4882a593Smuzhiyun #define iwl_trans_read_mem_bytes(trans, addr, buf, bufsize) \
1381*4882a593Smuzhiyun do { \
1382*4882a593Smuzhiyun if (__builtin_constant_p(bufsize)) \
1383*4882a593Smuzhiyun BUILD_BUG_ON((bufsize) % sizeof(u32)); \
1384*4882a593Smuzhiyun iwl_trans_read_mem(trans, addr, buf, (bufsize) / sizeof(u32));\
1385*4882a593Smuzhiyun } while (0)
1386*4882a593Smuzhiyun
iwl_trans_read_mem32(struct iwl_trans * trans,u32 addr)1387*4882a593Smuzhiyun static inline u32 iwl_trans_read_mem32(struct iwl_trans *trans, u32 addr)
1388*4882a593Smuzhiyun {
1389*4882a593Smuzhiyun u32 value;
1390*4882a593Smuzhiyun
1391*4882a593Smuzhiyun if (WARN_ON(iwl_trans_read_mem(trans, addr, &value, 1)))
1392*4882a593Smuzhiyun return 0xa5a5a5a5;
1393*4882a593Smuzhiyun
1394*4882a593Smuzhiyun return value;
1395*4882a593Smuzhiyun }
1396*4882a593Smuzhiyun
iwl_trans_write_mem(struct iwl_trans * trans,u32 addr,const void * buf,int dwords)1397*4882a593Smuzhiyun static inline int iwl_trans_write_mem(struct iwl_trans *trans, u32 addr,
1398*4882a593Smuzhiyun const void *buf, int dwords)
1399*4882a593Smuzhiyun {
1400*4882a593Smuzhiyun return trans->ops->write_mem(trans, addr, buf, dwords);
1401*4882a593Smuzhiyun }
1402*4882a593Smuzhiyun
iwl_trans_write_mem32(struct iwl_trans * trans,u32 addr,u32 val)1403*4882a593Smuzhiyun static inline u32 iwl_trans_write_mem32(struct iwl_trans *trans, u32 addr,
1404*4882a593Smuzhiyun u32 val)
1405*4882a593Smuzhiyun {
1406*4882a593Smuzhiyun return iwl_trans_write_mem(trans, addr, &val, 1);
1407*4882a593Smuzhiyun }
1408*4882a593Smuzhiyun
iwl_trans_set_pmi(struct iwl_trans * trans,bool state)1409*4882a593Smuzhiyun static inline void iwl_trans_set_pmi(struct iwl_trans *trans, bool state)
1410*4882a593Smuzhiyun {
1411*4882a593Smuzhiyun if (trans->ops->set_pmi)
1412*4882a593Smuzhiyun trans->ops->set_pmi(trans, state);
1413*4882a593Smuzhiyun }
1414*4882a593Smuzhiyun
iwl_trans_sw_reset(struct iwl_trans * trans)1415*4882a593Smuzhiyun static inline void iwl_trans_sw_reset(struct iwl_trans *trans)
1416*4882a593Smuzhiyun {
1417*4882a593Smuzhiyun if (trans->ops->sw_reset)
1418*4882a593Smuzhiyun trans->ops->sw_reset(trans);
1419*4882a593Smuzhiyun }
1420*4882a593Smuzhiyun
1421*4882a593Smuzhiyun static inline void
iwl_trans_set_bits_mask(struct iwl_trans * trans,u32 reg,u32 mask,u32 value)1422*4882a593Smuzhiyun iwl_trans_set_bits_mask(struct iwl_trans *trans, u32 reg, u32 mask, u32 value)
1423*4882a593Smuzhiyun {
1424*4882a593Smuzhiyun trans->ops->set_bits_mask(trans, reg, mask, value);
1425*4882a593Smuzhiyun }
1426*4882a593Smuzhiyun
1427*4882a593Smuzhiyun #define iwl_trans_grab_nic_access(trans, flags) \
1428*4882a593Smuzhiyun __cond_lock(nic_access, \
1429*4882a593Smuzhiyun likely((trans)->ops->grab_nic_access(trans, flags)))
1430*4882a593Smuzhiyun
__releases(nic_access)1431*4882a593Smuzhiyun static inline void __releases(nic_access)
1432*4882a593Smuzhiyun iwl_trans_release_nic_access(struct iwl_trans *trans, unsigned long *flags)
1433*4882a593Smuzhiyun {
1434*4882a593Smuzhiyun trans->ops->release_nic_access(trans, flags);
1435*4882a593Smuzhiyun __release(nic_access);
1436*4882a593Smuzhiyun }
1437*4882a593Smuzhiyun
iwl_trans_fw_error(struct iwl_trans * trans)1438*4882a593Smuzhiyun static inline void iwl_trans_fw_error(struct iwl_trans *trans)
1439*4882a593Smuzhiyun {
1440*4882a593Smuzhiyun if (WARN_ON_ONCE(!trans->op_mode))
1441*4882a593Smuzhiyun return;
1442*4882a593Smuzhiyun
1443*4882a593Smuzhiyun /* prevent double restarts due to the same erroneous FW */
1444*4882a593Smuzhiyun if (!test_and_set_bit(STATUS_FW_ERROR, &trans->status))
1445*4882a593Smuzhiyun iwl_op_mode_nic_error(trans->op_mode);
1446*4882a593Smuzhiyun }
1447*4882a593Smuzhiyun
iwl_trans_fw_running(struct iwl_trans * trans)1448*4882a593Smuzhiyun static inline bool iwl_trans_fw_running(struct iwl_trans *trans)
1449*4882a593Smuzhiyun {
1450*4882a593Smuzhiyun return trans->state == IWL_TRANS_FW_ALIVE;
1451*4882a593Smuzhiyun }
1452*4882a593Smuzhiyun
iwl_trans_sync_nmi(struct iwl_trans * trans)1453*4882a593Smuzhiyun static inline void iwl_trans_sync_nmi(struct iwl_trans *trans)
1454*4882a593Smuzhiyun {
1455*4882a593Smuzhiyun if (trans->ops->sync_nmi)
1456*4882a593Smuzhiyun trans->ops->sync_nmi(trans);
1457*4882a593Smuzhiyun }
1458*4882a593Smuzhiyun
iwl_trans_set_pnvm(struct iwl_trans * trans,const void * data,u32 len)1459*4882a593Smuzhiyun static inline int iwl_trans_set_pnvm(struct iwl_trans *trans,
1460*4882a593Smuzhiyun const void *data, u32 len)
1461*4882a593Smuzhiyun {
1462*4882a593Smuzhiyun if (trans->ops->set_pnvm) {
1463*4882a593Smuzhiyun int ret = trans->ops->set_pnvm(trans, data, len);
1464*4882a593Smuzhiyun
1465*4882a593Smuzhiyun if (ret)
1466*4882a593Smuzhiyun return ret;
1467*4882a593Smuzhiyun }
1468*4882a593Smuzhiyun
1469*4882a593Smuzhiyun trans->pnvm_loaded = true;
1470*4882a593Smuzhiyun
1471*4882a593Smuzhiyun return 0;
1472*4882a593Smuzhiyun }
1473*4882a593Smuzhiyun
iwl_trans_dbg_ini_valid(struct iwl_trans * trans)1474*4882a593Smuzhiyun static inline bool iwl_trans_dbg_ini_valid(struct iwl_trans *trans)
1475*4882a593Smuzhiyun {
1476*4882a593Smuzhiyun return trans->dbg.internal_ini_cfg != IWL_INI_CFG_STATE_NOT_LOADED ||
1477*4882a593Smuzhiyun trans->dbg.external_ini_cfg != IWL_INI_CFG_STATE_NOT_LOADED;
1478*4882a593Smuzhiyun }
1479*4882a593Smuzhiyun
1480*4882a593Smuzhiyun /*****************************************************
1481*4882a593Smuzhiyun * transport helper functions
1482*4882a593Smuzhiyun *****************************************************/
1483*4882a593Smuzhiyun struct iwl_trans *iwl_trans_alloc(unsigned int priv_size,
1484*4882a593Smuzhiyun struct device *dev,
1485*4882a593Smuzhiyun const struct iwl_trans_ops *ops,
1486*4882a593Smuzhiyun const struct iwl_cfg_trans_params *cfg_trans);
1487*4882a593Smuzhiyun void iwl_trans_free(struct iwl_trans *trans);
1488*4882a593Smuzhiyun
1489*4882a593Smuzhiyun /*****************************************************
1490*4882a593Smuzhiyun * driver (transport) register/unregister functions
1491*4882a593Smuzhiyun ******************************************************/
1492*4882a593Smuzhiyun int __must_check iwl_pci_register_driver(void);
1493*4882a593Smuzhiyun void iwl_pci_unregister_driver(void);
1494*4882a593Smuzhiyun
1495*4882a593Smuzhiyun #endif /* __iwl_trans_h__ */
1496