blob: 074b4c644399c8f5f3790a1d6ff0f8be9f8b2ccc [file] [log] [blame]
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001/*
2 * Copyright (c) 2004-2008 Reyk Floeter <reyk@openbsd.org>
3 * Copyright (c) 2006-2008 Nick Kossifidis <mickflemm@gmail.com>
4 * Copyright (c) 2007-2008 Matthew W. S. Bell <mentor@madwifi.org>
5 * Copyright (c) 2007-2008 Luis Rodriguez <mcgrof@winlab.rutgers.edu>
6 * Copyright (c) 2007-2008 Pavel Roskin <proski@gnu.org>
7 * Copyright (c) 2007-2008 Jiri Slaby <jirislaby@gmail.com>
8 *
9 * Permission to use, copy, modify, and distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 *
21 */
22
23/*********************************\
24* Protocol Control Unit Functions *
25\*********************************/
26
Luis R. Rodriguezbcd8f542009-09-09 22:43:17 -070027#include <asm/unaligned.h>
28
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030029#include "ath5k.h"
30#include "reg.h"
31#include "debug.h"
32#include "base.h"
33
34/*******************\
35* Generic functions *
36\*******************/
37
38/**
39 * ath5k_hw_set_opmode - Set PCU operating mode
40 *
41 * @ah: The &struct ath5k_hw
Bruno Randolfccfe5552010-03-09 16:55:38 +090042 * @op_mode: &enum nl80211_iftype operating mode
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030043 *
44 * Initialize PCU for the various operating modes (AP/STA etc)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030045 */
Bruno Randolfccfe5552010-03-09 16:55:38 +090046int ath5k_hw_set_opmode(struct ath5k_hw *ah, enum nl80211_iftype op_mode)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030047{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -070048 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030049 u32 pcu_reg, beacon_reg, low_id, high_id;
50
Bruno Randolfccfe5552010-03-09 16:55:38 +090051 ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_MODE, "mode %d\n", op_mode);
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020052
53 /* Preserve rest settings */
54 pcu_reg = ath5k_hw_reg_read(ah, AR5K_STA_ID1) & 0xffff0000;
55 pcu_reg &= ~(AR5K_STA_ID1_ADHOC | AR5K_STA_ID1_AP
56 | AR5K_STA_ID1_KEYSRCH_MODE
57 | (ah->ah_version == AR5K_AR5210 ?
58 (AR5K_STA_ID1_PWR_SV | AR5K_STA_ID1_NO_PSPOLL) : 0));
59
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030060 beacon_reg = 0;
61
Bruno Randolfccfe5552010-03-09 16:55:38 +090062 switch (op_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +020063 case NL80211_IFTYPE_ADHOC:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020064 pcu_reg |= AR5K_STA_ID1_ADHOC | AR5K_STA_ID1_KEYSRCH_MODE;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030065 beacon_reg |= AR5K_BCR_ADHOC;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020066 if (ah->ah_version == AR5K_AR5210)
67 pcu_reg |= AR5K_STA_ID1_NO_PSPOLL;
68 else
Steve Brown4fb74042008-12-23 07:57:05 -050069 AR5K_REG_ENABLE_BITS(ah, AR5K_CFG, AR5K_CFG_IBSS);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030070 break;
71
Johannes Berg05c914f2008-09-11 00:01:58 +020072 case NL80211_IFTYPE_AP:
73 case NL80211_IFTYPE_MESH_POINT:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020074 pcu_reg |= AR5K_STA_ID1_AP | AR5K_STA_ID1_KEYSRCH_MODE;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030075 beacon_reg |= AR5K_BCR_AP;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020076 if (ah->ah_version == AR5K_AR5210)
77 pcu_reg |= AR5K_STA_ID1_NO_PSPOLL;
78 else
Steve Brown4fb74042008-12-23 07:57:05 -050079 AR5K_REG_DISABLE_BITS(ah, AR5K_CFG, AR5K_CFG_IBSS);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030080 break;
81
Johannes Berg05c914f2008-09-11 00:01:58 +020082 case NL80211_IFTYPE_STATION:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020083 pcu_reg |= AR5K_STA_ID1_KEYSRCH_MODE
84 | (ah->ah_version == AR5K_AR5210 ?
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030085 AR5K_STA_ID1_PWR_SV : 0);
Johannes Berg05c914f2008-09-11 00:01:58 +020086 case NL80211_IFTYPE_MONITOR:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020087 pcu_reg |= AR5K_STA_ID1_KEYSRCH_MODE
88 | (ah->ah_version == AR5K_AR5210 ?
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030089 AR5K_STA_ID1_NO_PSPOLL : 0);
90 break;
91
92 default:
93 return -EINVAL;
94 }
95
96 /*
97 * Set PCU registers
98 */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -070099 low_id = get_unaligned_le32(common->macaddr);
100 high_id = get_unaligned_le16(common->macaddr + 4);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300101 ath5k_hw_reg_write(ah, low_id, AR5K_STA_ID0);
102 ath5k_hw_reg_write(ah, pcu_reg | high_id, AR5K_STA_ID1);
103
104 /*
105 * Set Beacon Control Register on 5210
106 */
107 if (ah->ah_version == AR5K_AR5210)
108 ath5k_hw_reg_write(ah, beacon_reg, AR5K_BCR);
109
110 return 0;
111}
112
113/**
Bruno Randolf495391d2010-03-25 14:49:36 +0900114 * ath5k_hw_update - Update MIB counters (mac layer statistics)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300115 *
116 * @ah: The &struct ath5k_hw
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300117 *
Bruno Randolf495391d2010-03-25 14:49:36 +0900118 * Reads MIB counters from PCU and updates sw statistics. Is called after a
119 * MIB interrupt, because one of these counters might have reached their maximum
120 * and triggered the MIB interrupt, to let us read and clear the counter.
121 *
122 * Is called in interrupt context!
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300123 */
Bruno Randolf495391d2010-03-25 14:49:36 +0900124void ath5k_hw_update_mib_counters(struct ath5k_hw *ah)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300125{
Bruno Randolf495391d2010-03-25 14:49:36 +0900126 struct ath5k_statistics *stats = &ah->ah_sc->stats;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300127
128 /* Read-And-Clear */
Bruno Randolf495391d2010-03-25 14:49:36 +0900129 stats->ack_fail += ath5k_hw_reg_read(ah, AR5K_ACK_FAIL);
130 stats->rts_fail += ath5k_hw_reg_read(ah, AR5K_RTS_FAIL);
131 stats->rts_ok += ath5k_hw_reg_read(ah, AR5K_RTS_OK);
132 stats->fcs_error += ath5k_hw_reg_read(ah, AR5K_FCS_FAIL);
133 stats->beacons += ath5k_hw_reg_read(ah, AR5K_BEACON_CNT);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300134}
135
136/**
137 * ath5k_hw_set_ack_bitrate - set bitrate for ACKs
138 *
139 * @ah: The &struct ath5k_hw
Bob Copeland8801df82010-08-21 16:39:02 -0400140 * @high: Flag to determine if we want to use high transmission rate
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300141 * for ACKs or not
142 *
143 * If high flag is set, we tell hw to use a set of control rates based on
Bob Copeland8801df82010-08-21 16:39:02 -0400144 * the current transmission rate (check out control_rates array inside reset.c).
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300145 * If not hw just uses the lowest rate available for the current modulation
146 * scheme being used (1Mbit for CCK and 6Mbits for OFDM).
147 */
148void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high)
149{
150 if (ah->ah_version != AR5K_AR5212)
151 return;
152 else {
153 u32 val = AR5K_STA_ID1_BASE_RATE_11B | AR5K_STA_ID1_ACKCTS_6MB;
154 if (high)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300155 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, val);
Bruno Randolf0edc9a62010-04-12 16:38:47 +0900156 else
157 AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, val);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300158 }
159}
160
161
162/******************\
163* ACK/CTS Timeouts *
164\******************/
165
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300166/**
167 * ath5k_hw_set_ack_timeout - Set ACK timeout on PCU
168 *
169 * @ah: The &struct ath5k_hw
170 * @timeout: Timeout in usec
171 */
Pavel Roskin626ede62010-02-18 20:28:02 -0500172static int ath5k_hw_set_ack_timeout(struct ath5k_hw *ah, unsigned int timeout)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300173{
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100174 if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_ACK))
175 <= timeout)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300176 return -EINVAL;
177
178 AR5K_REG_WRITE_BITS(ah, AR5K_TIME_OUT, AR5K_TIME_OUT_ACK,
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100179 ath5k_hw_htoclock(ah, timeout));
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300180
181 return 0;
182}
183
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300184/**
185 * ath5k_hw_set_cts_timeout - Set CTS timeout on PCU
186 *
187 * @ah: The &struct ath5k_hw
188 * @timeout: Timeout in usec
189 */
Pavel Roskin626ede62010-02-18 20:28:02 -0500190static int ath5k_hw_set_cts_timeout(struct ath5k_hw *ah, unsigned int timeout)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300191{
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100192 if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_CTS))
193 <= timeout)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300194 return -EINVAL;
195
196 AR5K_REG_WRITE_BITS(ah, AR5K_TIME_OUT, AR5K_TIME_OUT_CTS,
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100197 ath5k_hw_htoclock(ah, timeout));
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300198
199 return 0;
200}
201
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300202/**
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100203 * ath5k_hw_htoclock - Translate usec to hw clock units
204 *
205 * @ah: The &struct ath5k_hw
206 * @usec: value in microseconds
207 */
208unsigned int ath5k_hw_htoclock(struct ath5k_hw *ah, unsigned int usec)
209{
Felix Fietkau9d119f32010-10-08 22:13:52 +0200210 struct ath_common *common = ath5k_hw_common(ah);
211 return usec * common->clockrate;
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100212}
213
214/**
215 * ath5k_hw_clocktoh - Translate hw clock units to usec
216 * @clock: value in hw clock units
217 */
218unsigned int ath5k_hw_clocktoh(struct ath5k_hw *ah, unsigned int clock)
219{
Felix Fietkau9d119f32010-10-08 22:13:52 +0200220 struct ath_common *common = ath5k_hw_common(ah);
221 return clock / common->clockrate;
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100222}
223
224/**
Felix Fietkau9d119f32010-10-08 22:13:52 +0200225 * ath5k_hw_set_clockrate - Set common->clockrate for the current channel
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100226 *
227 * @ah: The &struct ath5k_hw
228 */
Felix Fietkau9d119f32010-10-08 22:13:52 +0200229void ath5k_hw_set_clockrate(struct ath5k_hw *ah)
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100230{
231 struct ieee80211_channel *channel = ah->ah_current_channel;
Felix Fietkau9d119f32010-10-08 22:13:52 +0200232 struct ath_common *common = ath5k_hw_common(ah);
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100233 int clock;
234
235 if (channel->hw_value & CHANNEL_5GHZ)
236 clock = 40; /* 802.11a */
237 else if (channel->hw_value & CHANNEL_CCK)
238 clock = 22; /* 802.11b */
239 else
240 clock = 44; /* 802.11g */
241
242 /* Clock rate in turbo modes is twice the normal rate */
243 if (channel->hw_value & CHANNEL_TURBO)
244 clock *= 2;
245
Felix Fietkau9d119f32010-10-08 22:13:52 +0200246 common->clockrate = clock;
Lukáš Turek3578e6e2009-12-21 22:50:50 +0100247}
248
249/**
Lukáš Turek6e08d222009-12-21 22:50:51 +0100250 * ath5k_hw_get_default_slottime - Get the default slot time for current mode
251 *
252 * @ah: The &struct ath5k_hw
253 */
Pavel Roskin626ede62010-02-18 20:28:02 -0500254static unsigned int ath5k_hw_get_default_slottime(struct ath5k_hw *ah)
Lukáš Turek6e08d222009-12-21 22:50:51 +0100255{
256 struct ieee80211_channel *channel = ah->ah_current_channel;
257
258 if (channel->hw_value & CHANNEL_TURBO)
259 return 6; /* both turbo modes */
260
261 if (channel->hw_value & CHANNEL_CCK)
262 return 20; /* 802.11b */
263
264 return 9; /* 802.11 a/g */
265}
266
267/**
268 * ath5k_hw_get_default_sifs - Get the default SIFS for current mode
269 *
270 * @ah: The &struct ath5k_hw
271 */
Pavel Roskin626ede62010-02-18 20:28:02 -0500272static unsigned int ath5k_hw_get_default_sifs(struct ath5k_hw *ah)
Lukáš Turek6e08d222009-12-21 22:50:51 +0100273{
274 struct ieee80211_channel *channel = ah->ah_current_channel;
275
276 if (channel->hw_value & CHANNEL_TURBO)
277 return 8; /* both turbo modes */
278
279 if (channel->hw_value & CHANNEL_5GHZ)
280 return 16; /* 802.11a */
281
282 return 10; /* 802.11 b/g */
283}
284
285/**
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300286 * ath5k_hw_set_lladdr - Set station id
287 *
288 * @ah: The &struct ath5k_hw
289 * @mac: The card's mac address
290 *
291 * Set station id on hw using the provided mac address
292 */
293int ath5k_hw_set_lladdr(struct ath5k_hw *ah, const u8 *mac)
294{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700295 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300296 u32 low_id, high_id;
Bob Copelandf6bac3e2008-11-26 16:17:11 -0500297 u32 pcu_reg;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300298
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300299 /* Set new station ID */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700300 memcpy(common->macaddr, mac, ETH_ALEN);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300301
Bob Copelandf6bac3e2008-11-26 16:17:11 -0500302 pcu_reg = ath5k_hw_reg_read(ah, AR5K_STA_ID1) & 0xffff0000;
303
Luis R. Rodriguezbcd8f542009-09-09 22:43:17 -0700304 low_id = get_unaligned_le32(mac);
305 high_id = get_unaligned_le16(mac + 4);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300306
307 ath5k_hw_reg_write(ah, low_id, AR5K_STA_ID0);
Bob Copelandf6bac3e2008-11-26 16:17:11 -0500308 ath5k_hw_reg_write(ah, pcu_reg | high_id, AR5K_STA_ID1);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300309
310 return 0;
311}
312
313/**
Nick Kossifidis418de6d2010-08-15 13:03:10 -0400314 * ath5k_hw_set_bssid - Set current BSSID on hw
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300315 *
316 * @ah: The &struct ath5k_hw
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300317 *
Nick Kossifidis418de6d2010-08-15 13:03:10 -0400318 * Sets the current BSSID and BSSID mask we have from the
319 * common struct into the hardware
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300320 */
Nick Kossifidis418de6d2010-08-15 13:03:10 -0400321void ath5k_hw_set_bssid(struct ath5k_hw *ah)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300322{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700323 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300324 u16 tim_offset = 0;
325
326 /*
Nick Kossifidis418de6d2010-08-15 13:03:10 -0400327 * Set BSSID mask on 5212
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300328 */
Luis R. Rodrigueza72d57a2009-10-06 20:44:29 -0400329 if (ah->ah_version == AR5K_AR5212)
330 ath_hw_setbssidmask(common);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300331
332 /*
Nick Kossifidis418de6d2010-08-15 13:03:10 -0400333 * Set BSSID
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300334 */
Luis R. Rodriguezabba0682009-10-06 20:44:32 -0400335 ath5k_hw_reg_write(ah,
336 get_unaligned_le32(common->curbssid),
Luis R. Rodrigueza3f86bf2009-10-06 20:44:33 -0400337 AR5K_BSS_ID0);
Luis R. Rodriguezabba0682009-10-06 20:44:32 -0400338 ath5k_hw_reg_write(ah,
339 get_unaligned_le16(common->curbssid + 4) |
340 ((common->curaid & 0x3fff) << AR5K_BSS_ID1_AID_S),
Luis R. Rodrigueza3f86bf2009-10-06 20:44:33 -0400341 AR5K_BSS_ID1);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300342
Luis R. Rodriguezbe5d6b72009-10-06 20:44:31 -0400343 if (common->curaid == 0) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300344 ath5k_hw_disable_pspoll(ah);
345 return;
346 }
347
348 AR5K_REG_WRITE_BITS(ah, AR5K_BEACON, AR5K_BEACON_TIM,
Luis R. Rodriguezabba0682009-10-06 20:44:32 -0400349 tim_offset ? tim_offset + 4 : 0);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300350
351 ath5k_hw_enable_pspoll(ah, NULL, 0);
352}
353
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700354void ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300355{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700356 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300357
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200358 /* Cache bssid mask so that we can restore it
359 * on reset */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700360 memcpy(common->bssidmask, mask, ETH_ALEN);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700361 if (ah->ah_version == AR5K_AR5212)
362 ath_hw_setbssidmask(common);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300363}
364
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300365/************\
366* RX Control *
367\************/
368
369/**
370 * ath5k_hw_start_rx_pcu - Start RX engine
371 *
372 * @ah: The &struct ath5k_hw
373 *
374 * Starts RX engine on PCU so that hw can process RXed frames
375 * (ACK etc).
376 *
377 * NOTE: RX DMA should be already enabled using ath5k_hw_start_rx_dma
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300378 */
379void ath5k_hw_start_rx_pcu(struct ath5k_hw *ah)
380{
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300381 AR5K_REG_DISABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX);
382}
383
384/**
385 * at5k_hw_stop_rx_pcu - Stop RX engine
386 *
387 * @ah: The &struct ath5k_hw
388 *
389 * Stops RX engine on PCU
390 *
391 * TODO: Detach ANI here
392 */
393void ath5k_hw_stop_rx_pcu(struct ath5k_hw *ah)
394{
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300395 AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX);
396}
397
398/*
399 * Set multicast filter
400 */
401void ath5k_hw_set_mcast_filter(struct ath5k_hw *ah, u32 filter0, u32 filter1)
402{
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300403 ath5k_hw_reg_write(ah, filter0, AR5K_MCAST_FILTER0);
404 ath5k_hw_reg_write(ah, filter1, AR5K_MCAST_FILTER1);
405}
406
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300407/**
408 * ath5k_hw_get_rx_filter - Get current rx filter
409 *
410 * @ah: The &struct ath5k_hw
411 *
412 * Returns the RX filter by reading rx filter and
413 * phy error filter registers. RX filter is used
414 * to set the allowed frame types that PCU will accept
415 * and pass to the driver. For a list of frame types
416 * check out reg.h.
417 */
418u32 ath5k_hw_get_rx_filter(struct ath5k_hw *ah)
419{
420 u32 data, filter = 0;
421
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300422 filter = ath5k_hw_reg_read(ah, AR5K_RX_FILTER);
423
424 /*Radar detection for 5212*/
425 if (ah->ah_version == AR5K_AR5212) {
426 data = ath5k_hw_reg_read(ah, AR5K_PHY_ERR_FIL);
427
428 if (data & AR5K_PHY_ERR_FIL_RADAR)
429 filter |= AR5K_RX_FILTER_RADARERR;
430 if (data & (AR5K_PHY_ERR_FIL_OFDM | AR5K_PHY_ERR_FIL_CCK))
431 filter |= AR5K_RX_FILTER_PHYERR;
432 }
433
434 return filter;
435}
436
437/**
438 * ath5k_hw_set_rx_filter - Set rx filter
439 *
440 * @ah: The &struct ath5k_hw
441 * @filter: RX filter mask (see reg.h)
442 *
443 * Sets RX filter register and also handles PHY error filter
444 * register on 5212 and newer chips so that we have proper PHY
445 * error reporting.
446 */
447void ath5k_hw_set_rx_filter(struct ath5k_hw *ah, u32 filter)
448{
449 u32 data = 0;
450
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300451 /* Set PHY error filter register on 5212*/
452 if (ah->ah_version == AR5K_AR5212) {
453 if (filter & AR5K_RX_FILTER_RADARERR)
454 data |= AR5K_PHY_ERR_FIL_RADAR;
455 if (filter & AR5K_RX_FILTER_PHYERR)
456 data |= AR5K_PHY_ERR_FIL_OFDM | AR5K_PHY_ERR_FIL_CCK;
457 }
458
459 /*
460 * The AR5210 uses promiscous mode to detect radar activity
461 */
462 if (ah->ah_version == AR5K_AR5210 &&
463 (filter & AR5K_RX_FILTER_RADARERR)) {
464 filter &= ~AR5K_RX_FILTER_RADARERR;
465 filter |= AR5K_RX_FILTER_PROM;
466 }
467
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200468 /*Zero length DMA (phy error reporting) */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300469 if (data)
470 AR5K_REG_ENABLE_BITS(ah, AR5K_RXCFG, AR5K_RXCFG_ZLFDMA);
471 else
472 AR5K_REG_DISABLE_BITS(ah, AR5K_RXCFG, AR5K_RXCFG_ZLFDMA);
473
474 /*Write RX Filter register*/
475 ath5k_hw_reg_write(ah, filter & 0xff, AR5K_RX_FILTER);
476
477 /*Write PHY error filter register on 5212*/
478 if (ah->ah_version == AR5K_AR5212)
479 ath5k_hw_reg_write(ah, data, AR5K_PHY_ERR_FIL);
480
481}
482
483
484/****************\
485* Beacon control *
486\****************/
487
Benoit Papillault1c0fc652010-04-16 00:07:26 +0200488#define ATH5K_MAX_TSF_READ 10
489
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300490/**
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300491 * ath5k_hw_get_tsf64 - Get the full 64bit TSF
492 *
493 * @ah: The &struct ath5k_hw
494 *
495 * Returns the current TSF
496 */
497u64 ath5k_hw_get_tsf64(struct ath5k_hw *ah)
498{
Benoit Papillault1c0fc652010-04-16 00:07:26 +0200499 u32 tsf_lower, tsf_upper1, tsf_upper2;
500 int i;
Bruno Randolf28df8972010-09-27 12:22:32 +0900501 unsigned long flags;
502
503 /* This code is time critical - we don't want to be interrupted here */
504 local_irq_save(flags);
Benoit Papillault1c0fc652010-04-16 00:07:26 +0200505
506 /*
507 * While reading TSF upper and then lower part, the clock is still
508 * counting (or jumping in case of IBSS merge) so we might get
509 * inconsistent values. To avoid this, we read the upper part again
510 * and check it has not been changed. We make the hypothesis that a
511 * maximum of 3 changes can happens in a row (we use 10 as a safe
512 * value).
513 *
514 * Impact on performance is pretty small, since in most cases, only
515 * 3 register reads are needed.
516 */
517
518 tsf_upper1 = ath5k_hw_reg_read(ah, AR5K_TSF_U32);
519 for (i = 0; i < ATH5K_MAX_TSF_READ; i++) {
520 tsf_lower = ath5k_hw_reg_read(ah, AR5K_TSF_L32);
521 tsf_upper2 = ath5k_hw_reg_read(ah, AR5K_TSF_U32);
522 if (tsf_upper2 == tsf_upper1)
523 break;
524 tsf_upper1 = tsf_upper2;
525 }
526
Bruno Randolf28df8972010-09-27 12:22:32 +0900527 local_irq_restore(flags);
528
Benoit Papillault1c0fc652010-04-16 00:07:26 +0200529 WARN_ON( i == ATH5K_MAX_TSF_READ );
530
Benoit Papillault1c0fc652010-04-16 00:07:26 +0200531 return (((u64)tsf_upper1 << 32) | tsf_lower);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300532}
533
534/**
Alina Friedrichsen8cab7582009-01-23 05:39:13 +0100535 * ath5k_hw_set_tsf64 - Set a new 64bit TSF
536 *
537 * @ah: The &struct ath5k_hw
538 * @tsf64: The new 64bit TSF
539 *
540 * Sets the new TSF
541 */
542void ath5k_hw_set_tsf64(struct ath5k_hw *ah, u64 tsf64)
543{
Alina Friedrichsen8cab7582009-01-23 05:39:13 +0100544 ath5k_hw_reg_write(ah, tsf64 & 0xffffffff, AR5K_TSF_L32);
Alina Friedrichsen0ad65bd2009-03-02 23:29:48 +0100545 ath5k_hw_reg_write(ah, (tsf64 >> 32) & 0xffffffff, AR5K_TSF_U32);
Alina Friedrichsen8cab7582009-01-23 05:39:13 +0100546}
547
548/**
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300549 * ath5k_hw_reset_tsf - Force a TSF reset
550 *
551 * @ah: The &struct ath5k_hw
552 *
553 * Forces a TSF reset on PCU
554 */
555void ath5k_hw_reset_tsf(struct ath5k_hw *ah)
556{
Bob Copeland14be9942008-09-28 12:09:43 -0400557 u32 val;
558
Bob Copeland14be9942008-09-28 12:09:43 -0400559 val = ath5k_hw_reg_read(ah, AR5K_BEACON) | AR5K_BEACON_RESET_TSF;
560
561 /*
562 * Each write to the RESET_TSF bit toggles a hardware internal
563 * signal to reset TSF, but if left high it will cause a TSF reset
564 * on the next chip reset as well. Thus we always write the value
565 * twice to clear the signal.
566 */
567 ath5k_hw_reg_write(ah, val, AR5K_BEACON);
568 ath5k_hw_reg_write(ah, val, AR5K_BEACON);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300569}
570
571/*
572 * Initialize beacon timers
573 */
574void ath5k_hw_init_beacon(struct ath5k_hw *ah, u32 next_beacon, u32 interval)
575{
576 u32 timer1, timer2, timer3;
577
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300578 /*
579 * Set the additional timers by mode
580 */
Bruno Randolfccfe5552010-03-09 16:55:38 +0900581 switch (ah->ah_sc->opmode) {
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200582 case NL80211_IFTYPE_MONITOR:
Johannes Berg05c914f2008-09-11 00:01:58 +0200583 case NL80211_IFTYPE_STATION:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200584 /* In STA mode timer1 is used as next wakeup
585 * timer and timer2 as next CFP duration start
586 * timer. Both in 1/8TUs. */
587 /* TODO: PCF handling */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300588 if (ah->ah_version == AR5K_AR5210) {
589 timer1 = 0xffffffff;
590 timer2 = 0xffffffff;
591 } else {
592 timer1 = 0x0000ffff;
593 timer2 = 0x0007ffff;
594 }
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200595 /* Mark associated AP as PCF incapable for now */
596 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, AR5K_STA_ID1_PCF);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300597 break;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200598 case NL80211_IFTYPE_ADHOC:
599 AR5K_REG_ENABLE_BITS(ah, AR5K_TXCFG, AR5K_TXCFG_ADHOC_BCN_ATIM);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300600 default:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200601 /* On non-STA modes timer1 is used as next DMA
602 * beacon alert (DBA) timer and timer2 as next
603 * software beacon alert. Both in 1/8TUs. */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300604 timer1 = (next_beacon - AR5K_TUNE_DMA_BEACON_RESP) << 3;
605 timer2 = (next_beacon - AR5K_TUNE_SW_BEACON_RESP) << 3;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200606 break;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300607 }
608
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200609 /* Timer3 marks the end of our ATIM window
610 * a zero length window is not allowed because
611 * we 'll get no beacons */
Bruno Randolf4a79f2c2010-09-27 12:22:16 +0900612 timer3 = next_beacon + 1;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300613
614 /*
615 * Set the beacon register and enable all timers.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300616 */
Nick Kossifidis35edf8a2009-06-12 16:09:53 -0700617 /* When in AP or Mesh Point mode zero timer0 to start TSF */
Bruno Randolfccfe5552010-03-09 16:55:38 +0900618 if (ah->ah_sc->opmode == NL80211_IFTYPE_AP ||
619 ah->ah_sc->opmode == NL80211_IFTYPE_MESH_POINT)
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200620 ath5k_hw_reg_write(ah, 0, AR5K_TIMER0);
Nick Kossifidis428cbd42009-04-30 15:55:47 -0400621
622 ath5k_hw_reg_write(ah, next_beacon, AR5K_TIMER0);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300623 ath5k_hw_reg_write(ah, timer1, AR5K_TIMER1);
624 ath5k_hw_reg_write(ah, timer2, AR5K_TIMER2);
625 ath5k_hw_reg_write(ah, timer3, AR5K_TIMER3);
626
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200627 /* Force a TSF reset if requested and enable beacons */
628 if (interval & AR5K_BEACON_RESET_TSF)
629 ath5k_hw_reset_tsf(ah);
630
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300631 ath5k_hw_reg_write(ah, interval & (AR5K_BEACON_PERIOD |
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200632 AR5K_BEACON_ENABLE),
633 AR5K_BEACON);
634
635 /* Flush any pending BMISS interrupts on ISR by
636 * performing a clear-on-write operation on PISR
637 * register for the BMISS bit (writing a bit on
638 * ISR togles a reset for that bit and leaves
639 * the rest bits intact) */
640 if (ah->ah_version == AR5K_AR5210)
641 ath5k_hw_reg_write(ah, AR5K_ISR_BMISS, AR5K_ISR);
642 else
643 ath5k_hw_reg_write(ah, AR5K_ISR_BMISS, AR5K_PISR);
644
645 /* TODO: Set enchanced sleep registers on AR5212
646 * based on vif->bss_conf params, until then
647 * disable power save reporting.*/
648 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, AR5K_STA_ID1_PWR_SV);
649
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300650}
651
Lukáš Turek6e08d222009-12-21 22:50:51 +0100652/**
Bruno Randolf7f896122010-09-27 12:22:21 +0900653 * ath5k_check_timer_win - Check if timer B is timer A + window
654 *
655 * @a: timer a (before b)
656 * @b: timer b (after a)
657 * @window: difference between a and b
658 * @intval: timers are increased by this interval
659 *
660 * This helper function checks if timer B is timer A + window and covers
661 * cases where timer A or B might have already been updated or wrapped
662 * around (Timers are 16 bit).
663 *
664 * Returns true if O.K.
665 */
666static inline bool
667ath5k_check_timer_win(int a, int b, int window, int intval)
668{
669 /*
670 * 1.) usually B should be A + window
671 * 2.) A already updated, B not updated yet
672 * 3.) A already updated and has wrapped around
673 * 4.) B has wrapped around
674 */
675 if ((b - a == window) || /* 1.) */
676 (a - b == intval - window) || /* 2.) */
677 ((a | 0x10000) - b == intval - window) || /* 3.) */
678 ((b | 0x10000) - a == window)) /* 4.) */
679 return true; /* O.K. */
680 return false;
681}
682
683/**
684 * ath5k_hw_check_beacon_timers - Check if the beacon timers are correct
685 *
686 * @ah: The &struct ath5k_hw
687 * @intval: beacon interval
688 *
689 * This is a workaround for IBSS mode:
690 *
691 * The need for this function arises from the fact that we have 4 separate
692 * HW timer registers (TIMER0 - TIMER3), which are closely related to the
693 * next beacon target time (NBTT), and that the HW updates these timers
694 * seperately based on the current TSF value. The hardware increments each
695 * timer by the beacon interval, when the local TSF coverted to TU is equal
696 * to the value stored in the timer.
697 *
698 * The reception of a beacon with the same BSSID can update the local HW TSF
699 * at any time - this is something we can't avoid. If the TSF jumps to a
700 * time which is later than the time stored in a timer, this timer will not
701 * be updated until the TSF in TU wraps around at 16 bit (the size of the
702 * timers) and reaches the time which is stored in the timer.
703 *
704 * The problem is that these timers are closely related to TIMER0 (NBTT) and
705 * that they define a time "window". When the TSF jumps between two timers
706 * (e.g. ATIM and NBTT), the one in the past will be left behind (not
707 * updated), while the one in the future will be updated every beacon
708 * interval. This causes the window to get larger, until the TSF wraps
709 * around as described above and the timer which was left behind gets
710 * updated again. But - because the beacon interval is usually not an exact
711 * divisor of the size of the timers (16 bit), an unwanted "window" between
712 * these timers has developed!
713 *
714 * This is especially important with the ATIM window, because during
715 * the ATIM window only ATIM frames and no data frames are allowed to be
716 * sent, which creates transmission pauses after each beacon. This symptom
717 * has been described as "ramping ping" because ping times increase linearly
718 * for some time and then drop down again. A wrong window on the DMA beacon
719 * timer has the same effect, so we check for these two conditions.
720 *
721 * Returns true if O.K.
722 */
723bool
724ath5k_hw_check_beacon_timers(struct ath5k_hw *ah, int intval)
725{
726 unsigned int nbtt, atim, dma;
727
728 nbtt = ath5k_hw_reg_read(ah, AR5K_TIMER0);
729 atim = ath5k_hw_reg_read(ah, AR5K_TIMER3);
730 dma = ath5k_hw_reg_read(ah, AR5K_TIMER1) >> 3;
731
732 /* NOTE: SWBA is different. Having a wrong window there does not
733 * stop us from sending data and this condition is catched thru
734 * other means (SWBA interrupt) */
735
736 if (ath5k_check_timer_win(nbtt, atim, 1, intval) &&
737 ath5k_check_timer_win(dma, nbtt, AR5K_TUNE_DMA_BEACON_RESP,
738 intval))
739 return true; /* O.K. */
740 return false;
741}
742
743/**
Lukáš Turek6e08d222009-12-21 22:50:51 +0100744 * ath5k_hw_set_coverage_class - Set IEEE 802.11 coverage class
745 *
746 * @ah: The &struct ath5k_hw
747 * @coverage_class: IEEE 802.11 coverage class number
748 *
749 * Sets slot time, ACK timeout and CTS timeout for given coverage class.
750 */
751void ath5k_hw_set_coverage_class(struct ath5k_hw *ah, u8 coverage_class)
752{
753 /* As defined by IEEE 802.11-2007 17.3.8.6 */
754 int slot_time = ath5k_hw_get_default_slottime(ah) + 3 * coverage_class;
755 int ack_timeout = ath5k_hw_get_default_sifs(ah) + slot_time;
756 int cts_timeout = ack_timeout;
757
758 ath5k_hw_set_slot_time(ah, slot_time);
759 ath5k_hw_set_ack_timeout(ah, ack_timeout);
760 ath5k_hw_set_cts_timeout(ah, cts_timeout);
761
762 ah->ah_coverage_class = coverage_class;
763}