iwlwifi: check RF kill register when interrupts have been disabled
[linux-2.6-block.git] / drivers / net / wireless / iwlwifi / iwl-trans.h
CommitLineData
c85eb619
EG
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 *
4e318262 8 * Copyright(c) 2007 - 2012 Intel Corporation. All rights reserved.
c85eb619
EG
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
25 * in the file called LICENSE.GPL.
26 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
4e318262 33 * Copyright(c) 2005 - 2012 Intel Corporation. All rights reserved.
c85eb619
EG
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
41c50542
EG
63#ifndef __iwl_trans_h__
64#define __iwl_trans_h__
253a634c 65
e679378d 66#include <linux/ieee80211.h>
930dfd5f 67#include <linux/mm.h> /* for page_address */
a72b8b08 68
69655ebf 69#include "iwl-debug.h"
87e5666c 70
60396183
EG
71/**
72 * DOC: Transport layer - what is it ?
73 *
74 * The tranport layer is the layer that deals with the HW directly. It provides
75 * an abstraction of the underlying HW to the upper layer. The transport layer
76 * doesn't provide any policy, algorithm or anything of this kind, but only
77 * mechanisms to make the HW do something.It is not completely stateless but
78 * close to it.
79 * We will have an implementation for each different supported bus.
80 */
81
82/**
83 * DOC: Life cycle of the transport layer
84 *
85 * The transport layer has a very precise life cycle.
86 *
87 * 1) A helper function is called during the module initialization and
88 * registers the bus driver's ops with the transport's alloc function.
89 * 2) Bus's probe calls to the transport layer's allocation functions.
90 * Of course this function is bus specific.
91 * 3) This allocation functions will spawn the upper layer which will
92 * register mac80211.
93 *
94 * 4) At some point (i.e. mac80211's start call), the op_mode will call
95 * the following sequence:
96 * start_hw
97 * start_fw
98 *
99 * 5) Then when finished (or reset):
100 * stop_fw (a.k.a. stop device for the moment)
101 * stop_hw
102 *
103 * 6) Eventually, the free function will be called.
104 */
105
41c50542 106struct iwl_priv;
e6bb4c9c 107struct iwl_shared;
ed277c93 108struct iwl_op_mode;
e679378d
EG
109struct fw_img;
110struct sk_buff;
111struct dentry;
522376d2 112
60396183
EG
113/**
114 * DOC: Host command section
115 *
116 * A host command is a commaned issued by the upper layer to the fw. There are
117 * several versions of fw that have several APIs. The transport layer is
118 * completely agnostic to these differences.
119 * The transport does provide helper functionnality (i.e. SYNC / ASYNC mode),
120 */
522376d2
EG
121#define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
122#define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
123#define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
f8d7c1a1
JB
124#define SEQ_TO_QUEUE(s) (((s) >> 8) & 0x1f)
125#define QUEUE_TO_SEQ(q) (((q) & 0x1f) << 8)
126#define SEQ_TO_INDEX(s) ((s) & 0xff)
127#define INDEX_TO_SEQ(i) ((i) & 0xff)
128#define SEQ_RX_FRAME cpu_to_le16(0x8000)
129
130/**
131 * struct iwl_cmd_header
132 *
133 * This header format appears in the beginning of each command sent from the
134 * driver, and each response/notification received from uCode.
135 */
136struct iwl_cmd_header {
137 u8 cmd; /* Command ID: REPLY_RXON, etc. */
138 u8 flags; /* 0:5 reserved, 6 abort, 7 internal */
139 /*
140 * The driver sets up the sequence number to values of its choosing.
141 * uCode does not use this value, but passes it back to the driver
142 * when sending the response to each driver-originated command, so
143 * the driver can match the response to the command. Since the values
144 * don't get used by uCode, the driver may set up an arbitrary format.
145 *
146 * There is one exception: uCode sets bit 15 when it originates
147 * the response/notification, i.e. when the response/notification
148 * is not a direct response to a command sent by the driver. For
149 * example, uCode issues REPLY_RX when it sends a received frame
150 * to the driver; it is not a direct response to any driver command.
151 *
152 * The Linux driver uses the following format:
153 *
154 * 0:7 tfd index - position within TX queue
155 * 8:12 TX queue id
156 * 13:14 reserved
157 * 15 unsolicited RX or uCode-originated notification
158 */
159 __le16 sequence;
160} __packed;
161
162
163#define FH_RSCSR_FRAME_SIZE_MSK 0x00003FFF /* bits 0-13 */
0c19744c
JB
164#define FH_RSCSR_FRAME_INVALID 0x55550000
165#define FH_RSCSR_FRAME_ALIGN 0x40
f8d7c1a1
JB
166
167struct iwl_rx_packet {
168 /*
169 * The first 4 bytes of the RX frame header contain both the RX frame
170 * size and some flags.
171 * Bit fields:
172 * 31: flag flush RB request
173 * 30: flag ignore TC (terminal counter) request
174 * 29: flag fast IRQ request
175 * 28-14: Reserved
176 * 13-00: RX frame size
177 */
178 __le32 len_n_flags;
179 struct iwl_cmd_header hdr;
180 u8 data[];
181} __packed;
522376d2 182
60396183
EG
183/**
184 * enum CMD_MODE - how to send the host commands ?
185 *
186 * @CMD_SYNC: The caller will be stalled until the fw responds to the command
187 * @CMD_ASYNC: Return right away and don't want for the response
188 * @CMD_WANT_SKB: valid only with CMD_SYNC. The caller needs the buffer of the
189 * response.
190 * @CMD_ON_DEMAND: This command is sent by the test mode pipe.
191 */
192enum CMD_MODE {
522376d2
EG
193 CMD_SYNC = 0,
194 CMD_ASYNC = BIT(0),
195 CMD_WANT_SKB = BIT(1),
196 CMD_ON_DEMAND = BIT(2),
197};
198
199#define DEF_CMD_PAYLOAD_SIZE 320
200
201/**
202 * struct iwl_device_cmd
203 *
204 * For allocation of the command and tx queues, this establishes the overall
205 * size of the largest command we send to uCode, except for commands that
206 * aren't fully copied and use other TFD space.
207 */
208struct iwl_device_cmd {
209 struct iwl_cmd_header hdr; /* uCode API */
132f98c2 210 u8 payload[DEF_CMD_PAYLOAD_SIZE];
522376d2
EG
211} __packed;
212
213#define TFD_MAX_PAYLOAD_SIZE (sizeof(struct iwl_device_cmd))
214
215#define IWL_MAX_CMD_TFDS 2
216
60396183
EG
217/**
218 * struct iwl_hcmd_dataflag - flag for each one of the chunks of the command
219 *
220 * IWL_HCMD_DFL_NOCOPY: By default, the command is copied to the host command's
221 * ring. The transport layer doesn't map the command's buffer to DMA, but
222 * rather copies it to an previously allocated DMA buffer. This flag tells
223 * the transport layer not to copy the command, but to map the existing
224 * buffer. This can save memcpy and is worth with very big comamnds.
225 */
522376d2
EG
226enum iwl_hcmd_dataflag {
227 IWL_HCMD_DFL_NOCOPY = BIT(0),
228};
229
230/**
231 * struct iwl_host_cmd - Host command to the uCode
60396183 232 *
522376d2 233 * @data: array of chunks that composes the data of the host command
65b94a4a
JB
234 * @resp_pkt: response packet, if %CMD_WANT_SKB was set
235 * @_rx_page_order: (internally used to free response packet)
236 * @_rx_page_addr: (internally used to free response packet)
247c61d6
EG
237 * @handler_status: return value of the handler of the command
238 * (put in setup_rx_handlers) - valid for SYNC mode only
60396183 239 * @flags: can be CMD_*
522376d2 240 * @len: array of the lenths of the chunks in data
60396183 241 * @dataflags: IWL_HCMD_DFL_*
522376d2
EG
242 * @id: id of the host command
243 */
244struct iwl_host_cmd {
245 const void *data[IWL_MAX_CMD_TFDS];
65b94a4a
JB
246 struct iwl_rx_packet *resp_pkt;
247 unsigned long _rx_page_addr;
248 u32 _rx_page_order;
247c61d6
EG
249 int handler_status;
250
522376d2
EG
251 u32 flags;
252 u16 len[IWL_MAX_CMD_TFDS];
253 u8 dataflags[IWL_MAX_CMD_TFDS];
254 u8 id;
255};
41c50542 256
65b94a4a
JB
257static inline void iwl_free_resp(struct iwl_host_cmd *cmd)
258{
259 free_pages(cmd->_rx_page_addr, cmd->_rx_page_order);
260}
261
930dfd5f
JB
262struct iwl_rx_cmd_buffer {
263 struct page *_page;
0c19744c
JB
264 int _offset;
265 bool _page_stolen;
930dfd5f
JB
266};
267
268static inline void *rxb_addr(struct iwl_rx_cmd_buffer *r)
269{
0c19744c
JB
270 return (void *)((unsigned long)page_address(r->_page) + r->_offset);
271}
272
273static inline int rxb_offset(struct iwl_rx_cmd_buffer *r)
274{
275 return r->_offset;
930dfd5f
JB
276}
277
278static inline struct page *rxb_steal_page(struct iwl_rx_cmd_buffer *r)
279{
0c19744c
JB
280 r->_page_stolen = true;
281 get_page(r->_page);
282 return r->_page;
930dfd5f
JB
283}
284
d663ee73
JB
285#define MAX_NO_RECLAIM_CMDS 6
286
9eae88fa
JB
287/*
288 * Maximum number of HW queues the transport layer
289 * currently supports
290 */
291#define IWL_MAX_HW_QUEUES 32
292
92d743ae
MV
293/**
294 * struct iwl_trans_config - transport configuration
295 *
296 * @op_mode: pointer to the upper layer.
9eae88fa
JB
297 * @queue_to_fifo: queue to FIFO mapping to set up by
298 * default
299 * @n_queue_to_fifo: number of queues to set up
c6f600fc
MV
300 * @cmd_queue: the index of the command queue.
301 * Must be set before start_fw.
d663ee73
JB
302 * @no_reclaim_cmds: Some devices erroneously don't set the
303 * SEQ_RX_FRAME bit on some notifications, this is the
304 * list of such notifications to filter. Max length is
305 * %MAX_NO_RECLAIM_CMDS.
306 * @n_no_reclaim_cmds: # of commands in list
b2cf410c
JB
307 * @rx_buf_size_8k: 8 kB RX buffer size needed for A-MSDUs,
308 * if unset 4k will be the RX buffer size
7c5ba4a8
JB
309 * @queue_watchdog_timeout: time (in ms) after which queues
310 * are considered stuck and will trigger device restart
d9fb6465
JB
311 * @command_names: array of command names, must be 256 entries
312 * (one for each command); for debugging only
92d743ae
MV
313 */
314struct iwl_trans_config {
315 struct iwl_op_mode *op_mode;
9eae88fa
JB
316 const u8 *queue_to_fifo;
317 u8 n_queue_to_fifo;
318
c6f600fc 319 u8 cmd_queue;
d663ee73
JB
320 const u8 *no_reclaim_cmds;
321 int n_no_reclaim_cmds;
b2cf410c
JB
322
323 bool rx_buf_size_8k;
7c5ba4a8 324 unsigned int queue_watchdog_timeout;
d9fb6465 325 const char **command_names;
92d743ae
MV
326};
327
87ce05a2
EG
328struct iwl_trans;
329
41c50542
EG
330/**
331 * struct iwl_trans_ops - transport specific operations
60396183
EG
332 *
333 * All the handlers MUST be implemented
334 *
57a1dc89 335 * @start_hw: starts the HW- from that point on, the HW can send interrupts
60396183 336 * May sleep
cc56feb2
EG
337 * @stop_hw: stops the HW- from that point on, the HW will be in low power but
338 * will still issue interrupt if the HW RF kill is triggered.
60396183 339 * May sleep
cf614297 340 * @start_fw: allocates and inits all the resources for the transport
60396183
EG
341 * layer. Also kick a fw image.
342 * May sleep
ed6a3803 343 * @fw_alive: called when the fw sends alive notification
60396183 344 * May sleep
41c50542 345 * @stop_device:stops the whole device (embedded CPU put to reset)
60396183 346 * May sleep
2dd4f9f7
JB
347 * @wowlan_suspend: put the device into the correct mode for WoWLAN during
348 * suspend. This is optional, if not implemented WoWLAN will not be
349 * supported. This callback may sleep.
41c50542 350 * @send_cmd:send a host command
60396183 351 * May sleep only if CMD_SYNC is set
41c50542 352 * @tx: send an skb
60396183 353 * Must be atomic
a0eaad71 354 * @reclaim: free packet until ssn. Returns a list of freed packets.
60396183 355 * Must be atomic
c91bd124 356 * @tx_agg_setup: setup a tx queue for AMPDU - will be called once the HW is
60396183
EG
357 * ready and a successful ADDBA response has been received.
358 * May sleep
7f01d567 359 * @tx_agg_disable: de-configure a Tx queue to send AMPDUs
b0b46192 360 * Must be atomic
41c50542 361 * @free: release all the ressource for the transport layer itself such as
60396183
EG
362 * irq, tasklet etc... From this point on, the device may not issue
363 * any interrupt (incl. RFKILL).
364 * May sleep
5f178cd2 365 * @wait_tx_queue_empty: wait until all tx queues are empty
60396183 366 * May sleep
87e5666c
EG
367 * @dbgfs_register: add the dbgfs files under this directory. Files will be
368 * automatically deleted.
57210f7c
EG
369 * @suspend: stop the device unless WoWLAN is configured
370 * @resume: resume activity of the device
03905495
EG
371 * @write8: write a u8 to a register at offset ofs from the BAR
372 * @write32: write a u32 to a register at offset ofs from the BAR
373 * @read32: read a u32 register at offset ofs from the BAR
c6f600fc 374 * @configure: configure parameters required by the transport layer from
3dc420be
EG
375 * the op_mode. May be called several times before start_fw, can't be
376 * called after that.
47107e84 377 * @set_pmi: set the power pmi state
41c50542
EG
378 */
379struct iwl_trans_ops {
380
57a1dc89 381 int (*start_hw)(struct iwl_trans *iwl_trans);
cc56feb2 382 void (*stop_hw)(struct iwl_trans *iwl_trans);
0692fe41 383 int (*start_fw)(struct iwl_trans *trans, const struct fw_img *fw);
ed6a3803 384 void (*fw_alive)(struct iwl_trans *trans);
6d8f6eeb 385 void (*stop_device)(struct iwl_trans *trans);
41c50542 386
2dd4f9f7
JB
387 void (*wowlan_suspend)(struct iwl_trans *trans);
388
6d8f6eeb 389 int (*send_cmd)(struct iwl_trans *trans, struct iwl_host_cmd *cmd);
41c50542 390
e13c0c59 391 int (*tx)(struct iwl_trans *trans, struct sk_buff *skb,
9eae88fa
JB
392 struct iwl_device_cmd *dev_cmd, int queue);
393 void (*reclaim)(struct iwl_trans *trans, int queue, int ssn,
394 struct sk_buff_head *skbs);
395
396 void (*tx_agg_setup)(struct iwl_trans *trans, int queue, int fifo,
397 int sta_id, int tid, int frame_limit, u16 ssn);
398 void (*tx_agg_disable)(struct iwl_trans *trans, int queue);
41c50542 399
6d8f6eeb 400 void (*free)(struct iwl_trans *trans);
87e5666c
EG
401
402 int (*dbgfs_register)(struct iwl_trans *trans, struct dentry* dir);
5f178cd2 403 int (*wait_tx_queue_empty)(struct iwl_trans *trans);
c01a4047 404#ifdef CONFIG_PM_SLEEP
57210f7c
EG
405 int (*suspend)(struct iwl_trans *trans);
406 int (*resume)(struct iwl_trans *trans);
c01a4047 407#endif
03905495
EG
408 void (*write8)(struct iwl_trans *trans, u32 ofs, u8 val);
409 void (*write32)(struct iwl_trans *trans, u32 ofs, u32 val);
410 u32 (*read32)(struct iwl_trans *trans, u32 ofs);
c6f600fc
MV
411 void (*configure)(struct iwl_trans *trans,
412 const struct iwl_trans_config *trans_cfg);
47107e84 413 void (*set_pmi)(struct iwl_trans *trans, bool state);
41c50542
EG
414};
415
69655ebf
EG
416/**
417 * enum iwl_trans_state - state of the transport layer
418 *
419 * @IWL_TRANS_NO_FW: no fw has sent an alive response
420 * @IWL_TRANS_FW_ALIVE: a fw has sent an alive response
421 */
422enum iwl_trans_state {
423 IWL_TRANS_NO_FW = 0,
424 IWL_TRANS_FW_ALIVE = 1,
425};
426
6fbfae8e
EG
427/**
428 * struct iwl_trans - transport common data
60396183 429 *
6fbfae8e 430 * @ops - pointer to iwl_trans_ops
ed277c93 431 * @op_mode - pointer to the op_mode
035f7ff2 432 * @cfg - pointer to the configuration
1042db2a 433 * @reg_lock - protect hw register access
a42a1844 434 * @dev - pointer to struct device * that represents the device
99673ee5 435 * @hw_id: a u32 with the ID of the device / subdevice.
60396183 436 * Set during transport allocation.
9ca85961 437 * @hw_id_str: a string with info about HW ID. Set during transport allocation.
f6d0e9be 438 * @pm_support: set to true in start_hw if link pm is supported
69a10b29 439 * @wait_command_queue: the wait_queue for SYNC host commands
6fbfae8e 440 */
41c50542
EG
441struct iwl_trans {
442 const struct iwl_trans_ops *ops;
ed277c93 443 struct iwl_op_mode *op_mode;
035f7ff2 444 const struct iwl_cfg *cfg;
69655ebf 445 enum iwl_trans_state state;
1042db2a 446 spinlock_t reg_lock;
e6bb4c9c 447
a42a1844 448 struct device *dev;
08079a49 449 u32 hw_rev;
99673ee5 450 u32 hw_id;
9ca85961 451 char hw_id_str[52];
a42a1844 452
f6d0e9be 453 bool pm_support;
97b52cfd 454
69a10b29
MV
455 wait_queue_head_t wait_command_queue;
456
e6bb4c9c
EG
457 /* pointer to trans specific struct */
458 /*Ensure that this pointer will always be aligned to sizeof pointer */
cbe6ab4e 459 char trans_specific[0] __aligned(sizeof(void *));
41c50542
EG
460};
461
ed277c93 462static inline void iwl_trans_configure(struct iwl_trans *trans,
92d743ae 463 const struct iwl_trans_config *trans_cfg)
ed277c93
EG
464{
465 /*
466 * only set the op_mode for the moment. Later on, this function will do
467 * more
468 */
92d743ae 469 trans->op_mode = trans_cfg->op_mode;
c6f600fc
MV
470
471 trans->ops->configure(trans, trans_cfg);
ed277c93
EG
472}
473
57a1dc89 474static inline int iwl_trans_start_hw(struct iwl_trans *trans)
e6bb4c9c 475{
60396183
EG
476 might_sleep();
477
57a1dc89 478 return trans->ops->start_hw(trans);
e6bb4c9c
EG
479}
480
cc56feb2
EG
481static inline void iwl_trans_stop_hw(struct iwl_trans *trans)
482{
60396183
EG
483 might_sleep();
484
cc56feb2 485 trans->ops->stop_hw(trans);
69655ebf
EG
486
487 trans->state = IWL_TRANS_NO_FW;
cc56feb2
EG
488}
489
ed6a3803
EG
490static inline void iwl_trans_fw_alive(struct iwl_trans *trans)
491{
60396183
EG
492 might_sleep();
493
ed6a3803 494 trans->ops->fw_alive(trans);
69655ebf
EG
495
496 trans->state = IWL_TRANS_FW_ALIVE;
ed6a3803
EG
497}
498
0692fe41
JB
499static inline int iwl_trans_start_fw(struct iwl_trans *trans,
500 const struct fw_img *fw)
bdfbf092 501{
cf614297
EG
502 might_sleep();
503
504 return trans->ops->start_fw(trans, fw);
bdfbf092
EG
505}
506
e6bb4c9c 507static inline void iwl_trans_stop_device(struct iwl_trans *trans)
bdfbf092 508{
60396183
EG
509 might_sleep();
510
6d8f6eeb 511 trans->ops->stop_device(trans);
69655ebf
EG
512
513 trans->state = IWL_TRANS_NO_FW;
bdfbf092
EG
514}
515
2dd4f9f7
JB
516static inline void iwl_trans_wowlan_suspend(struct iwl_trans *trans)
517{
518 might_sleep();
519 trans->ops->wowlan_suspend(trans);
520}
521
e6bb4c9c 522static inline int iwl_trans_send_cmd(struct iwl_trans *trans,
bdfbf092
EG
523 struct iwl_host_cmd *cmd)
524{
f0d120af
JB
525 WARN_ONCE(trans->state != IWL_TRANS_FW_ALIVE,
526 "%s bad state = %d", __func__, trans->state);
69655ebf 527
6d8f6eeb 528 return trans->ops->send_cmd(trans, cmd);
bdfbf092
EG
529}
530
e6bb4c9c 531static inline int iwl_trans_tx(struct iwl_trans *trans, struct sk_buff *skb,
9eae88fa 532 struct iwl_device_cmd *dev_cmd, int queue)
a0eaad71 533{
f0d120af
JB
534 WARN_ONCE(trans->state != IWL_TRANS_FW_ALIVE,
535 "%s bad state = %d", __func__, trans->state);
69655ebf 536
9eae88fa 537 return trans->ops->tx(trans, skb, dev_cmd, queue);
a0eaad71
EG
538}
539
9eae88fa
JB
540static inline void iwl_trans_reclaim(struct iwl_trans *trans, int queue,
541 int ssn, struct sk_buff_head *skbs)
48d42c42 542{
f0d120af
JB
543 WARN_ONCE(trans->state != IWL_TRANS_FW_ALIVE,
544 "%s bad state = %d", __func__, trans->state);
69655ebf 545
9eae88fa 546 trans->ops->reclaim(trans, queue, ssn, skbs);
48d42c42
EG
547}
548
9eae88fa 549static inline void iwl_trans_tx_agg_disable(struct iwl_trans *trans, int queue)
288712a6 550{
f0d120af
JB
551 WARN_ONCE(trans->state != IWL_TRANS_FW_ALIVE,
552 "%s bad state = %d", __func__, trans->state);
69655ebf 553
9eae88fa 554 trans->ops->tx_agg_disable(trans, queue);
288712a6
EG
555}
556
9eae88fa
JB
557static inline void iwl_trans_tx_agg_setup(struct iwl_trans *trans, int queue,
558 int fifo, int sta_id, int tid,
559 int frame_limit, u16 ssn)
48d42c42 560{
60396183
EG
561 might_sleep();
562
f0d120af
JB
563 WARN_ONCE(trans->state != IWL_TRANS_FW_ALIVE,
564 "%s bad state = %d", __func__, trans->state);
69655ebf 565
9eae88fa
JB
566 trans->ops->tx_agg_setup(trans, queue, fifo, sta_id, tid,
567 frame_limit, ssn);
48d42c42
EG
568}
569
e6bb4c9c 570static inline void iwl_trans_free(struct iwl_trans *trans)
34c1b7ba 571{
6d8f6eeb 572 trans->ops->free(trans);
34c1b7ba
EG
573}
574
5f178cd2
EG
575static inline int iwl_trans_wait_tx_queue_empty(struct iwl_trans *trans)
576{
f0d120af
JB
577 WARN_ONCE(trans->state != IWL_TRANS_FW_ALIVE,
578 "%s bad state = %d", __func__, trans->state);
69655ebf 579
5f178cd2
EG
580 return trans->ops->wait_tx_queue_empty(trans);
581}
582
87e5666c
EG
583static inline int iwl_trans_dbgfs_register(struct iwl_trans *trans,
584 struct dentry *dir)
585{
586 return trans->ops->dbgfs_register(trans, dir);
587}
588
c01a4047 589#ifdef CONFIG_PM_SLEEP
57210f7c
EG
590static inline int iwl_trans_suspend(struct iwl_trans *trans)
591{
592 return trans->ops->suspend(trans);
593}
594
595static inline int iwl_trans_resume(struct iwl_trans *trans)
596{
597 return trans->ops->resume(trans);
598}
c01a4047 599#endif
57210f7c 600
03905495
EG
601static inline void iwl_trans_write8(struct iwl_trans *trans, u32 ofs, u8 val)
602{
603 trans->ops->write8(trans, ofs, val);
604}
605
606static inline void iwl_trans_write32(struct iwl_trans *trans, u32 ofs, u32 val)
607{
608 trans->ops->write32(trans, ofs, val);
609}
610
611static inline u32 iwl_trans_read32(struct iwl_trans *trans, u32 ofs)
612{
613 return trans->ops->read32(trans, ofs);
614}
615
47107e84
DF
616static inline void iwl_trans_set_pmi(struct iwl_trans *trans, bool state)
617{
618 trans->ops->set_pmi(trans, state);
619}
620
b52e7ea1
EG
621/*****************************************************
622* Transport layers implementations + their allocation function
623******************************************************/
624struct pci_dev;
625struct pci_device_id;
626extern const struct iwl_trans_ops trans_ops_pcie;
87ce05a2 627struct iwl_trans *iwl_trans_pcie_alloc(struct pci_dev *pdev,
035f7ff2
EG
628 const struct pci_device_id *ent,
629 const struct iwl_cfg *cfg);
36a79223
EG
630int __must_check iwl_pci_register_driver(void);
631void iwl_pci_unregister_driver(void);
b52e7ea1
EG
632
633extern const struct iwl_trans_ops trans_ops_idi;
87ce05a2 634struct iwl_trans *iwl_trans_idi_alloc(void *pdev_void,
035f7ff2
EG
635 const void *ent_void,
636 const struct iwl_cfg *cfg);
41c50542 637#endif /* __iwl_trans_h__ */