carl9170 firmware: more useful tx_queue hw registers names
[carl9170fw.git] / carlfw / include / wl.h
1 /*
2  * carl9170 firmware - used by the ar9170 wireless device
3  *
4  * WLAN
5  *
6  * Copyright (c) 2000-2005 ZyDAS Technology Corporation
7  * Copyright (c) 2007-2009 Atheros Communications, Inc.
8  * Copyright    2009    Johannes Berg <johannes@sipsolutions.net>
9  * Copyright 2009-2011  Christian Lamparter <chunkeey@googlemail.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License along
22  * with this program; if not, write to the Free Software Foundation, Inc.,
23  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24  */
25
26 #ifndef __CARL9170FW_WLAN_H
27 #define __CARL9170FW_WLAN_H
28
29 #include "config.h"
30 #include "carl9170.h"
31 #include "io.h"
32
33 struct ieee80211_hdr;
34
35 static inline __inline void set_wlan_txq_dma_addr(const unsigned int q, const uint32_t v)
36 {
37         set(AR9170_MAC_REG_DMA_TXQ_ADDR + (q << 3), v);
38 }
39
40 static inline __inline void set_wlan_txq_dma_curr_addr(const unsigned int q, const uint32_t v)
41 {
42         set(AR9170_MAC_REG_DMA_TXQ_CURR_ADDR + (q << 3), v);
43 }
44
45 static inline __inline struct dma_desc *get_wlan_txq_dma_addr(const unsigned int q)
46 {
47         return getp(AR9170_MAC_REG_DMA_TXQ_ADDR + (q << 3));
48 }
49
50 static inline __inline struct dma_desc *get_wlan_txq_addr(const unsigned int q)
51 {
52         return getp(AR9170_MAC_REG_DMA_TXQ_CURR_ADDR + (q << 3));
53 }
54
55 static inline __inline struct dma_desc *get_wlan_txq_last_addr(const unsigned int q)
56 {
57         return getp(AR9170_MAC_REG_DMA_TXQ_LAST_ADDR + (q << 2));
58 }
59
60 static inline __inline void wlan_trigger(const uint32_t queue_bit)
61 {
62         set(AR9170_MAC_REG_DMA_TRIGGER, queue_bit);
63 }
64
65 static inline __inline uint8_t ar9170_get_rx_macstatus_status(struct dma_desc *desc)
66 {
67         return *((uint8_t *) DESC_PAYLOAD_OFF(desc->lastAddr,
68                 (unsigned int) desc->lastAddr->dataSize - 1));
69 }
70
71 static inline __inline uint8_t ar9170_get_rx_macstatus_error(struct dma_desc *desc)
72 {
73         unsigned int offset;
74
75         if (desc->lastAddr->dataSize == 1) {
76                 while (desc->lastAddr != desc->nextAddr)
77                         desc = desc->nextAddr;
78
79                 offset = (unsigned int) (desc->dataSize - 1);
80         } else {
81                 desc = desc->lastAddr;
82                 offset = desc->dataSize -
83                         (sizeof(struct ar9170_rx_macstatus) -
84                          offsetof(struct ar9170_rx_macstatus, error));
85         }
86
87         return *((uint8_t *) DESC_PAYLOAD_OFF(desc, offset));
88 }
89
90 static inline __inline struct ieee80211_hdr *ar9170_get_rx_i3e(struct dma_desc *desc)
91 {
92         if (!((ar9170_get_rx_macstatus_status(desc) &
93                 AR9170_RX_STATUS_MPDU) & AR9170_RX_STATUS_MPDU_LAST)) {
94                 return (void *)(DESC_PAYLOAD_OFF(desc,
95                         offsetof(struct ar9170_rx_frame_head, i3e)));
96         } else {
97                 return (void *)(DESC_PAYLOAD_OFF(desc,
98                         offsetof(struct ar9170_rx_frame_tail, i3e)));
99         }
100 }
101
102 static inline __inline struct ar9170_rx_head *ar9170_get_rx_head(struct dma_desc *desc)
103 {
104         if (!((ar9170_get_rx_macstatus_status(desc) &
105                 AR9170_RX_STATUS_MPDU) & AR9170_RX_STATUS_MPDU_LAST)) {
106                 return (void *)((uint8_t *)DESC_PAYLOAD(desc) +
107                         offsetof(struct ar9170_rx_frame_head, phy_head));
108         } else {
109                 return (void *) NULL;
110         }
111 }
112
113 static inline __inline uint32_t ar9170_rx_to_phy(struct dma_desc *rx)
114 {
115         struct ar9170_tx_hw_phy_control phy;
116         struct ar9170_rx_head *head;
117         uint8_t mac_status;
118
119         phy.set = 0;
120
121         head = ar9170_get_rx_head(rx);
122         if (!head)
123                 return le32_to_cpu(phy.set);
124
125         mac_status = ar9170_get_rx_macstatus_status(rx);
126
127         phy.modulation = mac_status & AR9170_RX_STATUS_MODULATION;
128         phy.chains = AR9170_TX_PHY_TXCHAIN_1;
129
130         switch (phy.modulation) {
131         case AR9170_RX_STATUS_MODULATION_CCK:
132                 if (mac_status & AR9170_RX_STATUS_SHORT_PREAMBLE)
133                         phy.preamble = 1;
134
135                 switch (head->plcp[0]) {
136                 case AR9170_RX_PHY_RATE_CCK_2M:
137                         phy.mcs = AR9170_TX_PHY_RATE_CCK_2M;
138                         break;
139
140                 case AR9170_RX_PHY_RATE_CCK_5M:
141                         phy.mcs = AR9170_TX_PHY_RATE_CCK_5M;
142                         break;
143
144                 case AR9170_RX_PHY_RATE_CCK_11M:
145                         phy.mcs = AR9170_TX_PHY_RATE_CCK_11M;
146                         break;
147
148                 case AR9170_RX_PHY_RATE_CCK_1M:
149                 default:
150                         phy.mcs = AR9170_TX_PHY_RATE_CCK_1M;
151                         break;
152
153                 }
154                 break;
155
156         case AR9170_RX_STATUS_MODULATION_DUPOFDM:
157         case AR9170_RX_STATUS_MODULATION_OFDM:
158                 phy.mcs = head->plcp[0] & 0xf;
159                 break;
160
161         case AR9170_RX_STATUS_MODULATION_HT:
162                 if (head->plcp[3] & 0x80)
163                         phy.bandwidth = 2;
164
165                 if (head->plcp[6] & 0x80)
166                         phy.short_gi = 1;
167
168                 /* TODO: Enable both chains for MCS > 7 */
169                 phy.mcs = head->plcp[6] & 0x7;
170                 break;
171         }
172
173         return le32_to_cpu(phy.set);
174 }
175
176 static inline __inline unsigned int ar9170_get_rx_mpdu_len(struct dma_desc *desc)
177 {
178         /*
179          * WARNING: you have to check the error bits in macstatus first!
180          */
181
182         unsigned int mpdu_len = desc->totalLen;
183
184         mpdu_len -= sizeof(struct ar9170_rx_macstatus);
185
186         switch (ar9170_get_rx_macstatus_status(desc) & AR9170_RX_STATUS_MPDU) {
187         case AR9170_RX_STATUS_MPDU_LAST:
188                 mpdu_len -= sizeof(struct ar9170_rx_phystatus);
189                 break;
190
191         case AR9170_RX_STATUS_MPDU_SINGLE:
192                 mpdu_len -= sizeof(struct ar9170_rx_phystatus);
193
194         case AR9170_RX_STATUS_MPDU_FIRST:
195                 mpdu_len -= sizeof(struct ar9170_rx_head);
196                 break;
197
198         case AR9170_RX_STATUS_MPDU_MIDDLE:
199         default:
200                 break;
201         }
202
203         return mpdu_len;
204 }
205
206 static inline __inline bool ar9170_tx_length_check(const uint16_t len)
207 {
208         return len > (sizeof(struct carl9170_tx_superframe) + 24 +
209                          FCS_LEN);
210 }
211
212 static inline __inline struct carl9170_tx_superframe *get_super(struct dma_desc *desc)
213 {
214         return container_of(DESC_PAYLOAD(desc), struct carl9170_tx_superframe,
215                             f);
216 }
217
218 static inline __inline struct carl9170_tx_superframe *__get_super(struct dma_desc *desc)
219 {
220         return DESC_PAYLOAD(desc);
221 }
222
223 static inline __inline void hide_super(struct dma_desc *desc)
224 {
225         desc->dataAddr = (uint8_t *)
226                 (((unsigned long)(DESC_PAYLOAD(desc)) +
227                 offsetof(struct carl9170_tx_superframe, f)));
228
229         desc->dataSize -= sizeof(struct carl9170_tx_superdesc);
230         desc->totalLen -= sizeof(struct carl9170_tx_superdesc);
231 }
232
233 static inline __inline void unhide_super(struct dma_desc *desc)
234 {
235         desc->dataAddr = (uint8_t *) get_super(desc);
236         desc->dataSize += sizeof(struct carl9170_tx_superdesc);
237         desc->totalLen += sizeof(struct carl9170_tx_superdesc);
238 }
239
240 static inline __inline __hot void read_tsf(uint32_t *tsf)
241 {
242         /*
243          * "According to the [hardware] documentation:
244          *  > when TSF_LOW is read, TSF_HI is automatically concurrently
245          *  > copied into a temporary register so that an immediate read
246          *  > of TSF_HI will get the value that was present when TSF_LOW
247          *  > was read. "
248          *
249          * (David H. Lynch Jr. - mail from 2010-05-22)
250          * http://permalink.gmane.org/gmane.linux.kernel.wireless.general/51249
251          */
252
253         tsf[0] = get(AR9170_MAC_REG_TSF_L);
254         tsf[1] = get(AR9170_MAC_REG_TSF_H);
255 }
256
257 void wlan_tx(struct dma_desc *desc);
258 void wlan_timer(void);
259 void handle_wlan(void);
260
261 void wlan_cab_flush_queue(const unsigned int vif);
262 void wlan_modify_beacon(const unsigned int vif,
263                         const unsigned int bcn_addr,
264                         const unsigned int bcn_len);
265
266 void wlan_tx_complete(struct carl9170_tx_superframe *super,
267                       bool txs);
268
269 static inline void wlan_prepare_wol(void)
270 {
271         /* set filter policy to: discard everything */
272         fw.wlan.rx_filter = CARL9170_RX_FILTER_EVERYTHING;
273
274         /* reenable rx dma */
275         wlan_trigger(AR9170_DMA_TRIGGER_RXQ);
276 }
277
278 static inline void __check_wlantx(void)
279 {
280         BUILD_BUG_ON(CARL9170_TX_SUPERDESC_LEN & 3);
281         BUILD_BUG_ON(sizeof(struct carl9170_tx_superdesc) != CARL9170_TX_SUPERDESC_LEN);
282         BUILD_BUG_ON(sizeof(struct _carl9170_tx_superdesc) != CARL9170_TX_SUPERDESC_LEN);
283         BUILD_BUG_ON(sizeof(struct _carl9170_tx_superframe) != CARL9170_TX_SUPERFRAME_LEN);
284         BUILD_BUG_ON((offsetof(struct carl9170_tx_superframe, f) & 3) != 0);
285         BUILD_BUG_ON(offsetof(struct _carl9170_tx_superframe, f) !=
286                      (offsetof(struct _carl9170_tx_superframe, f)));
287         BUILD_BUG_ON(sizeof(struct ar9170_tx_hwdesc) != AR9170_TX_HWDESC_LEN);
288         BUILD_BUG_ON(sizeof(struct _ar9170_tx_hwdesc) != AR9170_TX_HWDESC_LEN);
289         BUILD_BUG_ON(sizeof(struct ar9170_rx_head) != AR9170_RX_HEAD_LEN);
290         BUILD_BUG_ON(sizeof(struct ar9170_rx_phystatus) != AR9170_RX_PHYSTATUS_LEN);
291         BUILD_BUG_ON(sizeof(struct ar9170_rx_macstatus) != AR9170_RX_MACSTATUS_LEN);
292 }
293
294 #endif /* __CARL9170FW_WLAN_H */