blob: 32fd5f88fb7307f6b62bb59eaa4dc67bdde3cac4 [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
42 *
43 * Initialize PCU for the various operating modes (AP/STA etc)
44 *
45 * NOTE: ah->ah_op_mode must be set before calling this.
46 */
47int ath5k_hw_set_opmode(struct ath5k_hw *ah)
48{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -070049 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030050 u32 pcu_reg, beacon_reg, low_id, high_id;
51
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
62 ATH5K_TRACE(ah->ah_sc);
63
64 switch (ah->ah_op_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +020065 case NL80211_IFTYPE_ADHOC:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020066 pcu_reg |= AR5K_STA_ID1_ADHOC | AR5K_STA_ID1_KEYSRCH_MODE;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030067 beacon_reg |= AR5K_BCR_ADHOC;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020068 if (ah->ah_version == AR5K_AR5210)
69 pcu_reg |= AR5K_STA_ID1_NO_PSPOLL;
70 else
Steve Brown4fb74042008-12-23 07:57:05 -050071 AR5K_REG_ENABLE_BITS(ah, AR5K_CFG, AR5K_CFG_IBSS);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030072 break;
73
Johannes Berg05c914f2008-09-11 00:01:58 +020074 case NL80211_IFTYPE_AP:
75 case NL80211_IFTYPE_MESH_POINT:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020076 pcu_reg |= AR5K_STA_ID1_AP | AR5K_STA_ID1_KEYSRCH_MODE;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030077 beacon_reg |= AR5K_BCR_AP;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020078 if (ah->ah_version == AR5K_AR5210)
79 pcu_reg |= AR5K_STA_ID1_NO_PSPOLL;
80 else
Steve Brown4fb74042008-12-23 07:57:05 -050081 AR5K_REG_DISABLE_BITS(ah, AR5K_CFG, AR5K_CFG_IBSS);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030082 break;
83
Johannes Berg05c914f2008-09-11 00:01:58 +020084 case NL80211_IFTYPE_STATION:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020085 pcu_reg |= AR5K_STA_ID1_KEYSRCH_MODE
86 | (ah->ah_version == AR5K_AR5210 ?
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030087 AR5K_STA_ID1_PWR_SV : 0);
Johannes Berg05c914f2008-09-11 00:01:58 +020088 case NL80211_IFTYPE_MONITOR:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +020089 pcu_reg |= AR5K_STA_ID1_KEYSRCH_MODE
90 | (ah->ah_version == AR5K_AR5210 ?
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030091 AR5K_STA_ID1_NO_PSPOLL : 0);
92 break;
93
94 default:
95 return -EINVAL;
96 }
97
98 /*
99 * Set PCU registers
100 */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700101 low_id = get_unaligned_le32(common->macaddr);
102 high_id = get_unaligned_le16(common->macaddr + 4);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300103 ath5k_hw_reg_write(ah, low_id, AR5K_STA_ID0);
104 ath5k_hw_reg_write(ah, pcu_reg | high_id, AR5K_STA_ID1);
105
106 /*
107 * Set Beacon Control Register on 5210
108 */
109 if (ah->ah_version == AR5K_AR5210)
110 ath5k_hw_reg_write(ah, beacon_reg, AR5K_BCR);
111
112 return 0;
113}
114
115/**
116 * ath5k_hw_update - Update mib counters (mac layer statistics)
117 *
118 * @ah: The &struct ath5k_hw
119 * @stats: The &struct ieee80211_low_level_stats we use to track
120 * statistics on the driver
121 *
122 * Reads MIB counters from PCU and updates sw statistics. Must be
123 * called after a MIB interrupt.
124 */
125void ath5k_hw_update_mib_counters(struct ath5k_hw *ah,
126 struct ieee80211_low_level_stats *stats)
127{
128 ATH5K_TRACE(ah->ah_sc);
129
130 /* Read-And-Clear */
131 stats->dot11ACKFailureCount += ath5k_hw_reg_read(ah, AR5K_ACK_FAIL);
132 stats->dot11RTSFailureCount += ath5k_hw_reg_read(ah, AR5K_RTS_FAIL);
133 stats->dot11RTSSuccessCount += ath5k_hw_reg_read(ah, AR5K_RTS_OK);
134 stats->dot11FCSErrorCount += ath5k_hw_reg_read(ah, AR5K_FCS_FAIL);
135
136 /* XXX: Should we use this to track beacon count ?
137 * -we read it anyway to clear the register */
138 ath5k_hw_reg_read(ah, AR5K_BEACON_CNT);
139
140 /* Reset profile count registers on 5212*/
141 if (ah->ah_version == AR5K_AR5212) {
142 ath5k_hw_reg_write(ah, 0, AR5K_PROFCNT_TX);
143 ath5k_hw_reg_write(ah, 0, AR5K_PROFCNT_RX);
144 ath5k_hw_reg_write(ah, 0, AR5K_PROFCNT_RXCLR);
145 ath5k_hw_reg_write(ah, 0, AR5K_PROFCNT_CYCLE);
146 }
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200147
148 /* TODO: Handle ANI stats */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300149}
150
151/**
152 * ath5k_hw_set_ack_bitrate - set bitrate for ACKs
153 *
154 * @ah: The &struct ath5k_hw
155 * @high: Flag to determine if we want to use high transmition rate
156 * for ACKs or not
157 *
158 * If high flag is set, we tell hw to use a set of control rates based on
159 * the current transmition rate (check out control_rates array inside reset.c).
160 * If not hw just uses the lowest rate available for the current modulation
161 * scheme being used (1Mbit for CCK and 6Mbits for OFDM).
162 */
163void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high)
164{
165 if (ah->ah_version != AR5K_AR5212)
166 return;
167 else {
168 u32 val = AR5K_STA_ID1_BASE_RATE_11B | AR5K_STA_ID1_ACKCTS_6MB;
169 if (high)
170 AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, val);
171 else
172 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, val);
173 }
174}
175
176
177/******************\
178* ACK/CTS Timeouts *
179\******************/
180
181/**
182 * ath5k_hw_het_ack_timeout - Get ACK timeout from PCU in usec
183 *
184 * @ah: The &struct ath5k_hw
185 */
186unsigned int ath5k_hw_get_ack_timeout(struct ath5k_hw *ah)
187{
188 ATH5K_TRACE(ah->ah_sc);
189
190 return ath5k_hw_clocktoh(AR5K_REG_MS(ath5k_hw_reg_read(ah,
191 AR5K_TIME_OUT), AR5K_TIME_OUT_ACK), ah->ah_turbo);
192}
193
194/**
195 * ath5k_hw_set_ack_timeout - Set ACK timeout on PCU
196 *
197 * @ah: The &struct ath5k_hw
198 * @timeout: Timeout in usec
199 */
200int ath5k_hw_set_ack_timeout(struct ath5k_hw *ah, unsigned int timeout)
201{
202 ATH5K_TRACE(ah->ah_sc);
203 if (ath5k_hw_clocktoh(AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_ACK),
204 ah->ah_turbo) <= timeout)
205 return -EINVAL;
206
207 AR5K_REG_WRITE_BITS(ah, AR5K_TIME_OUT, AR5K_TIME_OUT_ACK,
208 ath5k_hw_htoclock(timeout, ah->ah_turbo));
209
210 return 0;
211}
212
213/**
214 * ath5k_hw_get_cts_timeout - Get CTS timeout from PCU in usec
215 *
216 * @ah: The &struct ath5k_hw
217 */
218unsigned int ath5k_hw_get_cts_timeout(struct ath5k_hw *ah)
219{
220 ATH5K_TRACE(ah->ah_sc);
221 return ath5k_hw_clocktoh(AR5K_REG_MS(ath5k_hw_reg_read(ah,
222 AR5K_TIME_OUT), AR5K_TIME_OUT_CTS), ah->ah_turbo);
223}
224
225/**
226 * ath5k_hw_set_cts_timeout - Set CTS timeout on PCU
227 *
228 * @ah: The &struct ath5k_hw
229 * @timeout: Timeout in usec
230 */
231int ath5k_hw_set_cts_timeout(struct ath5k_hw *ah, unsigned int timeout)
232{
233 ATH5K_TRACE(ah->ah_sc);
234 if (ath5k_hw_clocktoh(AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_CTS),
235 ah->ah_turbo) <= timeout)
236 return -EINVAL;
237
238 AR5K_REG_WRITE_BITS(ah, AR5K_TIME_OUT, AR5K_TIME_OUT_CTS,
239 ath5k_hw_htoclock(timeout, ah->ah_turbo));
240
241 return 0;
242}
243
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300244/**
245 * ath5k_hw_set_lladdr - Set station id
246 *
247 * @ah: The &struct ath5k_hw
248 * @mac: The card's mac address
249 *
250 * Set station id on hw using the provided mac address
251 */
252int ath5k_hw_set_lladdr(struct ath5k_hw *ah, const u8 *mac)
253{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700254 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300255 u32 low_id, high_id;
Bob Copelandf6bac3e2008-11-26 16:17:11 -0500256 u32 pcu_reg;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300257
258 ATH5K_TRACE(ah->ah_sc);
259 /* Set new station ID */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700260 memcpy(common->macaddr, mac, ETH_ALEN);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300261
Bob Copelandf6bac3e2008-11-26 16:17:11 -0500262 pcu_reg = ath5k_hw_reg_read(ah, AR5K_STA_ID1) & 0xffff0000;
263
Luis R. Rodriguezbcd8f542009-09-09 22:43:17 -0700264 low_id = get_unaligned_le32(mac);
265 high_id = get_unaligned_le16(mac + 4);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300266
267 ath5k_hw_reg_write(ah, low_id, AR5K_STA_ID0);
Bob Copelandf6bac3e2008-11-26 16:17:11 -0500268 ath5k_hw_reg_write(ah, pcu_reg | high_id, AR5K_STA_ID1);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300269
270 return 0;
271}
272
273/**
274 * ath5k_hw_set_associd - Set BSSID for association
275 *
276 * @ah: The &struct ath5k_hw
277 * @bssid: BSSID
278 * @assoc_id: Assoc id
279 *
280 * Sets the BSSID which trigers the "SME Join" operation
281 */
282void ath5k_hw_set_associd(struct ath5k_hw *ah, const u8 *bssid, u16 assoc_id)
283{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700284 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300285 u32 low_id, high_id;
286 u16 tim_offset = 0;
287
288 /*
289 * Set simple BSSID mask on 5212
290 */
Luis R. Rodrigueza72d57a2009-10-06 20:44:29 -0400291 if (ah->ah_version == AR5K_AR5212)
292 ath_hw_setbssidmask(common);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300293
294 /*
295 * Set BSSID which triggers the "SME Join" operation
296 */
Luis R. Rodriguezbcd8f542009-09-09 22:43:17 -0700297 low_id = get_unaligned_le32(bssid);
298 high_id = get_unaligned_le16(bssid);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700299 ath5k_hw_reg_write(ah, low_id, AR_BSSMSKL);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300300 ath5k_hw_reg_write(ah, high_id | ((assoc_id & 0x3fff) <<
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700301 AR5K_BSS_ID1_AID_S), AR_BSSMSKU);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300302
303 if (assoc_id == 0) {
304 ath5k_hw_disable_pspoll(ah);
305 return;
306 }
307
308 AR5K_REG_WRITE_BITS(ah, AR5K_BEACON, AR5K_BEACON_TIM,
309 tim_offset ? tim_offset + 4 : 0);
310
311 ath5k_hw_enable_pspoll(ah, NULL, 0);
312}
313
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700314void ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300315{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700316 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300317 ATH5K_TRACE(ah->ah_sc);
318
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200319 /* Cache bssid mask so that we can restore it
320 * on reset */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700321 memcpy(common->bssidmask, mask, ETH_ALEN);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700322 if (ah->ah_version == AR5K_AR5212)
323 ath_hw_setbssidmask(common);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300324}
325
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300326/************\
327* RX Control *
328\************/
329
330/**
331 * ath5k_hw_start_rx_pcu - Start RX engine
332 *
333 * @ah: The &struct ath5k_hw
334 *
335 * Starts RX engine on PCU so that hw can process RXed frames
336 * (ACK etc).
337 *
338 * NOTE: RX DMA should be already enabled using ath5k_hw_start_rx_dma
339 * TODO: Init ANI here
340 */
341void ath5k_hw_start_rx_pcu(struct ath5k_hw *ah)
342{
343 ATH5K_TRACE(ah->ah_sc);
344 AR5K_REG_DISABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX);
345}
346
347/**
348 * at5k_hw_stop_rx_pcu - Stop RX engine
349 *
350 * @ah: The &struct ath5k_hw
351 *
352 * Stops RX engine on PCU
353 *
354 * TODO: Detach ANI here
355 */
356void ath5k_hw_stop_rx_pcu(struct ath5k_hw *ah)
357{
358 ATH5K_TRACE(ah->ah_sc);
359 AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX);
360}
361
362/*
363 * Set multicast filter
364 */
365void ath5k_hw_set_mcast_filter(struct ath5k_hw *ah, u32 filter0, u32 filter1)
366{
367 ATH5K_TRACE(ah->ah_sc);
368 /* Set the multicat filter */
369 ath5k_hw_reg_write(ah, filter0, AR5K_MCAST_FILTER0);
370 ath5k_hw_reg_write(ah, filter1, AR5K_MCAST_FILTER1);
371}
372
373/*
374 * Set multicast filter by index
375 */
376int ath5k_hw_set_mcast_filter_idx(struct ath5k_hw *ah, u32 index)
377{
378
379 ATH5K_TRACE(ah->ah_sc);
380 if (index >= 64)
381 return -EINVAL;
382 else if (index >= 32)
383 AR5K_REG_ENABLE_BITS(ah, AR5K_MCAST_FILTER1,
384 (1 << (index - 32)));
385 else
386 AR5K_REG_ENABLE_BITS(ah, AR5K_MCAST_FILTER0, (1 << index));
387
388 return 0;
389}
390
391/*
392 * Clear Multicast filter by index
393 */
394int ath5k_hw_clear_mcast_filter_idx(struct ath5k_hw *ah, u32 index)
395{
396
397 ATH5K_TRACE(ah->ah_sc);
398 if (index >= 64)
399 return -EINVAL;
400 else if (index >= 32)
401 AR5K_REG_DISABLE_BITS(ah, AR5K_MCAST_FILTER1,
402 (1 << (index - 32)));
403 else
404 AR5K_REG_DISABLE_BITS(ah, AR5K_MCAST_FILTER0, (1 << index));
405
406 return 0;
407}
408
409/**
410 * ath5k_hw_get_rx_filter - Get current rx filter
411 *
412 * @ah: The &struct ath5k_hw
413 *
414 * Returns the RX filter by reading rx filter and
415 * phy error filter registers. RX filter is used
416 * to set the allowed frame types that PCU will accept
417 * and pass to the driver. For a list of frame types
418 * check out reg.h.
419 */
420u32 ath5k_hw_get_rx_filter(struct ath5k_hw *ah)
421{
422 u32 data, filter = 0;
423
424 ATH5K_TRACE(ah->ah_sc);
425 filter = ath5k_hw_reg_read(ah, AR5K_RX_FILTER);
426
427 /*Radar detection for 5212*/
428 if (ah->ah_version == AR5K_AR5212) {
429 data = ath5k_hw_reg_read(ah, AR5K_PHY_ERR_FIL);
430
431 if (data & AR5K_PHY_ERR_FIL_RADAR)
432 filter |= AR5K_RX_FILTER_RADARERR;
433 if (data & (AR5K_PHY_ERR_FIL_OFDM | AR5K_PHY_ERR_FIL_CCK))
434 filter |= AR5K_RX_FILTER_PHYERR;
435 }
436
437 return filter;
438}
439
440/**
441 * ath5k_hw_set_rx_filter - Set rx filter
442 *
443 * @ah: The &struct ath5k_hw
444 * @filter: RX filter mask (see reg.h)
445 *
446 * Sets RX filter register and also handles PHY error filter
447 * register on 5212 and newer chips so that we have proper PHY
448 * error reporting.
449 */
450void ath5k_hw_set_rx_filter(struct ath5k_hw *ah, u32 filter)
451{
452 u32 data = 0;
453
454 ATH5K_TRACE(ah->ah_sc);
455
456 /* Set PHY error filter register on 5212*/
457 if (ah->ah_version == AR5K_AR5212) {
458 if (filter & AR5K_RX_FILTER_RADARERR)
459 data |= AR5K_PHY_ERR_FIL_RADAR;
460 if (filter & AR5K_RX_FILTER_PHYERR)
461 data |= AR5K_PHY_ERR_FIL_OFDM | AR5K_PHY_ERR_FIL_CCK;
462 }
463
464 /*
465 * The AR5210 uses promiscous mode to detect radar activity
466 */
467 if (ah->ah_version == AR5K_AR5210 &&
468 (filter & AR5K_RX_FILTER_RADARERR)) {
469 filter &= ~AR5K_RX_FILTER_RADARERR;
470 filter |= AR5K_RX_FILTER_PROM;
471 }
472
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200473 /*Zero length DMA (phy error reporting) */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300474 if (data)
475 AR5K_REG_ENABLE_BITS(ah, AR5K_RXCFG, AR5K_RXCFG_ZLFDMA);
476 else
477 AR5K_REG_DISABLE_BITS(ah, AR5K_RXCFG, AR5K_RXCFG_ZLFDMA);
478
479 /*Write RX Filter register*/
480 ath5k_hw_reg_write(ah, filter & 0xff, AR5K_RX_FILTER);
481
482 /*Write PHY error filter register on 5212*/
483 if (ah->ah_version == AR5K_AR5212)
484 ath5k_hw_reg_write(ah, data, AR5K_PHY_ERR_FIL);
485
486}
487
488
489/****************\
490* Beacon control *
491\****************/
492
493/**
494 * ath5k_hw_get_tsf32 - Get a 32bit TSF
495 *
496 * @ah: The &struct ath5k_hw
497 *
498 * Returns lower 32 bits of current TSF
499 */
500u32 ath5k_hw_get_tsf32(struct ath5k_hw *ah)
501{
502 ATH5K_TRACE(ah->ah_sc);
503 return ath5k_hw_reg_read(ah, AR5K_TSF_L32);
504}
505
506/**
507 * ath5k_hw_get_tsf64 - Get the full 64bit TSF
508 *
509 * @ah: The &struct ath5k_hw
510 *
511 * Returns the current TSF
512 */
513u64 ath5k_hw_get_tsf64(struct ath5k_hw *ah)
514{
515 u64 tsf = ath5k_hw_reg_read(ah, AR5K_TSF_U32);
516 ATH5K_TRACE(ah->ah_sc);
517
518 return ath5k_hw_reg_read(ah, AR5K_TSF_L32) | (tsf << 32);
519}
520
521/**
Alina Friedrichsen8cab7582009-01-23 05:39:13 +0100522 * ath5k_hw_set_tsf64 - Set a new 64bit TSF
523 *
524 * @ah: The &struct ath5k_hw
525 * @tsf64: The new 64bit TSF
526 *
527 * Sets the new TSF
528 */
529void ath5k_hw_set_tsf64(struct ath5k_hw *ah, u64 tsf64)
530{
531 ATH5K_TRACE(ah->ah_sc);
532
Alina Friedrichsen8cab7582009-01-23 05:39:13 +0100533 ath5k_hw_reg_write(ah, tsf64 & 0xffffffff, AR5K_TSF_L32);
Alina Friedrichsen0ad65bd2009-03-02 23:29:48 +0100534 ath5k_hw_reg_write(ah, (tsf64 >> 32) & 0xffffffff, AR5K_TSF_U32);
Alina Friedrichsen8cab7582009-01-23 05:39:13 +0100535}
536
537/**
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300538 * ath5k_hw_reset_tsf - Force a TSF reset
539 *
540 * @ah: The &struct ath5k_hw
541 *
542 * Forces a TSF reset on PCU
543 */
544void ath5k_hw_reset_tsf(struct ath5k_hw *ah)
545{
Bob Copeland14be9942008-09-28 12:09:43 -0400546 u32 val;
547
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300548 ATH5K_TRACE(ah->ah_sc);
Bob Copeland14be9942008-09-28 12:09:43 -0400549
550 val = ath5k_hw_reg_read(ah, AR5K_BEACON) | AR5K_BEACON_RESET_TSF;
551
552 /*
553 * Each write to the RESET_TSF bit toggles a hardware internal
554 * signal to reset TSF, but if left high it will cause a TSF reset
555 * on the next chip reset as well. Thus we always write the value
556 * twice to clear the signal.
557 */
558 ath5k_hw_reg_write(ah, val, AR5K_BEACON);
559 ath5k_hw_reg_write(ah, val, AR5K_BEACON);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300560}
561
562/*
563 * Initialize beacon timers
564 */
565void ath5k_hw_init_beacon(struct ath5k_hw *ah, u32 next_beacon, u32 interval)
566{
567 u32 timer1, timer2, timer3;
568
569 ATH5K_TRACE(ah->ah_sc);
570 /*
571 * Set the additional timers by mode
572 */
573 switch (ah->ah_op_mode) {
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200574 case NL80211_IFTYPE_MONITOR:
Johannes Berg05c914f2008-09-11 00:01:58 +0200575 case NL80211_IFTYPE_STATION:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200576 /* In STA mode timer1 is used as next wakeup
577 * timer and timer2 as next CFP duration start
578 * timer. Both in 1/8TUs. */
579 /* TODO: PCF handling */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300580 if (ah->ah_version == AR5K_AR5210) {
581 timer1 = 0xffffffff;
582 timer2 = 0xffffffff;
583 } else {
584 timer1 = 0x0000ffff;
585 timer2 = 0x0007ffff;
586 }
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200587 /* Mark associated AP as PCF incapable for now */
588 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, AR5K_STA_ID1_PCF);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300589 break;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200590 case NL80211_IFTYPE_ADHOC:
591 AR5K_REG_ENABLE_BITS(ah, AR5K_TXCFG, AR5K_TXCFG_ADHOC_BCN_ATIM);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300592 default:
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200593 /* On non-STA modes timer1 is used as next DMA
594 * beacon alert (DBA) timer and timer2 as next
595 * software beacon alert. Both in 1/8TUs. */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300596 timer1 = (next_beacon - AR5K_TUNE_DMA_BEACON_RESP) << 3;
597 timer2 = (next_beacon - AR5K_TUNE_SW_BEACON_RESP) << 3;
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200598 break;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300599 }
600
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200601 /* Timer3 marks the end of our ATIM window
602 * a zero length window is not allowed because
603 * we 'll get no beacons */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300604 timer3 = next_beacon + (ah->ah_atim_window ? ah->ah_atim_window : 1);
605
606 /*
607 * Set the beacon register and enable all timers.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300608 */
Nick Kossifidis35edf8a2009-06-12 16:09:53 -0700609 /* When in AP or Mesh Point mode zero timer0 to start TSF */
610 if (ah->ah_op_mode == NL80211_IFTYPE_AP ||
611 ah->ah_op_mode == NL80211_IFTYPE_MESH_POINT)
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200612 ath5k_hw_reg_write(ah, 0, AR5K_TIMER0);
Nick Kossifidis428cbd42009-04-30 15:55:47 -0400613
614 ath5k_hw_reg_write(ah, next_beacon, AR5K_TIMER0);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300615 ath5k_hw_reg_write(ah, timer1, AR5K_TIMER1);
616 ath5k_hw_reg_write(ah, timer2, AR5K_TIMER2);
617 ath5k_hw_reg_write(ah, timer3, AR5K_TIMER3);
618
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200619 /* Force a TSF reset if requested and enable beacons */
620 if (interval & AR5K_BEACON_RESET_TSF)
621 ath5k_hw_reset_tsf(ah);
622
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300623 ath5k_hw_reg_write(ah, interval & (AR5K_BEACON_PERIOD |
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200624 AR5K_BEACON_ENABLE),
625 AR5K_BEACON);
626
627 /* Flush any pending BMISS interrupts on ISR by
628 * performing a clear-on-write operation on PISR
629 * register for the BMISS bit (writing a bit on
630 * ISR togles a reset for that bit and leaves
631 * the rest bits intact) */
632 if (ah->ah_version == AR5K_AR5210)
633 ath5k_hw_reg_write(ah, AR5K_ISR_BMISS, AR5K_ISR);
634 else
635 ath5k_hw_reg_write(ah, AR5K_ISR_BMISS, AR5K_PISR);
636
637 /* TODO: Set enchanced sleep registers on AR5212
638 * based on vif->bss_conf params, until then
639 * disable power save reporting.*/
640 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, AR5K_STA_ID1_PWR_SV);
641
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300642}
643
644#if 0
645/*
646 * Set beacon timers
647 */
648int ath5k_hw_set_beacon_timers(struct ath5k_hw *ah,
649 const struct ath5k_beacon_state *state)
650{
651 u32 cfp_period, next_cfp, dtim, interval, next_beacon;
652
653 /*
654 * TODO: should be changed through *state
655 * review struct ath5k_beacon_state struct
656 *
657 * XXX: These are used for cfp period bellow, are they
658 * ok ? Is it O.K. for tsf here to be 0 or should we use
659 * get_tsf ?
660 */
661 u32 dtim_count = 0; /* XXX */
662 u32 cfp_count = 0; /* XXX */
663 u32 tsf = 0; /* XXX */
664
665 ATH5K_TRACE(ah->ah_sc);
666 /* Return on an invalid beacon state */
667 if (state->bs_interval < 1)
668 return -EINVAL;
669
670 interval = state->bs_interval;
671 dtim = state->bs_dtim_period;
672
673 /*
674 * PCF support?
675 */
676 if (state->bs_cfp_period > 0) {
677 /*
678 * Enable PCF mode and set the CFP
679 * (Contention Free Period) and timer registers
680 */
681 cfp_period = state->bs_cfp_period * state->bs_dtim_period *
682 state->bs_interval;
683 next_cfp = (cfp_count * state->bs_dtim_period + dtim_count) *
684 state->bs_interval;
685
686 AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1,
687 AR5K_STA_ID1_DEFAULT_ANTENNA |
688 AR5K_STA_ID1_PCF);
689 ath5k_hw_reg_write(ah, cfp_period, AR5K_CFP_PERIOD);
690 ath5k_hw_reg_write(ah, state->bs_cfp_max_duration,
691 AR5K_CFP_DUR);
692 ath5k_hw_reg_write(ah, (tsf + (next_cfp == 0 ? cfp_period :
693 next_cfp)) << 3, AR5K_TIMER2);
694 } else {
695 /* Disable PCF mode */
696 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1,
697 AR5K_STA_ID1_DEFAULT_ANTENNA |
698 AR5K_STA_ID1_PCF);
699 }
700
701 /*
702 * Enable the beacon timer register
703 */
704 ath5k_hw_reg_write(ah, state->bs_next_beacon, AR5K_TIMER0);
705
706 /*
707 * Start the beacon timers
708 */
709 ath5k_hw_reg_write(ah, (ath5k_hw_reg_read(ah, AR5K_BEACON) &
710 ~(AR5K_BEACON_PERIOD | AR5K_BEACON_TIM)) |
711 AR5K_REG_SM(state->bs_tim_offset ? state->bs_tim_offset + 4 : 0,
712 AR5K_BEACON_TIM) | AR5K_REG_SM(state->bs_interval,
713 AR5K_BEACON_PERIOD), AR5K_BEACON);
714
715 /*
716 * Write new beacon miss threshold, if it appears to be valid
717 * XXX: Figure out right values for min <= bs_bmiss_threshold <= max
718 * and return if its not in range. We can test this by reading value and
719 * setting value to a largest value and seeing which values register.
720 */
721
722 AR5K_REG_WRITE_BITS(ah, AR5K_RSSI_THR, AR5K_RSSI_THR_BMISS,
723 state->bs_bmiss_threshold);
724
725 /*
726 * Set sleep control register
727 * XXX: Didn't find this in 5210 code but since this register
728 * exists also in ar5k's 5210 headers i leave it as common code.
729 */
730 AR5K_REG_WRITE_BITS(ah, AR5K_SLEEP_CTL, AR5K_SLEEP_CTL_SLDUR,
731 (state->bs_sleep_duration - 3) << 3);
732
733 /*
734 * Set enhanced sleep registers on 5212
735 */
736 if (ah->ah_version == AR5K_AR5212) {
737 if (state->bs_sleep_duration > state->bs_interval &&
738 roundup(state->bs_sleep_duration, interval) ==
739 state->bs_sleep_duration)
740 interval = state->bs_sleep_duration;
741
742 if (state->bs_sleep_duration > dtim && (dtim == 0 ||
743 roundup(state->bs_sleep_duration, dtim) ==
744 state->bs_sleep_duration))
745 dtim = state->bs_sleep_duration;
746
747 if (interval > dtim)
748 return -EINVAL;
749
750 next_beacon = interval == dtim ? state->bs_next_dtim :
751 state->bs_next_beacon;
752
753 ath5k_hw_reg_write(ah,
754 AR5K_REG_SM((state->bs_next_dtim - 3) << 3,
755 AR5K_SLEEP0_NEXT_DTIM) |
756 AR5K_REG_SM(10, AR5K_SLEEP0_CABTO) |
757 AR5K_SLEEP0_ENH_SLEEP_EN |
758 AR5K_SLEEP0_ASSUME_DTIM, AR5K_SLEEP0);
759
760 ath5k_hw_reg_write(ah, AR5K_REG_SM((next_beacon - 3) << 3,
761 AR5K_SLEEP1_NEXT_TIM) |
762 AR5K_REG_SM(10, AR5K_SLEEP1_BEACON_TO), AR5K_SLEEP1);
763
764 ath5k_hw_reg_write(ah,
765 AR5K_REG_SM(interval, AR5K_SLEEP2_TIM_PER) |
766 AR5K_REG_SM(dtim, AR5K_SLEEP2_DTIM_PER), AR5K_SLEEP2);
767 }
768
769 return 0;
770}
771
772/*
773 * Reset beacon timers
774 */
775void ath5k_hw_reset_beacon(struct ath5k_hw *ah)
776{
777 ATH5K_TRACE(ah->ah_sc);
778 /*
779 * Disable beacon timer
780 */
781 ath5k_hw_reg_write(ah, 0, AR5K_TIMER0);
782
783 /*
784 * Disable some beacon register values
785 */
786 AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1,
787 AR5K_STA_ID1_DEFAULT_ANTENNA | AR5K_STA_ID1_PCF);
788 ath5k_hw_reg_write(ah, AR5K_BEACON_PERIOD, AR5K_BEACON);
789}
790
791/*
792 * Wait for beacon queue to finish
793 */
794int ath5k_hw_beaconq_finish(struct ath5k_hw *ah, unsigned long phys_addr)
795{
796 unsigned int i;
797 int ret;
798
799 ATH5K_TRACE(ah->ah_sc);
800
801 /* 5210 doesn't have QCU*/
802 if (ah->ah_version == AR5K_AR5210) {
803 /*
804 * Wait for beaconn queue to finish by checking
805 * Control Register and Beacon Status Register.
806 */
807 for (i = AR5K_TUNE_BEACON_INTERVAL / 2; i > 0; i--) {
808 if (!(ath5k_hw_reg_read(ah, AR5K_BSR) & AR5K_BSR_TXQ1F)
809 ||
810 !(ath5k_hw_reg_read(ah, AR5K_CR) & AR5K_BSR_TXQ1F))
811 break;
812 udelay(10);
813 }
814
815 /* Timeout... */
816 if (i <= 0) {
817 /*
818 * Re-schedule the beacon queue
819 */
820 ath5k_hw_reg_write(ah, phys_addr, AR5K_NOQCU_TXDP1);
821 ath5k_hw_reg_write(ah, AR5K_BCR_TQ1V | AR5K_BCR_BDMAE,
822 AR5K_BCR);
823
824 return -EIO;
825 }
826 ret = 0;
827 } else {
828 /*5211/5212*/
829 ret = ath5k_hw_register_timeout(ah,
830 AR5K_QUEUE_STATUS(AR5K_TX_QUEUE_ID_BEACON),
831 AR5K_QCU_STS_FRMPENDCNT, 0, false);
832
833 if (AR5K_REG_READ_Q(ah, AR5K_QCU_TXE, AR5K_TX_QUEUE_ID_BEACON))
834 return -EIO;
835 }
836
837 return ret;
838}
839#endif
840
841
842/*********************\
843* Key table functions *
844\*********************/
845
846/*
847 * Reset a key entry on the table
848 */
849int ath5k_hw_reset_key(struct ath5k_hw *ah, u16 entry)
850{
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200851 unsigned int i, type;
Bob Copeland17683c62008-10-29 23:24:26 -0400852 u16 micentry = entry + AR5K_KEYTABLE_MIC_OFFSET;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300853
854 ATH5K_TRACE(ah->ah_sc);
855 AR5K_ASSERT_ENTRY(entry, AR5K_KEYTABLE_SIZE);
856
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200857 type = ath5k_hw_reg_read(ah, AR5K_KEYTABLE_TYPE(entry));
858
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300859 for (i = 0; i < AR5K_KEYCACHE_SIZE; i++)
860 ath5k_hw_reg_write(ah, 0, AR5K_KEYTABLE_OFF(entry, i));
861
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200862 /* Reset associated MIC entry if TKIP
863 * is enabled located at offset (entry + 64) */
864 if (type == AR5K_KEYTABLE_TYPE_TKIP) {
Bob Copeland17683c62008-10-29 23:24:26 -0400865 AR5K_ASSERT_ENTRY(micentry, AR5K_KEYTABLE_SIZE);
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200866 for (i = 0; i < AR5K_KEYCACHE_SIZE / 2 ; i++)
Bob Copeland17683c62008-10-29 23:24:26 -0400867 ath5k_hw_reg_write(ah, 0,
868 AR5K_KEYTABLE_OFF(micentry, i));
Nick Kossifidisf07a6c42008-10-29 04:28:28 +0200869 }
870
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300871 /*
872 * Set NULL encryption on AR5212+
873 *
874 * Note: AR5K_KEYTABLE_TYPE -> AR5K_KEYTABLE_OFF(entry, 5)
875 * AR5K_KEYTABLE_TYPE_NULL -> 0x00000007
876 *
877 * Note2: Windows driver (ndiswrapper) sets this to
878 * 0x00000714 instead of 0x00000007
879 */
Jiri Slabyded7a7e2009-04-25 14:09:23 +0200880 if (ah->ah_version >= AR5K_AR5211) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300881 ath5k_hw_reg_write(ah, AR5K_KEYTABLE_TYPE_NULL,
882 AR5K_KEYTABLE_TYPE(entry));
883
Bob Copeland17683c62008-10-29 23:24:26 -0400884 if (type == AR5K_KEYTABLE_TYPE_TKIP) {
885 ath5k_hw_reg_write(ah, AR5K_KEYTABLE_TYPE_NULL,
886 AR5K_KEYTABLE_TYPE(micentry));
887 }
888 }
889
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300890 return 0;
891}
892
893/*
894 * Check if a table entry is valid
895 */
896int ath5k_hw_is_key_valid(struct ath5k_hw *ah, u16 entry)
897{
898 ATH5K_TRACE(ah->ah_sc);
899 AR5K_ASSERT_ENTRY(entry, AR5K_KEYTABLE_SIZE);
900
901 /* Check the validation flag at the end of the entry */
902 return ath5k_hw_reg_read(ah, AR5K_KEYTABLE_MAC1(entry)) &
903 AR5K_KEYTABLE_VALID;
904}
905
Bob Copeland671434902008-11-25 20:55:21 -0500906static
907int ath5k_keycache_type(const struct ieee80211_key_conf *key)
908{
909 switch (key->alg) {
910 case ALG_TKIP:
911 return AR5K_KEYTABLE_TYPE_TKIP;
912 case ALG_CCMP:
913 return AR5K_KEYTABLE_TYPE_CCM;
914 case ALG_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +0800915 if (key->keylen == WLAN_KEY_LEN_WEP40)
Bob Copeland671434902008-11-25 20:55:21 -0500916 return AR5K_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +0800917 else if (key->keylen == WLAN_KEY_LEN_WEP104)
Bob Copeland671434902008-11-25 20:55:21 -0500918 return AR5K_KEYTABLE_TYPE_104;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200919 return -EINVAL;
920 default:
921 return -EINVAL;
Bob Copeland671434902008-11-25 20:55:21 -0500922 }
923 return -EINVAL;
924}
925
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300926/*
927 * Set a key entry on the table
928 */
929int ath5k_hw_set_key(struct ath5k_hw *ah, u16 entry,
930 const struct ieee80211_key_conf *key, const u8 *mac)
931{
932 unsigned int i;
Bob Copeland3f64b432008-10-29 23:19:14 -0400933 int keylen;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300934 __le32 key_v[5] = {};
Bob Copeland3f64b432008-10-29 23:19:14 -0400935 __le32 key0 = 0, key1 = 0;
936 __le32 *rxmic, *txmic;
Roel Kluin672cf3c2009-01-18 23:50:27 +0100937 int keytype;
Bob Copeland3f64b432008-10-29 23:19:14 -0400938 u16 micentry = entry + AR5K_KEYTABLE_MIC_OFFSET;
939 bool is_tkip;
Bob Copeland671434902008-11-25 20:55:21 -0500940 const u8 *key_ptr;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300941
942 ATH5K_TRACE(ah->ah_sc);
943
Bob Copeland3f64b432008-10-29 23:19:14 -0400944 is_tkip = (key->alg == ALG_TKIP);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300945
Bob Copeland3f64b432008-10-29 23:19:14 -0400946 /*
947 * key->keylen comes in from mac80211 in bytes.
948 * TKIP is 128 bit + 128 bit mic
949 */
950 keylen = (is_tkip) ? (128 / 8) : key->keylen;
951
952 if (entry > AR5K_KEYTABLE_SIZE ||
953 (is_tkip && micentry > AR5K_KEYTABLE_SIZE))
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300954 return -EOPNOTSUPP;
955
Bob Copeland671434902008-11-25 20:55:21 -0500956 if (unlikely(keylen > 16))
957 return -EOPNOTSUPP;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300958
Bob Copeland671434902008-11-25 20:55:21 -0500959 keytype = ath5k_keycache_type(key);
960 if (keytype < 0)
961 return keytype;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300962
Bob Copeland671434902008-11-25 20:55:21 -0500963 /*
964 * each key block is 6 bytes wide, written as pairs of
965 * alternating 32 and 16 bit le values.
966 */
967 key_ptr = key->key;
968 for (i = 0; keylen >= 6; keylen -= 6) {
969 memcpy(&key_v[i], key_ptr, 6);
970 i += 2;
971 key_ptr += 6;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300972 }
Bob Copeland671434902008-11-25 20:55:21 -0500973 if (keylen)
974 memcpy(&key_v[i], key_ptr, keylen);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300975
Bob Copeland3f64b432008-10-29 23:19:14 -0400976 /* intentionally corrupt key until mic is installed */
977 if (is_tkip) {
978 key0 = key_v[0] = ~key_v[0];
979 key1 = key_v[1] = ~key_v[1];
980 }
981
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300982 for (i = 0; i < ARRAY_SIZE(key_v); i++)
983 ath5k_hw_reg_write(ah, le32_to_cpu(key_v[i]),
984 AR5K_KEYTABLE_OFF(entry, i));
985
986 ath5k_hw_reg_write(ah, keytype, AR5K_KEYTABLE_TYPE(entry));
987
Bob Copeland3f64b432008-10-29 23:19:14 -0400988 if (is_tkip) {
989 /* Install rx/tx MIC */
990 rxmic = (__le32 *) &key->key[16];
991 txmic = (__le32 *) &key->key[24];
Bob Copelandf6504702008-11-26 16:17:25 -0500992
993 if (ah->ah_combined_mic) {
994 key_v[0] = rxmic[0];
Bob Copeland388cdf32008-12-09 23:05:38 -0500995 key_v[1] = cpu_to_le32(le32_to_cpu(txmic[0]) >> 16);
Bob Copelandf6504702008-11-26 16:17:25 -0500996 key_v[2] = rxmic[1];
Bob Copeland388cdf32008-12-09 23:05:38 -0500997 key_v[3] = cpu_to_le32(le32_to_cpu(txmic[0]) & 0xffff);
Bob Copelandf6504702008-11-26 16:17:25 -0500998 key_v[4] = txmic[1];
999 } else {
1000 key_v[0] = rxmic[0];
1001 key_v[1] = 0;
1002 key_v[2] = rxmic[1];
1003 key_v[3] = 0;
1004 key_v[4] = 0;
1005 }
Bob Copeland3f64b432008-10-29 23:19:14 -04001006 for (i = 0; i < ARRAY_SIZE(key_v); i++)
1007 ath5k_hw_reg_write(ah, le32_to_cpu(key_v[i]),
1008 AR5K_KEYTABLE_OFF(micentry, i));
1009
1010 ath5k_hw_reg_write(ah, AR5K_KEYTABLE_TYPE_NULL,
1011 AR5K_KEYTABLE_TYPE(micentry));
1012 ath5k_hw_reg_write(ah, 0, AR5K_KEYTABLE_MAC0(micentry));
1013 ath5k_hw_reg_write(ah, 0, AR5K_KEYTABLE_MAC1(micentry));
1014
1015 /* restore first 2 words of key */
1016 ath5k_hw_reg_write(ah, le32_to_cpu(~key0),
1017 AR5K_KEYTABLE_OFF(entry, 0));
1018 ath5k_hw_reg_write(ah, le32_to_cpu(~key1),
1019 AR5K_KEYTABLE_OFF(entry, 1));
1020 }
1021
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001022 return ath5k_hw_set_key_lladdr(ah, entry, mac);
1023}
1024
1025int ath5k_hw_set_key_lladdr(struct ath5k_hw *ah, u16 entry, const u8 *mac)
1026{
1027 u32 low_id, high_id;
1028
1029 ATH5K_TRACE(ah->ah_sc);
1030 /* Invalid entry (key table overflow) */
1031 AR5K_ASSERT_ENTRY(entry, AR5K_KEYTABLE_SIZE);
1032
Luis R. Rodriguezbcd8f542009-09-09 22:43:17 -07001033 /*
1034 * MAC may be NULL if it's a broadcast key. In this case no need to
1035 * to compute get_unaligned_le32 and get_unaligned_le16 as we
1036 * already know it.
1037 */
Johannes Bergdc822b52008-12-29 12:55:09 +01001038 if (!mac) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001039 low_id = 0xffffffff;
1040 high_id = 0xffff | AR5K_KEYTABLE_VALID;
1041 } else {
Luis R. Rodriguezbcd8f542009-09-09 22:43:17 -07001042 low_id = get_unaligned_le32(mac);
1043 high_id = get_unaligned_le16(mac + 4) | AR5K_KEYTABLE_VALID;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001044 }
1045
1046 ath5k_hw_reg_write(ah, low_id, AR5K_KEYTABLE_MAC0(entry));
1047 ath5k_hw_reg_write(ah, high_id, AR5K_KEYTABLE_MAC1(entry));
1048
1049 return 0;
1050}
1051