300d291a1c97d2a0e475813b7df3ca9e21aafe75
[carl9170fw.git] / carlfw / include / carl9170.h
1 /*
2  * carl9170 firmware - used by the ar9170 wireless device
3  *
4  * Firmware context definition
5  *
6  * Copyright 2009-2011 Christian Lamparter <chunkeey@googlemail.com>
7  *
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.
12  *
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.
17  *
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.
21  */
22
23 #ifndef __CARL9170FW_CARL9170_H
24 #define __CARL9170FW_CARL9170_H
25
26 #include "generated/autoconf.h"
27 #include "version.h"
28 #include "config.h"
29 #include "types.h"
30 #include "compiler.h"
31 #include "fwcmd.h"
32 #include "hw.h"
33 #include "dma.h"
34 #include "usb.h"
35 #include "cmd.h"
36 #include "radar.h"
37
38 struct carl9170_bar_ctx {
39         uint8_t ta[6];
40         uint8_t ra[6];
41         __le16 start_seq_num;
42         __le16 control;
43 };
44
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),
50 };
51 #endif /* CONFIG_CARL9170FW_CAB_QUEUE */
52
53 enum carl9170_ep0_action {
54         CARL9170_EP0_NO_ACTION          = 0,
55         CARL9170_EP0_STALL              = BIT(0),
56         CARL9170_EP0_TRIGGER            = BIT(1),
57 };
58
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,
64 };
65
66 enum carl9170_suspend_mode {
67         CARL9170_HOST_AWAKE                     = 0,
68         CARL9170_HOST_SUSPENDED,
69         CARL9170_AWAKE_HOST,
70 };
71
72 enum carl9170_phy_state {
73         CARL9170_PHY_OFF                = 0,
74         CARL9170_PHY_ON
75 };
76
77 typedef void (*fw_desc_callback_t)(void *, const bool);
78
79 /*
80  * This platform - being an odd 32-bit architecture - prefers to
81  * have 32-Bit variables.
82  */
83
84 struct firmware_context_struct {
85         /* timer / clocks */
86         unsigned int ticks_per_usec;
87         unsigned int counter;                   /* main() cycles */
88
89         /* misc */
90         unsigned int watchdog_enable;
91         unsigned int reboot;
92         unsigned int suspend_mode;
93
94         struct {
95                 /* Host Interface DMA queues */
96                 struct dma_queue up_queue;      /* used to send frames to the host */
97                 struct dma_queue down_queue;    /* stores incoming frames from the host */
98         } pta;
99
100         struct {
101                 /* Hardware DMA queues */
102                 struct dma_queue tx_queue[__AR9170_NUM_TX_QUEUES];      /* wlan tx queue */
103                 struct dma_queue tx_retry;
104                 struct dma_queue rx_queue;                              /* wlan rx queue */
105
106                 /* tx aggregate scheduling */
107                 struct carl9170_tx_superframe *ampdu_prev[__AR9170_NUM_TX_QUEUES];
108
109                 /* Hardware DMA queue unstuck/fix detection */
110                 unsigned int last_super_num[__AR9170_NUM_TX_QUEUES];
111                 struct carl9170_tx_superframe *last_super[__AR9170_NUM_TX_QUEUES];
112                 unsigned int mac_reset;
113                 unsigned int soft_int;
114
115                 /* rx filter */
116                 unsigned int rx_filter;
117
118                 /* tx sequence control counters */
119                 unsigned int sequence[CARL9170_INTF_NUM];
120
121 #ifdef CONFIG_CARL9170FW_CAB_QUEUE
122                 /* CAB */
123                 struct dma_queue cab_queue[CARL9170_INTF_NUM];
124                 unsigned int cab_queue_len[CARL9170_INTF_NUM];
125                 unsigned int cab_flush_time;
126                 enum carl9170_cab_trigger cab_flush_trigger[CARL9170_INTF_NUM];
127 #endif /* CONFIG_CARL9170FW_CAB_QUEUE */
128
129                 /* tx status */
130                 unsigned int tx_status_pending,
131                              tx_status_head_idx,
132                              tx_status_tail_idx;
133                 struct carl9170_tx_status tx_status_cache[CARL9170_TX_STATUS_NUM];
134
135                 /* internal descriptor for use within the service routines */
136                 struct dma_desc *fw_desc;
137                 unsigned int fw_desc_available;
138                 void *fw_desc_data;
139                 fw_desc_callback_t fw_desc_callback;
140
141                 /* BA(R) Request Handler */
142                 struct carl9170_bar_ctx ba_cache[CONFIG_CARL9170FW_BACK_REQS_NUM];
143                 unsigned int ba_tail_idx,
144                              ba_head_idx,
145                              queued_ba;
146
147                 unsigned int queued_bar;
148
149                 unsigned int soft_radar,
150                              radar_last,
151                              pattern_index;
152         } wlan;
153
154         struct {
155                 unsigned int config,
156                              interface_setting,
157                              alternate_interface_setting,
158                              device_feature;
159                 enum carl9170_ep0_action ep0_action;
160
161                 void *ep0_txrx_buffer;
162                 unsigned int ep0_txrx_len,
163                              ep0_txrx_pos;
164
165                 struct ar9170_usb_config *cfg_desc;
166                 struct ar9170_usb_config *os_cfg_desc;
167
168                 /*
169                  * special buffers for command & response handling
170                  *
171                  * the firmware uses a sort of ring-buffer to communicate
172                  * to the host.
173                  */
174                 unsigned int int_pending,
175                              int_desc_available,
176                              int_head_index,
177                              int_tail_index;
178                 struct dma_desc *int_desc;
179                 struct carl9170_rsp int_buf[CARL9170_INT_RQ_CACHES];
180
181 #ifdef CONFIG_CARL9170FW_DEBUG_USB
182                 /* USB printf */
183                 unsigned int put_index;
184                 uint8_t put_buffer[CARL9170_MAX_CMD_PAYLOAD_LEN];
185 #endif /* CONFIG_CARL9170FW_DEBUG_USB */
186
187         } usb;
188
189         struct {
190 #ifdef CONFIG_CARL9170FW_RADIO_FUNCTIONS
191                 /* (cached) ar9170_rf_init */
192
193                 /* PHY/RF state */
194                 unsigned int frequency;
195                 unsigned int ht_settings;
196
197                 enum carl9170_phy_state state;
198                 struct carl9170_psm psm;
199 #endif /* CONFIG_CARL9170FW_RADIO_FUNCTIONS */
200         } phy;
201
202         unsigned int tally_clock;
203         struct carl9170_tally_rsp tally;
204         unsigned int tx_time;
205
206 #ifdef CONFIG_CARL9170FW_WOL
207         struct {
208                 struct carl9170_wol_cmd cmd;
209                 unsigned int last_beacon;
210                 unsigned int lost_null;
211                 unsigned int last_null;
212                 bool wake_up;
213         } wol;
214 #endif /* CONFIG_CARL9170FW_WOL */
215
216 #ifdef CONFIG_CARL9170FW_GPIO_INTERRUPT
217         struct carl9170_gpio cached_gpio_state;
218 #endif /*CONFIG_CARL9170FW_GPIO_INTERRUPT */
219 };
220
221 /*
222  * global firmware context struct.
223  *
224  * NOTE: This struct will zeroed out in start()
225  */
226 extern struct firmware_context_struct fw;
227 #endif /* __CARL9170FW_CARL9170_H */