ah.c: do not inclue opt_ah.h
[open-ath9k-htc-firmware.git] / target_firmware / wlan / ah.c
1 /*
2  * Copyright (c) 2013 Qualcomm Atheros, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted (subject to the limitations in the
7  * disclaimer below) provided that the following conditions are met:
8  *
9  *  * Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  *  * Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the
15  *    distribution.
16  *
17  *  * Neither the name of Qualcomm Atheros nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific prior written permission.
20  *
21  * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
22  * GRANTED BY THIS LICENSE.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
23  * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
24  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
32  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
33  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35
36 #include "ah.h"
37 #include "ah_internal.h"
38 #include <asf_bitmap.h>
39
40 extern struct ath_hal *ar5416Attach(a_uint32_t devid,HAL_SOFTC sc, adf_os_device_t dev,
41                                     a_uint32_t flags, HAL_STATUS *status);
42
43 struct ath_hal*
44 ath_hal_attach_tgt(a_uint32_t devid,HAL_SOFTC sc,
45                    adf_os_device_t dev,
46                    a_uint32_t flags, HAL_STATUS *error)
47 {
48         struct ath_hal *ah = AH_NULL;
49
50         devid = AR5416_DEVID_PCIE;
51         ah = ar5416Attach(devid, sc, dev, flags, error);
52
53         return ah;
54 }
55
56 HAL_STATUS
57 ath_hal_getcapability(struct ath_hal *ah, HAL_CAPABILITY_TYPE type,
58                       a_uint32_t capability, a_uint32_t *result)
59
60 {
61         const HAL_CAPABILITIES *pCap = &AH_PRIVATE(ah)->ah_caps;
62         switch (type) {
63         case HAL_CAP_TSF_ADJUST:
64                 return HAL_ENOTSUPP;
65         case HAL_CAP_BSSIDMASK:
66                 return pCap->halBssIdMaskSupport ? HAL_OK : HAL_ENOTSUPP;
67         case HAL_CAP_VEOL:
68                 return pCap->halVEOLSupport ? HAL_OK : HAL_ENOTSUPP;
69         default:
70                 return HAL_EINVAL;
71         }
72 }
73
74 void
75 ath_hal_setupratetable(struct ath_hal *ah, HAL_RATE_TABLE *rt)
76 {
77         a_int32_t i;
78
79         if (rt->rateCodeToIndex[0] != 0)
80                 return;
81
82         for (i = 0; i < 32; i++)
83                 rt->rateCodeToIndex[i] = (a_uint8_t) -1;
84         for (i = 0; i < rt->rateCount; i++) {
85                 a_uint8_t code = rt->info[i].rateCode;
86                 a_uint8_t cix = rt->info[i].controlRate;
87
88                 rt->rateCodeToIndex[code] = i;
89                 rt->rateCodeToIndex[code | rt->info[i].shortPreamble] = i;
90                 rt->info[i].lpAckDuration = ath_hal_computetxtime(ah, rt,
91                                           WLAN_CTRL_FRAME_SIZE, cix, AH_FALSE);
92                 rt->info[i].spAckDuration = ath_hal_computetxtime(ah, rt,
93                                           WLAN_CTRL_FRAME_SIZE, cix, AH_TRUE);
94         }
95 }
96
97 #define CCK_SIFS_TIME        10
98 #define CCK_PREAMBLE_BITS   144
99 #define CCK_PLCP_BITS        48
100
101 #define OFDM_SIFS_TIME        16
102 #define OFDM_PREAMBLE_TIME    20
103 #define OFDM_PLCP_BITS        22
104 #define OFDM_SYMBOL_TIME       4
105
106 #define OFDM_SIFS_TIME_HALF     32
107 #define OFDM_PREAMBLE_TIME_HALF 40
108 #define OFDM_PLCP_BITS_HALF     22
109 #define OFDM_SYMBOL_TIME_HALF   8
110
111 #define OFDM_SIFS_TIME_QUARTER      64
112 #define OFDM_PREAMBLE_TIME_QUARTER  80
113 #define OFDM_PLCP_BITS_QUARTER      22
114 #define OFDM_SYMBOL_TIME_QUARTER    16
115
116 a_uint16_t
117 ath_hal_computetxtime(struct ath_hal *ah,
118                       const HAL_RATE_TABLE *rates, a_uint32_t frameLen, a_uint16_t rateix,
119                       HAL_BOOL shortPreamble)
120 {
121         a_uint32_t bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
122         a_uint32_t kbps;
123
124         kbps = rates->info[rateix].rateKbps;
125
126         /*
127          * index can be invalid duting dynamic Turbo transitions.
128          */
129         if(kbps == 0) return 0;
130         switch (rates->info[rateix].phy) {
131
132         case IEEE80211_T_CCK:
133                 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
134                 if (shortPreamble && rates->info[rateix].shortPreamble)
135                         phyTime >>= 1;
136                 numBits = frameLen << 3;
137                 txTime = phyTime + ((numBits * 1000)/kbps);
138                 /* TODO: make sure the same value of txTime can use in all device */
139                 if (ath_hal_getcapability(ah, HAL_CAP_HT, 0, AH_NULL) != HAL_OK)
140                         txTime = txTime + CCK_SIFS_TIME;
141                 break;
142         case IEEE80211_T_OFDM:
143                 /* full rate channel */
144                 bitsPerSymbol   = (kbps * OFDM_SYMBOL_TIME) / 1000;
145                 HALASSERT(bitsPerSymbol != 0);
146
147                 numBits = OFDM_PLCP_BITS + (frameLen << 3);
148                 numSymbols = asf_howmany(numBits, bitsPerSymbol);
149                 txTime = OFDM_PREAMBLE_TIME + (numSymbols * OFDM_SYMBOL_TIME);
150                 /* TODO: make sure the same value of txTime can use in all device */
151                 if (ath_hal_getcapability(ah, HAL_CAP_HT, 0, AH_NULL) != HAL_OK)
152                         txTime = txTime + OFDM_SIFS_TIME;
153                 break;
154         default:
155                 txTime = 0;
156                 break;
157         }
158         return txTime;
159 }
160
161 #undef CCK_SIFS_TIME
162 #undef CCK_PREAMBLE_BITS
163 #undef CCK_PLCP_BITS
164
165 #undef OFDM_SIFS_TIME
166 #undef OFDM_PREAMBLE_TIME
167 #undef OFDM_PLCP_BITS
168 #undef OFDM_SYMBOL_TIME
169
170 #ifdef MAGPIE_MERLIN
171 a_uint32_t 
172 ath_hal_get_curmode(struct ath_hal *ah, HAL_CHANNEL_INTERNAL *chan)
173 {
174         if (!chan)
175                 return HAL_MODE_11NG;
176
177         if (IS_CHAN_NA(chan))
178                 return HAL_MODE_11NA; 
179
180         if (IS_CHAN_A(chan))
181                 return HAL_MODE_11A;
182
183         if (IS_CHAN_NG(chan))
184                 return HAL_MODE_11NG;
185
186         if (IS_CHAN_G(chan))
187                 return HAL_MODE_11G;
188
189         if (IS_CHAN_B(chan))
190                 return HAL_MODE_11B;
191
192         HALASSERT(0);
193         return HAL_MODE_11NG;
194 }
195
196 #endif
197
198 HAL_BOOL
199 ath_hal_wait(struct ath_hal *ah, a_uint32_t reg, a_uint32_t mask, a_uint32_t val)
200 {
201 #define AH_TIMEOUT_11N 100000
202 #define AH_TIMEOUT_11G  1000
203
204         a_int32_t i;
205
206         if (ath_hal_getcapability(ah, HAL_CAP_HT, 0, AH_NULL) == HAL_OK) {
207                 for (i = 0; i < AH_TIMEOUT_11N; i++) {
208                         if ((OS_REG_READ(ah, reg) & mask) == val)
209                                 return AH_TRUE;
210                         OS_DELAY(10);
211                 }
212         } else {
213                 for (i = 0; i < AH_TIMEOUT_11G; i++) {
214                         if ((OS_REG_READ(ah, reg) & mask) == val)
215                                 return AH_TRUE;
216                         OS_DELAY(10);
217                 }
218         }
219         return AH_FALSE;
220
221 #undef AH_TIMEOUT_11N
222 #undef AH_TIMEOUT_11G
223 }