1a5c6cb8bd3eb039cf9938808b918b724f12195f
[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
37 struct carl9170_bar_ctx {
38         uint8_t ta[6];
39         uint8_t ra[6];
40         __le16 start_seq_num;
41         __le16 control;
42         __le32 phy;
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 /*
73  * This platform - being an odd 32-bit architecture - prefers to
74  * have 32-Bit variables.
75  */
76
77 struct firmware_context_struct {
78         /* timer / clocks */
79         unsigned int ticks_per_msec;
80         unsigned int counter;                   /* main() cycles */
81
82         /* misc */
83         unsigned int watchdog_enable;
84         unsigned int reboot;
85         unsigned int suspend_mode;
86
87         struct {
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 */
91         } pta;
92
93         struct {
94                 /* Hardware DMA queues */
95                 struct dma_queue tx_queue[__AR9170_NUM_TX_QUEUES];      /* wlan tx queue */
96                 struct dma_queue rx_queue;                              /* wlan rx queue */
97
98 #ifdef CONFIG_CARL9170FW_DELAYED_TX
99                 struct dma_queue tx_delay[__AR9170_NUM_TX_QUEUES];
100                 struct dma_queue tx_retry;
101                 unsigned int tx_trigger;
102 #endif /* CONFIG_CARL9170FW_DELAYED_TX */
103
104                 /* Hardware DMA queue unstuck/fix detection */
105                 unsigned int last_tx_desc_num[__AR9170_NUM_TX_QUEUES];
106                 struct dma_desc *last_tx_desc[__AR9170_NUM_TX_QUEUES];
107                 unsigned int mac_reset;
108                 unsigned int soft_int;
109
110                 /* rx filter */
111                 unsigned int rx_filter;
112
113                 /* rx statistics */
114                 unsigned int rx_total;
115                 unsigned int rx_overruns;
116
117                 /* tx sequence control counters */
118                 unsigned int sequence[CARL9170_INTF_NUM];
119
120 #ifdef CONFIG_CARL9170FW_TX_AMPDU
121                 /* tx aggregate scheduling */
122                 struct carl9170_tx_superframe *ampdu_prev[__AR9170_NUM_TX_QUEUES];
123 #endif /* CONFIG_CARL9170FW_TX_AMPDU */
124
125 #ifdef CONFIG_CARL9170FW_CAB_QUEUE
126                 /* CAB */
127                 struct dma_queue cab_queue[CARL9170_INTF_NUM];
128                 unsigned int cab_queue_len[CARL9170_INTF_NUM];
129                 unsigned int cab_flush_time;
130                 enum carl9170_cab_trigger cab_flush_trigger[CARL9170_INTF_NUM];
131 #endif /* CONFIG_CARL9170FW_CAB_QUEUE */
132
133                 /* tx status */
134                 unsigned int tx_status_pending,
135                              tx_status_head_idx,
136                              tx_status_tail_idx;
137                 struct carl9170_tx_status tx_status_cache[CARL9170_TX_STATUS_NUM];
138
139 #ifdef CONFIG_CARL9170FW_HANDLE_BACK_REQ
140                 /* BA(R) Request Handler */
141                 struct dma_desc *ba_desc;
142                 struct carl9170_bar_ctx ba_cache[CONFIG_CARL9170FW_BACK_REQS_NUM];
143                 unsigned int ba_desc_available,
144                              ba_tail_idx,
145                              ba_head_idx;
146 #endif /* CONFIG_CARL9170FW_HANDLE_BACK_REQ */
147         } wlan;
148
149         struct {
150                 unsigned int config,
151                              interface_setting,
152                              alternate_interface_setting,
153                              device_feature;
154                 enum carl9170_ep0_action ep0_action;
155
156                 void *ep0_txrx_buffer;
157                 unsigned int ep0_txrx_len,
158                              ep0_txrx_pos;
159
160                 struct ar9170_usb_config *cfg_desc;
161                 struct ar9170_usb_config *os_cfg_desc;
162
163                 /*
164                  * special buffers for command & response handling
165                  *
166                  * the firmware uses a sort of ring-buffer to communicate
167                  * to the host.
168                  */
169                 unsigned int int_pending,
170                              int_desc_available,
171                              int_head_index,
172                              int_tail_index;
173                 struct dma_desc *int_desc;
174                 struct carl9170_rsp int_buf[CARL9170_INT_RQ_CACHES];
175
176 #ifdef CONFIG_CARL9170FW_DEBUG_USB
177                 /* USB printf */
178                 unsigned int put_index;
179                 uint8_t put_buffer[CARL9170_MAX_CMD_PAYLOAD_LEN];
180 #endif /* CONFIG_CARL9170FW_DEBUG_USB */
181
182         } usb;
183
184         struct {
185 #ifdef CONFIG_CARL9170FW_RADIO_FUNCTIONS
186                 /* (cached) ar9170_rf_init */
187
188                 /* PHY/RF state */
189                 unsigned int frequency;
190                 unsigned int ht_settings;
191
192 #ifdef CONFIG_CARL9170FW_PSM
193                 struct carl9170_psm psm;
194 #endif /* CONFIG_CARL9170FW_PSM */
195 #endif /* CONFIG_CARL9170FW_RADIO_FUNCTIONS */
196         } phy;
197
198 #ifdef CONFIG_CARL9170FW_GPIO_INTERRUPT
199         struct carl9170_gpio cached_gpio_state;
200 #endif /*CONFIG_CARL9170FW_GPIO_INTERRUPT */
201 };
202
203 /*
204  * global firmware context struct.
205  *
206  * NOTE: This struct will zeroed out in start()
207  */
208 extern struct firmware_context_struct fw;
209 #endif /* __CARL9170FW_CARL9170_H */