64769e44059eaefdfbd3cd39cf565984d5a147e0
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / iwlwifi / iwl-trans.h
1 /******************************************************************************
2  *
3  * This file is provided under a dual BSD/GPLv2 license.  When using or
4  * redistributing this file, you may do so under either license.
5  *
6  * GPL LICENSE SUMMARY
7  *
8  * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
9  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of version 2 of the GNU General Public License as
13  * published by the Free Software Foundation.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23  * USA
24  *
25  * The full GNU General Public License is included in this distribution
26  * in the file called COPYING.
27  *
28  * Contact Information:
29  *  Intel Linux Wireless <ilw@linux.intel.com>
30  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31  *
32  * BSD LICENSE
33  *
34  * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
35  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
36  * All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  *
42  *  * Redistributions of source code must retain the above copyright
43  *    notice, this list of conditions and the following disclaimer.
44  *  * Redistributions in binary form must reproduce the above copyright
45  *    notice, this list of conditions and the following disclaimer in
46  *    the documentation and/or other materials provided with the
47  *    distribution.
48  *  * Neither the name Intel Corporation nor the names of its
49  *    contributors may be used to endorse or promote products derived
50  *    from this software without specific prior written permission.
51  *
52  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63  *
64  *****************************************************************************/
65 #ifndef __iwl_trans_h__
66 #define __iwl_trans_h__
67
68 #include <linux/ieee80211.h>
69 #include <linux/mm.h> /* for page_address */
70 #include <linux/lockdep.h>
71
72 #include "iwl-debug.h"
73 #include "iwl-config.h"
74 #include "iwl-fw.h"
75 #include "iwl-op-mode.h"
76
77 /**
78  * DOC: Transport layer - what is it ?
79  *
80  * The transport layer is the layer that deals with the HW directly. It provides
81  * an abstraction of the underlying HW to the upper layer. The transport layer
82  * doesn't provide any policy, algorithm or anything of this kind, but only
83  * mechanisms to make the HW do something. It is not completely stateless but
84  * close to it.
85  * We will have an implementation for each different supported bus.
86  */
87
88 /**
89  * DOC: Life cycle of the transport layer
90  *
91  * The transport layer has a very precise life cycle.
92  *
93  *      1) A helper function is called during the module initialization and
94  *         registers the bus driver's ops with the transport's alloc function.
95  *      2) Bus's probe calls to the transport layer's allocation functions.
96  *         Of course this function is bus specific.
97  *      3) This allocation functions will spawn the upper layer which will
98  *         register mac80211.
99  *
100  *      4) At some point (i.e. mac80211's start call), the op_mode will call
101  *         the following sequence:
102  *         start_hw
103  *         start_fw
104  *
105  *      5) Then when finished (or reset):
106  *         stop_device
107  *
108  *      6) Eventually, the free function will be called.
109  */
110
111 /**
112  * DOC: Host command section
113  *
114  * A host command is a command issued by the upper layer to the fw. There are
115  * several versions of fw that have several APIs. The transport layer is
116  * completely agnostic to these differences.
117  * The transport does provide helper functionality (i.e. SYNC / ASYNC mode),
118  */
119 #define SEQ_TO_QUEUE(s) (((s) >> 8) & 0x1f)
120 #define QUEUE_TO_SEQ(q) (((q) & 0x1f) << 8)
121 #define SEQ_TO_INDEX(s) ((s) & 0xff)
122 #define INDEX_TO_SEQ(i) ((i) & 0xff)
123 #define SEQ_RX_FRAME    cpu_to_le16(0x8000)
124
125 /**
126  * struct iwl_cmd_header
127  *
128  * This header format appears in the beginning of each command sent from the
129  * driver, and each response/notification received from uCode.
130  */
131 struct iwl_cmd_header {
132         u8 cmd;         /* Command ID:  REPLY_RXON, etc. */
133         u8 reserved;
134         /*
135          * The driver sets up the sequence number to values of its choosing.
136          * uCode does not use this value, but passes it back to the driver
137          * when sending the response to each driver-originated command, so
138          * the driver can match the response to the command.  Since the values
139          * don't get used by uCode, the driver may set up an arbitrary format.
140          *
141          * There is one exception:  uCode sets bit 15 when it originates
142          * the response/notification, i.e. when the response/notification
143          * is not a direct response to a command sent by the driver.  For
144          * example, uCode issues REPLY_RX when it sends a received frame
145          * to the driver; it is not a direct response to any driver command.
146          *
147          * The Linux driver uses the following format:
148          *
149          *  0:7         tfd index - position within TX queue
150          *  8:12        TX queue id
151          *  13:14       reserved
152          *  15          unsolicited RX or uCode-originated notification
153          */
154         __le16 sequence;
155 } __packed;
156
157 #define FH_RSCSR_FRAME_SIZE_MSK         0x00003FFF      /* bits 0-13 */
158 #define FH_RSCSR_FRAME_INVALID          0x55550000
159 #define FH_RSCSR_FRAME_ALIGN            0x40
160
161 struct iwl_rx_packet {
162         /*
163          * The first 4 bytes of the RX frame header contain both the RX frame
164          * size and some flags.
165          * Bit fields:
166          * 31:    flag flush RB request
167          * 30:    flag ignore TC (terminal counter) request
168          * 29:    flag fast IRQ request
169          * 28-14: Reserved
170          * 13-00: RX frame size
171          */
172         __le32 len_n_flags;
173         struct iwl_cmd_header hdr;
174         u8 data[];
175 } __packed;
176
177 static inline u32 iwl_rx_packet_len(const struct iwl_rx_packet *pkt)
178 {
179         return le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
180 }
181
182 static inline u32 iwl_rx_packet_payload_len(const struct iwl_rx_packet *pkt)
183 {
184         return iwl_rx_packet_len(pkt) - sizeof(pkt->hdr);
185 }
186
187 /**
188  * enum CMD_MODE - how to send the host commands ?
189  *
190  * @CMD_ASYNC: Return right away and don't wait for the response
191  * @CMD_WANT_SKB: Not valid with CMD_ASYNC. The caller needs the buffer of
192  *      the response. The caller needs to call iwl_free_resp when done.
193  * @CMD_HIGH_PRIO: The command is high priority - it goes to the front of the
194  *      command queue, but after other high priority commands. Valid only
195  *      with CMD_ASYNC.
196  * @CMD_SEND_IN_IDLE: The command should be sent even when the trans is idle.
197  * @CMD_MAKE_TRANS_IDLE: The command response should mark the trans as idle.
198  * @CMD_WAKE_UP_TRANS: The command response should wake up the trans
199  *      (i.e. mark it as non-idle).
200  */
201 enum CMD_MODE {
202         CMD_ASYNC               = BIT(0),
203         CMD_WANT_SKB            = BIT(1),
204         CMD_SEND_IN_RFKILL      = BIT(2),
205         CMD_HIGH_PRIO           = BIT(3),
206         CMD_SEND_IN_IDLE        = BIT(4),
207         CMD_MAKE_TRANS_IDLE     = BIT(5),
208         CMD_WAKE_UP_TRANS       = BIT(6),
209 };
210
211 #define DEF_CMD_PAYLOAD_SIZE 320
212
213 /**
214  * struct iwl_device_cmd
215  *
216  * For allocation of the command and tx queues, this establishes the overall
217  * size of the largest command we send to uCode, except for commands that
218  * aren't fully copied and use other TFD space.
219  */
220 struct iwl_device_cmd {
221         struct iwl_cmd_header hdr;      /* uCode API */
222         u8 payload[DEF_CMD_PAYLOAD_SIZE];
223 } __packed;
224
225 #define TFD_MAX_PAYLOAD_SIZE (sizeof(struct iwl_device_cmd))
226
227 /*
228  * number of transfer buffers (fragments) per transmit frame descriptor;
229  * this is just the driver's idea, the hardware supports 20
230  */
231 #define IWL_MAX_CMD_TBS_PER_TFD 2
232
233 /**
234  * struct iwl_hcmd_dataflag - flag for each one of the chunks of the command
235  *
236  * @IWL_HCMD_DFL_NOCOPY: By default, the command is copied to the host command's
237  *      ring. The transport layer doesn't map the command's buffer to DMA, but
238  *      rather copies it to a previously allocated DMA buffer. This flag tells
239  *      the transport layer not to copy the command, but to map the existing
240  *      buffer (that is passed in) instead. This saves the memcpy and allows
241  *      commands that are bigger than the fixed buffer to be submitted.
242  *      Note that a TFD entry after a NOCOPY one cannot be a normal copied one.
243  * @IWL_HCMD_DFL_DUP: Only valid without NOCOPY, duplicate the memory for this
244  *      chunk internally and free it again after the command completes. This
245  *      can (currently) be used only once per command.
246  *      Note that a TFD entry after a DUP one cannot be a normal copied one.
247  */
248 enum iwl_hcmd_dataflag {
249         IWL_HCMD_DFL_NOCOPY     = BIT(0),
250         IWL_HCMD_DFL_DUP        = BIT(1),
251 };
252
253 /**
254  * struct iwl_host_cmd - Host command to the uCode
255  *
256  * @data: array of chunks that composes the data of the host command
257  * @resp_pkt: response packet, if %CMD_WANT_SKB was set
258  * @_rx_page_order: (internally used to free response packet)
259  * @_rx_page_addr: (internally used to free response packet)
260  * @flags: can be CMD_*
261  * @len: array of the lengths of the chunks in data
262  * @dataflags: IWL_HCMD_DFL_*
263  * @id: id of the host command
264  */
265 struct iwl_host_cmd {
266         const void *data[IWL_MAX_CMD_TBS_PER_TFD];
267         struct iwl_rx_packet *resp_pkt;
268         unsigned long _rx_page_addr;
269         u32 _rx_page_order;
270
271         u32 flags;
272         u16 len[IWL_MAX_CMD_TBS_PER_TFD];
273         u8 dataflags[IWL_MAX_CMD_TBS_PER_TFD];
274         u8 id;
275 };
276
277 static inline void iwl_free_resp(struct iwl_host_cmd *cmd)
278 {
279         free_pages(cmd->_rx_page_addr, cmd->_rx_page_order);
280 }
281
282 struct iwl_rx_cmd_buffer {
283         struct page *_page;
284         int _offset;
285         bool _page_stolen;
286         u32 _rx_page_order;
287         unsigned int truesize;
288 };
289
290 static inline void *rxb_addr(struct iwl_rx_cmd_buffer *r)
291 {
292         return (void *)((unsigned long)page_address(r->_page) + r->_offset);
293 }
294
295 static inline int rxb_offset(struct iwl_rx_cmd_buffer *r)
296 {
297         return r->_offset;
298 }
299
300 static inline struct page *rxb_steal_page(struct iwl_rx_cmd_buffer *r)
301 {
302         r->_page_stolen = true;
303         get_page(r->_page);
304         return r->_page;
305 }
306
307 static inline void iwl_free_rxb(struct iwl_rx_cmd_buffer *r)
308 {
309         __free_pages(r->_page, r->_rx_page_order);
310 }
311
312 #define MAX_NO_RECLAIM_CMDS     6
313
314 #define IWL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
315
316 /*
317  * Maximum number of HW queues the transport layer
318  * currently supports
319  */
320 #define IWL_MAX_HW_QUEUES               32
321 #define IWL_MAX_TID_COUNT       8
322 #define IWL_FRAME_LIMIT 64
323
324 /**
325  * enum iwl_wowlan_status - WoWLAN image/device status
326  * @IWL_D3_STATUS_ALIVE: firmware is still running after resume
327  * @IWL_D3_STATUS_RESET: device was reset while suspended
328  */
329 enum iwl_d3_status {
330         IWL_D3_STATUS_ALIVE,
331         IWL_D3_STATUS_RESET,
332 };
333
334 /**
335  * enum iwl_trans_status: transport status flags
336  * @STATUS_SYNC_HCMD_ACTIVE: a SYNC command is being processed
337  * @STATUS_DEVICE_ENABLED: APM is enabled
338  * @STATUS_TPOWER_PMI: the device might be asleep (need to wake it up)
339  * @STATUS_INT_ENABLED: interrupts are enabled
340  * @STATUS_RFKILL: the HW RFkill switch is in KILL position
341  * @STATUS_FW_ERROR: the fw is in error state
342  * @STATUS_TRANS_GOING_IDLE: shutting down the trans, only special commands
343  *      are sent
344  * @STATUS_TRANS_IDLE: the trans is idle - general commands are not to be sent
345  */
346 enum iwl_trans_status {
347         STATUS_SYNC_HCMD_ACTIVE,
348         STATUS_DEVICE_ENABLED,
349         STATUS_TPOWER_PMI,
350         STATUS_INT_ENABLED,
351         STATUS_RFKILL,
352         STATUS_FW_ERROR,
353         STATUS_TRANS_GOING_IDLE,
354         STATUS_TRANS_IDLE,
355 };
356
357 /**
358  * struct iwl_trans_config - transport configuration
359  *
360  * @op_mode: pointer to the upper layer.
361  * @cmd_queue: the index of the command queue.
362  *      Must be set before start_fw.
363  * @cmd_fifo: the fifo for host commands
364  * @cmd_q_wdg_timeout: the timeout of the watchdog timer for the command queue.
365  * @no_reclaim_cmds: Some devices erroneously don't set the
366  *      SEQ_RX_FRAME bit on some notifications, this is the
367  *      list of such notifications to filter. Max length is
368  *      %MAX_NO_RECLAIM_CMDS.
369  * @n_no_reclaim_cmds: # of commands in list
370  * @rx_buf_size_8k: 8 kB RX buffer size needed for A-MSDUs,
371  *      if unset 4k will be the RX buffer size
372  * @bc_table_dword: set to true if the BC table expects the byte count to be
373  *      in DWORD (as opposed to bytes)
374  * @scd_set_active: should the transport configure the SCD for HCMD queue
375  * @command_names: array of command names, must be 256 entries
376  *      (one for each command); for debugging only
377  * @sdio_adma_addr: the default address to set for the ADMA in SDIO mode until
378  *      we get the ALIVE from the uCode
379  */
380 struct iwl_trans_config {
381         struct iwl_op_mode *op_mode;
382
383         u8 cmd_queue;
384         u8 cmd_fifo;
385         unsigned int cmd_q_wdg_timeout;
386         const u8 *no_reclaim_cmds;
387         unsigned int n_no_reclaim_cmds;
388
389         bool rx_buf_size_8k;
390         bool bc_table_dword;
391         bool scd_set_active;
392         const char *const *command_names;
393
394         u32 sdio_adma_addr;
395 };
396
397 struct iwl_trans_dump_data {
398         u32 len;
399         u8 data[];
400 };
401
402 struct iwl_trans;
403
404 struct iwl_trans_txq_scd_cfg {
405         u8 fifo;
406         s8 sta_id;
407         u8 tid;
408         bool aggregate;
409         int frame_limit;
410 };
411
412 /**
413  * struct iwl_trans_ops - transport specific operations
414  *
415  * All the handlers MUST be implemented
416  *
417  * @start_hw: starts the HW. If low_power is true, the NIC needs to be taken
418  *      out of a low power state. From that point on, the HW can send
419  *      interrupts. May sleep.
420  * @op_mode_leave: Turn off the HW RF kill indication if on
421  *      May sleep
422  * @start_fw: allocates and inits all the resources for the transport
423  *      layer. Also kick a fw image.
424  *      May sleep
425  * @fw_alive: called when the fw sends alive notification. If the fw provides
426  *      the SCD base address in SRAM, then provide it here, or 0 otherwise.
427  *      May sleep
428  * @stop_device: stops the whole device (embedded CPU put to reset) and stops
429  *      the HW. If low_power is true, the NIC will be put in low power state.
430  *      From that point on, the HW will be stopped but will still issue an
431  *      interrupt if the HW RF kill switch is triggered.
432  *      This callback must do the right thing and not crash even if %start_hw()
433  *      was called but not &start_fw(). May sleep.
434  * @d3_suspend: put the device into the correct mode for WoWLAN during
435  *      suspend. This is optional, if not implemented WoWLAN will not be
436  *      supported. This callback may sleep.
437  * @d3_resume: resume the device after WoWLAN, enabling the opmode to
438  *      talk to the WoWLAN image to get its status. This is optional, if not
439  *      implemented WoWLAN will not be supported. This callback may sleep.
440  * @send_cmd:send a host command. Must return -ERFKILL if RFkill is asserted.
441  *      If RFkill is asserted in the middle of a SYNC host command, it must
442  *      return -ERFKILL straight away.
443  *      May sleep only if CMD_ASYNC is not set
444  * @tx: send an skb
445  *      Must be atomic
446  * @reclaim: free packet until ssn. Returns a list of freed packets.
447  *      Must be atomic
448  * @txq_enable: setup a queue. To setup an AC queue, use the
449  *      iwl_trans_ac_txq_enable wrapper. fw_alive must have been called before
450  *      this one. The op_mode must not configure the HCMD queue. The scheduler
451  *      configuration may be %NULL, in which case the hardware will not be
452  *      configured. May sleep.
453  * @txq_disable: de-configure a Tx queue to send AMPDUs
454  *      Must be atomic
455  * @wait_tx_queue_empty: wait until tx queues are empty. May sleep.
456  * @freeze_txq_timer: prevents the timer of the queue from firing until the
457  *      queue is set to awake. Must be atomic.
458  * @dbgfs_register: add the dbgfs files under this directory. Files will be
459  *      automatically deleted.
460  * @write8: write a u8 to a register at offset ofs from the BAR
461  * @write32: write a u32 to a register at offset ofs from the BAR
462  * @read32: read a u32 register at offset ofs from the BAR
463  * @read_prph: read a DWORD from a periphery register
464  * @write_prph: write a DWORD to a periphery register
465  * @read_mem: read device's SRAM in DWORD
466  * @write_mem: write device's SRAM in DWORD. If %buf is %NULL, then the memory
467  *      will be zeroed.
468  * @configure: configure parameters required by the transport layer from
469  *      the op_mode. May be called several times before start_fw, can't be
470  *      called after that.
471  * @set_pmi: set the power pmi state
472  * @grab_nic_access: wake the NIC to be able to access non-HBUS regs.
473  *      Sleeping is not allowed between grab_nic_access and
474  *      release_nic_access.
475  * @release_nic_access: let the NIC go to sleep. The "flags" parameter
476  *      must be the same one that was sent before to the grab_nic_access.
477  * @set_bits_mask - set SRAM register according to value and mask.
478  * @ref: grab a reference to the transport/FW layers, disallowing
479  *      certain low power states
480  * @unref: release a reference previously taken with @ref. Note that
481  *      initially the reference count is 1, making an initial @unref
482  *      necessary to allow low power states.
483  * @dump_data: return a vmalloc'ed buffer with debug data, maybe containing last
484  *      TX'ed commands and similar. The buffer will be vfree'd by the caller.
485  *      Note that the transport must fill in the proper file headers.
486  */
487 struct iwl_trans_ops {
488
489         int (*start_hw)(struct iwl_trans *iwl_trans, bool low_power);
490         void (*op_mode_leave)(struct iwl_trans *iwl_trans);
491         int (*start_fw)(struct iwl_trans *trans, const struct fw_img *fw,
492                         bool run_in_rfkill);
493         int (*update_sf)(struct iwl_trans *trans,
494                          struct iwl_sf_region *st_fwrd_space);
495         void (*fw_alive)(struct iwl_trans *trans, u32 scd_addr);
496         void (*stop_device)(struct iwl_trans *trans, bool low_power);
497
498         void (*d3_suspend)(struct iwl_trans *trans, bool test);
499         int (*d3_resume)(struct iwl_trans *trans, enum iwl_d3_status *status,
500                          bool test);
501
502         int (*send_cmd)(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
503
504         int (*tx)(struct iwl_trans *trans, struct sk_buff *skb,
505                   struct iwl_device_cmd *dev_cmd, int queue);
506         void (*reclaim)(struct iwl_trans *trans, int queue, int ssn,
507                         struct sk_buff_head *skbs);
508
509         void (*txq_enable)(struct iwl_trans *trans, int queue, u16 ssn,
510                            const struct iwl_trans_txq_scd_cfg *cfg,
511                            unsigned int queue_wdg_timeout);
512         void (*txq_disable)(struct iwl_trans *trans, int queue,
513                             bool configure_scd);
514
515         int (*dbgfs_register)(struct iwl_trans *trans, struct dentry* dir);
516         int (*wait_tx_queue_empty)(struct iwl_trans *trans, u32 txq_bm);
517         void (*freeze_txq_timer)(struct iwl_trans *trans, unsigned long txqs,
518                                  bool freeze);
519
520         void (*write8)(struct iwl_trans *trans, u32 ofs, u8 val);
521         void (*write32)(struct iwl_trans *trans, u32 ofs, u32 val);
522         u32 (*read32)(struct iwl_trans *trans, u32 ofs);
523         u32 (*read_prph)(struct iwl_trans *trans, u32 ofs);
524         void (*write_prph)(struct iwl_trans *trans, u32 ofs, u32 val);
525         int (*read_mem)(struct iwl_trans *trans, u32 addr,
526                         void *buf, int dwords);
527         int (*write_mem)(struct iwl_trans *trans, u32 addr,
528                          const void *buf, int dwords);
529         void (*configure)(struct iwl_trans *trans,
530                           const struct iwl_trans_config *trans_cfg);
531         void (*set_pmi)(struct iwl_trans *trans, bool state);
532         bool (*grab_nic_access)(struct iwl_trans *trans, bool silent,
533                                 unsigned long *flags);
534         void (*release_nic_access)(struct iwl_trans *trans,
535                                    unsigned long *flags);
536         void (*set_bits_mask)(struct iwl_trans *trans, u32 reg, u32 mask,
537                               u32 value);
538         void (*ref)(struct iwl_trans *trans);
539         void (*unref)(struct iwl_trans *trans);
540         void (*suspend)(struct iwl_trans *trans);
541         void (*resume)(struct iwl_trans *trans);
542
543         struct iwl_trans_dump_data *(*dump_data)(struct iwl_trans *trans);
544 };
545
546 /**
547  * enum iwl_trans_state - state of the transport layer
548  *
549  * @IWL_TRANS_NO_FW: no fw has sent an alive response
550  * @IWL_TRANS_FW_ALIVE: a fw has sent an alive response
551  */
552 enum iwl_trans_state {
553         IWL_TRANS_NO_FW = 0,
554         IWL_TRANS_FW_ALIVE      = 1,
555 };
556
557 /**
558  * enum iwl_d0i3_mode - d0i3 mode
559  *
560  * @IWL_D0I3_MODE_OFF - d0i3 is disabled
561  * @IWL_D0I3_MODE_ON_IDLE - enter d0i3 when device is idle
562  *      (e.g. no active references)
563  * @IWL_D0I3_MODE_ON_SUSPEND - enter d0i3 only on suspend
564  *      (in case of 'any' trigger)
565  */
566 enum iwl_d0i3_mode {
567         IWL_D0I3_MODE_OFF = 0,
568         IWL_D0I3_MODE_ON_IDLE,
569         IWL_D0I3_MODE_ON_SUSPEND,
570 };
571
572 /**
573  * struct iwl_trans - transport common data
574  *
575  * @ops - pointer to iwl_trans_ops
576  * @op_mode - pointer to the op_mode
577  * @cfg - pointer to the configuration
578  * @status: a bit-mask of transport status flags
579  * @dev - pointer to struct device * that represents the device
580  * @hw_id: a u32 with the ID of the device / sub-device.
581  *      Set during transport allocation.
582  * @hw_id_str: a string with info about HW ID. Set during transport allocation.
583  * @pm_support: set to true in start_hw if link pm is supported
584  * @ltr_enabled: set to true if the LTR is enabled
585  * @dev_cmd_pool: pool for Tx cmd allocation - for internal use only.
586  *      The user should use iwl_trans_{alloc,free}_tx_cmd.
587  * @dev_cmd_headroom: room needed for the transport's private use before the
588  *      device_cmd for Tx - for internal use only
589  *      The user should use iwl_trans_{alloc,free}_tx_cmd.
590  * @rx_mpdu_cmd: MPDU RX command ID, must be assigned by opmode before
591  *      starting the firmware, used for tracing
592  * @rx_mpdu_cmd_hdr_size: used for tracing, amount of data before the
593  *      start of the 802.11 header in the @rx_mpdu_cmd
594  * @dflt_pwr_limit: default power limit fetched from the platform (ACPI)
595  * @dbg_dest_tlv: points to the destination TLV for debug
596  * @dbg_conf_tlv: array of pointers to configuration TLVs for debug
597  * @dbg_trigger_tlv: array of pointers to triggers TLVs for debug
598  * @dbg_dest_reg_num: num of reg_ops in %dbg_dest_tlv
599  */
600 struct iwl_trans {
601         const struct iwl_trans_ops *ops;
602         struct iwl_op_mode *op_mode;
603         const struct iwl_cfg *cfg;
604         enum iwl_trans_state state;
605         unsigned long status;
606
607         struct device *dev;
608         u32 hw_rev;
609         u32 hw_id;
610         char hw_id_str[52];
611
612         u8 rx_mpdu_cmd, rx_mpdu_cmd_hdr_size;
613
614         bool pm_support;
615         bool ltr_enabled;
616
617         /* The following fields are internal only */
618         struct kmem_cache *dev_cmd_pool;
619         size_t dev_cmd_headroom;
620         char dev_cmd_pool_name[50];
621
622         struct dentry *dbgfs_dir;
623
624 #ifdef CONFIG_LOCKDEP
625         struct lockdep_map sync_cmd_lockdep_map;
626 #endif
627
628         u64 dflt_pwr_limit;
629
630         const struct iwl_fw_dbg_dest_tlv *dbg_dest_tlv;
631         const struct iwl_fw_dbg_conf_tlv *dbg_conf_tlv[FW_DBG_CONF_MAX];
632         struct iwl_fw_dbg_trigger_tlv * const *dbg_trigger_tlv;
633         u8 dbg_dest_reg_num;
634
635         enum iwl_d0i3_mode d0i3_mode;
636
637         bool wowlan_d0i3;
638
639         /* pointer to trans specific struct */
640         /*Ensure that this pointer will always be aligned to sizeof pointer */
641         char trans_specific[0] __aligned(sizeof(void *));
642 };
643
644 static inline void iwl_trans_configure(struct iwl_trans *trans,
645                                        const struct iwl_trans_config *trans_cfg)
646 {
647         trans->op_mode = trans_cfg->op_mode;
648
649         trans->ops->configure(trans, trans_cfg);
650 }
651
652 static inline int _iwl_trans_start_hw(struct iwl_trans *trans, bool low_power)
653 {
654         might_sleep();
655
656         return trans->ops->start_hw(trans, low_power);
657 }
658
659 static inline int iwl_trans_start_hw(struct iwl_trans *trans)
660 {
661         return trans->ops->start_hw(trans, true);
662 }
663
664 static inline void iwl_trans_op_mode_leave(struct iwl_trans *trans)
665 {
666         might_sleep();
667
668         if (trans->ops->op_mode_leave)
669                 trans->ops->op_mode_leave(trans);
670
671         trans->op_mode = NULL;
672
673         trans->state = IWL_TRANS_NO_FW;
674 }
675
676 static inline void iwl_trans_fw_alive(struct iwl_trans *trans, u32 scd_addr)
677 {
678         might_sleep();
679
680         trans->state = IWL_TRANS_FW_ALIVE;
681
682         trans->ops->fw_alive(trans, scd_addr);
683 }
684
685 static inline int iwl_trans_start_fw(struct iwl_trans *trans,
686                                      const struct fw_img *fw,
687                                      bool run_in_rfkill)
688 {
689         might_sleep();
690
691         WARN_ON_ONCE(!trans->rx_mpdu_cmd);
692
693         clear_bit(STATUS_FW_ERROR, &trans->status);
694         return trans->ops->start_fw(trans, fw, run_in_rfkill);
695 }
696
697 static inline int iwl_trans_update_sf(struct iwl_trans *trans,
698                                       struct iwl_sf_region *st_fwrd_space)
699 {
700         might_sleep();
701
702         if (trans->ops->update_sf)
703                 return trans->ops->update_sf(trans, st_fwrd_space);
704
705         return 0;
706 }
707
708 static inline void _iwl_trans_stop_device(struct iwl_trans *trans,
709                                           bool low_power)
710 {
711         might_sleep();
712
713         trans->ops->stop_device(trans, low_power);
714
715         trans->state = IWL_TRANS_NO_FW;
716 }
717
718 static inline void iwl_trans_stop_device(struct iwl_trans *trans)
719 {
720         _iwl_trans_stop_device(trans, true);
721 }
722
723 static inline void iwl_trans_d3_suspend(struct iwl_trans *trans, bool test)
724 {
725         might_sleep();
726         trans->ops->d3_suspend(trans, test);
727 }
728
729 static inline int iwl_trans_d3_resume(struct iwl_trans *trans,
730                                       enum iwl_d3_status *status,
731                                       bool test)
732 {
733         might_sleep();
734         return trans->ops->d3_resume(trans, status, test);
735 }
736
737 static inline void iwl_trans_ref(struct iwl_trans *trans)
738 {
739         if (trans->ops->ref)
740                 trans->ops->ref(trans);
741 }
742
743 static inline void iwl_trans_unref(struct iwl_trans *trans)
744 {
745         if (trans->ops->unref)
746                 trans->ops->unref(trans);
747 }
748
749 static inline void iwl_trans_suspend(struct iwl_trans *trans)
750 {
751         if (trans->ops->suspend)
752                 trans->ops->suspend(trans);
753 }
754
755 static inline void iwl_trans_resume(struct iwl_trans *trans)
756 {
757         if (trans->ops->resume)
758                 trans->ops->resume(trans);
759 }
760
761 static inline struct iwl_trans_dump_data *
762 iwl_trans_dump_data(struct iwl_trans *trans)
763 {
764         if (!trans->ops->dump_data)
765                 return NULL;
766         return trans->ops->dump_data(trans);
767 }
768
769 static inline int iwl_trans_send_cmd(struct iwl_trans *trans,
770                                      struct iwl_host_cmd *cmd)
771 {
772         int ret;
773
774         if (unlikely(!(cmd->flags & CMD_SEND_IN_RFKILL) &&
775                      test_bit(STATUS_RFKILL, &trans->status)))
776                 return -ERFKILL;
777
778         if (unlikely(test_bit(STATUS_FW_ERROR, &trans->status)))
779                 return -EIO;
780
781         if (unlikely(trans->state != IWL_TRANS_FW_ALIVE)) {
782                 IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
783                 return -EIO;
784         }
785
786         if (!(cmd->flags & CMD_ASYNC))
787                 lock_map_acquire_read(&trans->sync_cmd_lockdep_map);
788
789         ret = trans->ops->send_cmd(trans, cmd);
790
791         if (!(cmd->flags & CMD_ASYNC))
792                 lock_map_release(&trans->sync_cmd_lockdep_map);
793
794         return ret;
795 }
796
797 static inline struct iwl_device_cmd *
798 iwl_trans_alloc_tx_cmd(struct iwl_trans *trans)
799 {
800         u8 *dev_cmd_ptr = kmem_cache_alloc(trans->dev_cmd_pool, GFP_ATOMIC);
801
802         if (unlikely(dev_cmd_ptr == NULL))
803                 return NULL;
804
805         return (struct iwl_device_cmd *)
806                         (dev_cmd_ptr + trans->dev_cmd_headroom);
807 }
808
809 static inline void iwl_trans_free_tx_cmd(struct iwl_trans *trans,
810                                          struct iwl_device_cmd *dev_cmd)
811 {
812         u8 *dev_cmd_ptr = (u8 *)dev_cmd - trans->dev_cmd_headroom;
813
814         kmem_cache_free(trans->dev_cmd_pool, dev_cmd_ptr);
815 }
816
817 static inline int iwl_trans_tx(struct iwl_trans *trans, struct sk_buff *skb,
818                                struct iwl_device_cmd *dev_cmd, int queue)
819 {
820         if (unlikely(test_bit(STATUS_FW_ERROR, &trans->status)))
821                 return -EIO;
822
823         if (unlikely(trans->state != IWL_TRANS_FW_ALIVE))
824                 IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
825
826         return trans->ops->tx(trans, skb, dev_cmd, queue);
827 }
828
829 static inline void iwl_trans_reclaim(struct iwl_trans *trans, int queue,
830                                      int ssn, struct sk_buff_head *skbs)
831 {
832         if (unlikely(trans->state != IWL_TRANS_FW_ALIVE))
833                 IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
834
835         trans->ops->reclaim(trans, queue, ssn, skbs);
836 }
837
838 static inline void iwl_trans_txq_disable(struct iwl_trans *trans, int queue,
839                                          bool configure_scd)
840 {
841         trans->ops->txq_disable(trans, queue, configure_scd);
842 }
843
844 static inline void
845 iwl_trans_txq_enable_cfg(struct iwl_trans *trans, int queue, u16 ssn,
846                          const struct iwl_trans_txq_scd_cfg *cfg,
847                          unsigned int queue_wdg_timeout)
848 {
849         might_sleep();
850
851         if (unlikely((trans->state != IWL_TRANS_FW_ALIVE)))
852                 IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
853
854         trans->ops->txq_enable(trans, queue, ssn, cfg, queue_wdg_timeout);
855 }
856
857 static inline void iwl_trans_txq_enable(struct iwl_trans *trans, int queue,
858                                         int fifo, int sta_id, int tid,
859                                         int frame_limit, u16 ssn,
860                                         unsigned int queue_wdg_timeout)
861 {
862         struct iwl_trans_txq_scd_cfg cfg = {
863                 .fifo = fifo,
864                 .sta_id = sta_id,
865                 .tid = tid,
866                 .frame_limit = frame_limit,
867                 .aggregate = sta_id >= 0,
868         };
869
870         iwl_trans_txq_enable_cfg(trans, queue, ssn, &cfg, queue_wdg_timeout);
871 }
872
873 static inline
874 void iwl_trans_ac_txq_enable(struct iwl_trans *trans, int queue, int fifo,
875                              unsigned int queue_wdg_timeout)
876 {
877         struct iwl_trans_txq_scd_cfg cfg = {
878                 .fifo = fifo,
879                 .sta_id = -1,
880                 .tid = IWL_MAX_TID_COUNT,
881                 .frame_limit = IWL_FRAME_LIMIT,
882                 .aggregate = false,
883         };
884
885         iwl_trans_txq_enable_cfg(trans, queue, 0, &cfg, queue_wdg_timeout);
886 }
887
888 static inline void iwl_trans_freeze_txq_timer(struct iwl_trans *trans,
889                                               unsigned long txqs,
890                                               bool freeze)
891 {
892         if (unlikely(trans->state != IWL_TRANS_FW_ALIVE))
893                 IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
894
895         if (trans->ops->freeze_txq_timer)
896                 trans->ops->freeze_txq_timer(trans, txqs, freeze);
897 }
898
899 static inline int iwl_trans_wait_tx_queue_empty(struct iwl_trans *trans,
900                                                 u32 txqs)
901 {
902         if (unlikely(trans->state != IWL_TRANS_FW_ALIVE))
903                 IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state);
904
905         return trans->ops->wait_tx_queue_empty(trans, txqs);
906 }
907
908 static inline int iwl_trans_dbgfs_register(struct iwl_trans *trans,
909                                            struct dentry *dir)
910 {
911         return trans->ops->dbgfs_register(trans, dir);
912 }
913
914 static inline void iwl_trans_write8(struct iwl_trans *trans, u32 ofs, u8 val)
915 {
916         trans->ops->write8(trans, ofs, val);
917 }
918
919 static inline void iwl_trans_write32(struct iwl_trans *trans, u32 ofs, u32 val)
920 {
921         trans->ops->write32(trans, ofs, val);
922 }
923
924 static inline u32 iwl_trans_read32(struct iwl_trans *trans, u32 ofs)
925 {
926         return trans->ops->read32(trans, ofs);
927 }
928
929 static inline u32 iwl_trans_read_prph(struct iwl_trans *trans, u32 ofs)
930 {
931         return trans->ops->read_prph(trans, ofs);
932 }
933
934 static inline void iwl_trans_write_prph(struct iwl_trans *trans, u32 ofs,
935                                         u32 val)
936 {
937         return trans->ops->write_prph(trans, ofs, val);
938 }
939
940 static inline int iwl_trans_read_mem(struct iwl_trans *trans, u32 addr,
941                                      void *buf, int dwords)
942 {
943         return trans->ops->read_mem(trans, addr, buf, dwords);
944 }
945
946 #define iwl_trans_read_mem_bytes(trans, addr, buf, bufsize)                   \
947         do {                                                                  \
948                 if (__builtin_constant_p(bufsize))                            \
949                         BUILD_BUG_ON((bufsize) % sizeof(u32));                \
950                 iwl_trans_read_mem(trans, addr, buf, (bufsize) / sizeof(u32));\
951         } while (0)
952
953 static inline u32 iwl_trans_read_mem32(struct iwl_trans *trans, u32 addr)
954 {
955         u32 value;
956
957         if (WARN_ON(iwl_trans_read_mem(trans, addr, &value, 1)))
958                 return 0xa5a5a5a5;
959
960         return value;
961 }
962
963 static inline int iwl_trans_write_mem(struct iwl_trans *trans, u32 addr,
964                                       const void *buf, int dwords)
965 {
966         return trans->ops->write_mem(trans, addr, buf, dwords);
967 }
968
969 static inline u32 iwl_trans_write_mem32(struct iwl_trans *trans, u32 addr,
970                                         u32 val)
971 {
972         return iwl_trans_write_mem(trans, addr, &val, 1);
973 }
974
975 static inline void iwl_trans_set_pmi(struct iwl_trans *trans, bool state)
976 {
977         if (trans->ops->set_pmi)
978                 trans->ops->set_pmi(trans, state);
979 }
980
981 static inline void
982 iwl_trans_set_bits_mask(struct iwl_trans *trans, u32 reg, u32 mask, u32 value)
983 {
984         trans->ops->set_bits_mask(trans, reg, mask, value);
985 }
986
987 #define iwl_trans_grab_nic_access(trans, silent, flags) \
988         __cond_lock(nic_access,                         \
989                     likely((trans)->ops->grab_nic_access(trans, silent, flags)))
990
991 static inline void __releases(nic_access)
992 iwl_trans_release_nic_access(struct iwl_trans *trans, unsigned long *flags)
993 {
994         trans->ops->release_nic_access(trans, flags);
995         __release(nic_access);
996 }
997
998 static inline void iwl_trans_fw_error(struct iwl_trans *trans)
999 {
1000         if (WARN_ON_ONCE(!trans->op_mode))
1001                 return;
1002
1003         /* prevent double restarts due to the same erroneous FW */
1004         if (!test_and_set_bit(STATUS_FW_ERROR, &trans->status))
1005                 iwl_op_mode_nic_error(trans->op_mode);
1006 }
1007
1008 /*****************************************************
1009  * transport helper functions
1010  *****************************************************/
1011 struct iwl_trans *iwl_trans_alloc(unsigned int priv_size,
1012                                   struct device *dev,
1013                                   const struct iwl_cfg *cfg,
1014                                   const struct iwl_trans_ops *ops,
1015                                   size_t dev_cmd_headroom);
1016 void iwl_trans_free(struct iwl_trans *trans);
1017
1018 /*****************************************************
1019 * driver (transport) register/unregister functions
1020 ******************************************************/
1021 int __must_check iwl_pci_register_driver(void);
1022 void iwl_pci_unregister_driver(void);
1023
1024 #endif /* __iwl_trans_h__ */