2 * carl9170 firmware - used by the ar9170 wireless device
4 * Firmware context definition
6 * Copyright 2009-2011 Christian Lamparter <chunkeey@googlemail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef __CARL9170FW_CARL9170_H
24 #define __CARL9170FW_CARL9170_H
26 #include "generated/autoconf.h"
37 struct carl9170_bar_ctx {
45 #ifdef CONFIG_CARL9170FW_CAB_QUEUE
46 enum carl9170_cab_trigger {
47 CARL9170_CAB_TRIGGER_EMPTY = 0,
48 CARL9170_CAB_TRIGGER_ARMED = BIT(0),
49 CARL9170_CAB_TRIGGER_DEFER = BIT(1),
51 #endif /* CONFIG_CARL9170FW_CAB_QUEUE */
53 enum carl9170_ep0_action {
54 CARL9170_EP0_NO_ACTION = 0,
55 CARL9170_EP0_STALL = BIT(0),
56 CARL9170_EP0_TRIGGER = BIT(1),
59 enum carl9170_mac_reset_state {
60 CARL9170_MAC_RESET_OFF = 0,
61 CARL9170_MAC_RESET_ARMED,
62 CARL9170_MAC_RESET_RESET,
63 CARL9170_MAC_RESET_FORCE,
66 enum carl9170_suspend_mode {
67 CARL9170_HOST_AWAKE = 0,
68 CARL9170_HOST_SUSPENDED,
73 * This platform - being an odd 32-bit architecture - prefers to
74 * have 32-Bit variables.
77 struct firmware_context_struct {
79 unsigned int ticks_per_msec;
80 unsigned int counter; /* main() cycles */
83 unsigned int watchdog_enable;
85 unsigned int suspend_mode;
88 /* Host Interface DMA queues */
89 struct dma_queue up_queue; /* used to send frames to the host */
90 struct dma_queue down_queue; /* stores incoming frames from the host */
94 /* Hardware DMA queues */
95 struct dma_queue tx_queue[__AR9170_NUM_TX_QUEUES]; /* wlan tx queue */
96 struct dma_queue tx_retry;
97 struct dma_queue rx_queue; /* wlan rx queue */
99 /* tx aggregate scheduling */
100 struct carl9170_tx_superframe *ampdu_prev[__AR9170_NUM_TX_QUEUES];
102 /* Hardware DMA queue unstuck/fix detection */
103 unsigned int last_tx_desc_num[__AR9170_NUM_TX_QUEUES];
104 struct dma_desc *last_tx_desc[__AR9170_NUM_TX_QUEUES];
105 unsigned int mac_reset;
106 unsigned int soft_int;
109 unsigned int rx_filter;
112 unsigned int rx_total;
113 unsigned int rx_overruns;
115 /* tx sequence control counters */
116 unsigned int sequence[CARL9170_INTF_NUM];
118 #ifdef CONFIG_CARL9170FW_CAB_QUEUE
120 struct dma_queue cab_queue[CARL9170_INTF_NUM];
121 unsigned int cab_queue_len[CARL9170_INTF_NUM];
122 unsigned int cab_flush_time;
123 enum carl9170_cab_trigger cab_flush_trigger[CARL9170_INTF_NUM];
124 #endif /* CONFIG_CARL9170FW_CAB_QUEUE */
127 unsigned int tx_status_pending,
130 struct carl9170_tx_status tx_status_cache[CARL9170_TX_STATUS_NUM];
132 #ifdef CONFIG_CARL9170FW_HANDLE_BACK_REQ
133 /* BA(R) Request Handler */
134 struct dma_desc *ba_desc;
135 struct carl9170_bar_ctx ba_cache[CONFIG_CARL9170FW_BACK_REQS_NUM];
136 unsigned int ba_desc_available,
139 #endif /* CONFIG_CARL9170FW_HANDLE_BACK_REQ */
145 alternate_interface_setting,
147 enum carl9170_ep0_action ep0_action;
149 void *ep0_txrx_buffer;
150 unsigned int ep0_txrx_len,
153 struct ar9170_usb_config *cfg_desc;
154 struct ar9170_usb_config *os_cfg_desc;
157 * special buffers for command & response handling
159 * the firmware uses a sort of ring-buffer to communicate
162 unsigned int int_pending,
166 struct dma_desc *int_desc;
167 struct carl9170_rsp int_buf[CARL9170_INT_RQ_CACHES];
169 #ifdef CONFIG_CARL9170FW_DEBUG_USB
171 unsigned int put_index;
172 uint8_t put_buffer[CARL9170_MAX_CMD_PAYLOAD_LEN];
173 #endif /* CONFIG_CARL9170FW_DEBUG_USB */
178 #ifdef CONFIG_CARL9170FW_RADIO_FUNCTIONS
179 /* (cached) ar9170_rf_init */
182 unsigned int frequency;
183 unsigned int ht_settings;
185 struct carl9170_psm psm;
186 #endif /* CONFIG_CARL9170FW_RADIO_FUNCTIONS */
189 #ifdef CONFIG_CARL9170FW_GPIO_INTERRUPT
190 struct carl9170_gpio cached_gpio_state;
191 #endif /*CONFIG_CARL9170FW_GPIO_INTERRUPT */
195 * global firmware context struct.
197 * NOTE: This struct will zeroed out in start()
199 extern struct firmware_context_struct fw;
200 #endif /* __CARL9170FW_CARL9170_H */