123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763 |
- /*
- * Copyright (c) 2004-2008 Reyk Floeter <reyk@openbsd.org>
- * Copyright (c) 2006-2008 Nick Kossifidis <mickflemm@gmail.com>
- * Copyright (c) 2007-2008 Matthew W. S. Bell <mentor@madwifi.org>
- * Copyright (c) 2007-2008 Luis Rodriguez <mcgrof@winlab.rutgers.edu>
- * Copyright (c) 2007-2008 Pavel Roskin <proski@gnu.org>
- * Copyright (c) 2007-2008 Jiri Slaby <jirislaby@gmail.com>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- *
- */
- /*********************************\
- * Protocol Control Unit Functions *
- \*********************************/
- #include <asm/unaligned.h>
- #include "ath5k.h"
- #include "reg.h"
- #include "debug.h"
- #include "base.h"
- /*******************\
- * Generic functions *
- \*******************/
- /**
- * ath5k_hw_set_opmode - Set PCU operating mode
- *
- * @ah: The &struct ath5k_hw
- * @op_mode: &enum nl80211_iftype operating mode
- *
- * Initialize PCU for the various operating modes (AP/STA etc)
- */
- int ath5k_hw_set_opmode(struct ath5k_hw *ah, enum nl80211_iftype op_mode)
- {
- struct ath_common *common = ath5k_hw_common(ah);
- u32 pcu_reg, beacon_reg, low_id, high_id;
- ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_MODE, "mode %d\n", op_mode);
- /* Preserve rest settings */
- pcu_reg = ath5k_hw_reg_read(ah, AR5K_STA_ID1) & 0xffff0000;
- pcu_reg &= ~(AR5K_STA_ID1_ADHOC | AR5K_STA_ID1_AP
- | AR5K_STA_ID1_KEYSRCH_MODE
- | (ah->ah_version == AR5K_AR5210 ?
- (AR5K_STA_ID1_PWR_SV | AR5K_STA_ID1_NO_PSPOLL) : 0));
- beacon_reg = 0;
- switch (op_mode) {
- case NL80211_IFTYPE_ADHOC:
- pcu_reg |= AR5K_STA_ID1_ADHOC | AR5K_STA_ID1_KEYSRCH_MODE;
- beacon_reg |= AR5K_BCR_ADHOC;
- if (ah->ah_version == AR5K_AR5210)
- pcu_reg |= AR5K_STA_ID1_NO_PSPOLL;
- else
- AR5K_REG_ENABLE_BITS(ah, AR5K_CFG, AR5K_CFG_IBSS);
- break;
- case NL80211_IFTYPE_AP:
- case NL80211_IFTYPE_MESH_POINT:
- pcu_reg |= AR5K_STA_ID1_AP | AR5K_STA_ID1_KEYSRCH_MODE;
- beacon_reg |= AR5K_BCR_AP;
- if (ah->ah_version == AR5K_AR5210)
- pcu_reg |= AR5K_STA_ID1_NO_PSPOLL;
- else
- AR5K_REG_DISABLE_BITS(ah, AR5K_CFG, AR5K_CFG_IBSS);
- break;
- case NL80211_IFTYPE_STATION:
- pcu_reg |= AR5K_STA_ID1_KEYSRCH_MODE
- | (ah->ah_version == AR5K_AR5210 ?
- AR5K_STA_ID1_PWR_SV : 0);
- case NL80211_IFTYPE_MONITOR:
- pcu_reg |= AR5K_STA_ID1_KEYSRCH_MODE
- | (ah->ah_version == AR5K_AR5210 ?
- AR5K_STA_ID1_NO_PSPOLL : 0);
- break;
- default:
- return -EINVAL;
- }
- /*
- * Set PCU registers
- */
- low_id = get_unaligned_le32(common->macaddr);
- high_id = get_unaligned_le16(common->macaddr + 4);
- ath5k_hw_reg_write(ah, low_id, AR5K_STA_ID0);
- ath5k_hw_reg_write(ah, pcu_reg | high_id, AR5K_STA_ID1);
- /*
- * Set Beacon Control Register on 5210
- */
- if (ah->ah_version == AR5K_AR5210)
- ath5k_hw_reg_write(ah, beacon_reg, AR5K_BCR);
- return 0;
- }
- /**
- * ath5k_hw_update - Update MIB counters (mac layer statistics)
- *
- * @ah: The &struct ath5k_hw
- *
- * Reads MIB counters from PCU and updates sw statistics. Is called after a
- * MIB interrupt, because one of these counters might have reached their maximum
- * and triggered the MIB interrupt, to let us read and clear the counter.
- *
- * Is called in interrupt context!
- */
- void ath5k_hw_update_mib_counters(struct ath5k_hw *ah)
- {
- struct ath5k_statistics *stats = &ah->ah_sc->stats;
- /* Read-And-Clear */
- stats->ack_fail += ath5k_hw_reg_read(ah, AR5K_ACK_FAIL);
- stats->rts_fail += ath5k_hw_reg_read(ah, AR5K_RTS_FAIL);
- stats->rts_ok += ath5k_hw_reg_read(ah, AR5K_RTS_OK);
- stats->fcs_error += ath5k_hw_reg_read(ah, AR5K_FCS_FAIL);
- stats->beacons += ath5k_hw_reg_read(ah, AR5K_BEACON_CNT);
- }
- /**
- * ath5k_hw_set_ack_bitrate - set bitrate for ACKs
- *
- * @ah: The &struct ath5k_hw
- * @high: Flag to determine if we want to use high transmission rate
- * for ACKs or not
- *
- * If high flag is set, we tell hw to use a set of control rates based on
- * the current transmission rate (check out control_rates array inside reset.c).
- * If not hw just uses the lowest rate available for the current modulation
- * scheme being used (1Mbit for CCK and 6Mbits for OFDM).
- */
- void ath5k_hw_set_ack_bitrate_high(struct ath5k_hw *ah, bool high)
- {
- if (ah->ah_version != AR5K_AR5212)
- return;
- else {
- u32 val = AR5K_STA_ID1_BASE_RATE_11B | AR5K_STA_ID1_ACKCTS_6MB;
- if (high)
- AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, val);
- else
- AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, val);
- }
- }
- /******************\
- * ACK/CTS Timeouts *
- \******************/
- /**
- * ath5k_hw_set_ack_timeout - Set ACK timeout on PCU
- *
- * @ah: The &struct ath5k_hw
- * @timeout: Timeout in usec
- */
- static int ath5k_hw_set_ack_timeout(struct ath5k_hw *ah, unsigned int timeout)
- {
- if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_ACK))
- <= timeout)
- return -EINVAL;
- AR5K_REG_WRITE_BITS(ah, AR5K_TIME_OUT, AR5K_TIME_OUT_ACK,
- ath5k_hw_htoclock(ah, timeout));
- return 0;
- }
- /**
- * ath5k_hw_set_cts_timeout - Set CTS timeout on PCU
- *
- * @ah: The &struct ath5k_hw
- * @timeout: Timeout in usec
- */
- static int ath5k_hw_set_cts_timeout(struct ath5k_hw *ah, unsigned int timeout)
- {
- if (ath5k_hw_clocktoh(ah, AR5K_REG_MS(0xffffffff, AR5K_TIME_OUT_CTS))
- <= timeout)
- return -EINVAL;
- AR5K_REG_WRITE_BITS(ah, AR5K_TIME_OUT, AR5K_TIME_OUT_CTS,
- ath5k_hw_htoclock(ah, timeout));
- return 0;
- }
- /**
- * ath5k_hw_htoclock - Translate usec to hw clock units
- *
- * @ah: The &struct ath5k_hw
- * @usec: value in microseconds
- */
- unsigned int ath5k_hw_htoclock(struct ath5k_hw *ah, unsigned int usec)
- {
- struct ath_common *common = ath5k_hw_common(ah);
- return usec * common->clockrate;
- }
- /**
- * ath5k_hw_clocktoh - Translate hw clock units to usec
- * @clock: value in hw clock units
- */
- unsigned int ath5k_hw_clocktoh(struct ath5k_hw *ah, unsigned int clock)
- {
- struct ath_common *common = ath5k_hw_common(ah);
- return clock / common->clockrate;
- }
- /**
- * ath5k_hw_set_clockrate - Set common->clockrate for the current channel
- *
- * @ah: The &struct ath5k_hw
- */
- void ath5k_hw_set_clockrate(struct ath5k_hw *ah)
- {
- struct ieee80211_channel *channel = ah->ah_current_channel;
- struct ath_common *common = ath5k_hw_common(ah);
- int clock;
- if (channel->hw_value & CHANNEL_5GHZ)
- clock = 40; /* 802.11a */
- else if (channel->hw_value & CHANNEL_CCK)
- clock = 22; /* 802.11b */
- else
- clock = 44; /* 802.11g */
- /* Clock rate in turbo modes is twice the normal rate */
- if (channel->hw_value & CHANNEL_TURBO)
- clock *= 2;
- common->clockrate = clock;
- }
- /**
- * ath5k_hw_get_default_slottime - Get the default slot time for current mode
- *
- * @ah: The &struct ath5k_hw
- */
- static unsigned int ath5k_hw_get_default_slottime(struct ath5k_hw *ah)
- {
- struct ieee80211_channel *channel = ah->ah_current_channel;
- if (channel->hw_value & CHANNEL_TURBO)
- return 6; /* both turbo modes */
- if (channel->hw_value & CHANNEL_CCK)
- return 20; /* 802.11b */
- return 9; /* 802.11 a/g */
- }
- /**
- * ath5k_hw_get_default_sifs - Get the default SIFS for current mode
- *
- * @ah: The &struct ath5k_hw
- */
- static unsigned int ath5k_hw_get_default_sifs(struct ath5k_hw *ah)
- {
- struct ieee80211_channel *channel = ah->ah_current_channel;
- if (channel->hw_value & CHANNEL_TURBO)
- return 8; /* both turbo modes */
- if (channel->hw_value & CHANNEL_5GHZ)
- return 16; /* 802.11a */
- return 10; /* 802.11 b/g */
- }
- /**
- * ath5k_hw_set_lladdr - Set station id
- *
- * @ah: The &struct ath5k_hw
- * @mac: The card's mac address
- *
- * Set station id on hw using the provided mac address
- */
- int ath5k_hw_set_lladdr(struct ath5k_hw *ah, const u8 *mac)
- {
- struct ath_common *common = ath5k_hw_common(ah);
- u32 low_id, high_id;
- u32 pcu_reg;
- /* Set new station ID */
- memcpy(common->macaddr, mac, ETH_ALEN);
- pcu_reg = ath5k_hw_reg_read(ah, AR5K_STA_ID1) & 0xffff0000;
- low_id = get_unaligned_le32(mac);
- high_id = get_unaligned_le16(mac + 4);
- ath5k_hw_reg_write(ah, low_id, AR5K_STA_ID0);
- ath5k_hw_reg_write(ah, pcu_reg | high_id, AR5K_STA_ID1);
- return 0;
- }
- /**
- * ath5k_hw_set_bssid - Set current BSSID on hw
- *
- * @ah: The &struct ath5k_hw
- *
- * Sets the current BSSID and BSSID mask we have from the
- * common struct into the hardware
- */
- void ath5k_hw_set_bssid(struct ath5k_hw *ah)
- {
- struct ath_common *common = ath5k_hw_common(ah);
- u16 tim_offset = 0;
- /*
- * Set BSSID mask on 5212
- */
- if (ah->ah_version == AR5K_AR5212)
- ath_hw_setbssidmask(common);
- /*
- * Set BSSID
- */
- ath5k_hw_reg_write(ah,
- get_unaligned_le32(common->curbssid),
- AR5K_BSS_ID0);
- ath5k_hw_reg_write(ah,
- get_unaligned_le16(common->curbssid + 4) |
- ((common->curaid & 0x3fff) << AR5K_BSS_ID1_AID_S),
- AR5K_BSS_ID1);
- if (common->curaid == 0) {
- ath5k_hw_disable_pspoll(ah);
- return;
- }
- AR5K_REG_WRITE_BITS(ah, AR5K_BEACON, AR5K_BEACON_TIM,
- tim_offset ? tim_offset + 4 : 0);
- ath5k_hw_enable_pspoll(ah, NULL, 0);
- }
- void ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask)
- {
- struct ath_common *common = ath5k_hw_common(ah);
- /* Cache bssid mask so that we can restore it
- * on reset */
- memcpy(common->bssidmask, mask, ETH_ALEN);
- if (ah->ah_version == AR5K_AR5212)
- ath_hw_setbssidmask(common);
- }
- /************\
- * RX Control *
- \************/
- /**
- * ath5k_hw_start_rx_pcu - Start RX engine
- *
- * @ah: The &struct ath5k_hw
- *
- * Starts RX engine on PCU so that hw can process RXed frames
- * (ACK etc).
- *
- * NOTE: RX DMA should be already enabled using ath5k_hw_start_rx_dma
- */
- void ath5k_hw_start_rx_pcu(struct ath5k_hw *ah)
- {
- AR5K_REG_DISABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX);
- }
- /**
- * at5k_hw_stop_rx_pcu - Stop RX engine
- *
- * @ah: The &struct ath5k_hw
- *
- * Stops RX engine on PCU
- *
- * TODO: Detach ANI here
- */
- void ath5k_hw_stop_rx_pcu(struct ath5k_hw *ah)
- {
- AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW, AR5K_DIAG_SW_DIS_RX);
- }
- /*
- * Set multicast filter
- */
- void ath5k_hw_set_mcast_filter(struct ath5k_hw *ah, u32 filter0, u32 filter1)
- {
- ath5k_hw_reg_write(ah, filter0, AR5K_MCAST_FILTER0);
- ath5k_hw_reg_write(ah, filter1, AR5K_MCAST_FILTER1);
- }
- /**
- * ath5k_hw_get_rx_filter - Get current rx filter
- *
- * @ah: The &struct ath5k_hw
- *
- * Returns the RX filter by reading rx filter and
- * phy error filter registers. RX filter is used
- * to set the allowed frame types that PCU will accept
- * and pass to the driver. For a list of frame types
- * check out reg.h.
- */
- u32 ath5k_hw_get_rx_filter(struct ath5k_hw *ah)
- {
- u32 data, filter = 0;
- filter = ath5k_hw_reg_read(ah, AR5K_RX_FILTER);
- /*Radar detection for 5212*/
- if (ah->ah_version == AR5K_AR5212) {
- data = ath5k_hw_reg_read(ah, AR5K_PHY_ERR_FIL);
- if (data & AR5K_PHY_ERR_FIL_RADAR)
- filter |= AR5K_RX_FILTER_RADARERR;
- if (data & (AR5K_PHY_ERR_FIL_OFDM | AR5K_PHY_ERR_FIL_CCK))
- filter |= AR5K_RX_FILTER_PHYERR;
- }
- return filter;
- }
- /**
- * ath5k_hw_set_rx_filter - Set rx filter
- *
- * @ah: The &struct ath5k_hw
- * @filter: RX filter mask (see reg.h)
- *
- * Sets RX filter register and also handles PHY error filter
- * register on 5212 and newer chips so that we have proper PHY
- * error reporting.
- */
- void ath5k_hw_set_rx_filter(struct ath5k_hw *ah, u32 filter)
- {
- u32 data = 0;
- /* Set PHY error filter register on 5212*/
- if (ah->ah_version == AR5K_AR5212) {
- if (filter & AR5K_RX_FILTER_RADARERR)
- data |= AR5K_PHY_ERR_FIL_RADAR;
- if (filter & AR5K_RX_FILTER_PHYERR)
- data |= AR5K_PHY_ERR_FIL_OFDM | AR5K_PHY_ERR_FIL_CCK;
- }
- /*
- * The AR5210 uses promiscous mode to detect radar activity
- */
- if (ah->ah_version == AR5K_AR5210 &&
- (filter & AR5K_RX_FILTER_RADARERR)) {
- filter &= ~AR5K_RX_FILTER_RADARERR;
- filter |= AR5K_RX_FILTER_PROM;
- }
- /*Zero length DMA (phy error reporting) */
- if (data)
- AR5K_REG_ENABLE_BITS(ah, AR5K_RXCFG, AR5K_RXCFG_ZLFDMA);
- else
- AR5K_REG_DISABLE_BITS(ah, AR5K_RXCFG, AR5K_RXCFG_ZLFDMA);
- /*Write RX Filter register*/
- ath5k_hw_reg_write(ah, filter & 0xff, AR5K_RX_FILTER);
- /*Write PHY error filter register on 5212*/
- if (ah->ah_version == AR5K_AR5212)
- ath5k_hw_reg_write(ah, data, AR5K_PHY_ERR_FIL);
- }
- /****************\
- * Beacon control *
- \****************/
- #define ATH5K_MAX_TSF_READ 10
- /**
- * ath5k_hw_get_tsf64 - Get the full 64bit TSF
- *
- * @ah: The &struct ath5k_hw
- *
- * Returns the current TSF
- */
- u64 ath5k_hw_get_tsf64(struct ath5k_hw *ah)
- {
- u32 tsf_lower, tsf_upper1, tsf_upper2;
- int i;
- unsigned long flags;
- /* This code is time critical - we don't want to be interrupted here */
- local_irq_save(flags);
- /*
- * While reading TSF upper and then lower part, the clock is still
- * counting (or jumping in case of IBSS merge) so we might get
- * inconsistent values. To avoid this, we read the upper part again
- * and check it has not been changed. We make the hypothesis that a
- * maximum of 3 changes can happens in a row (we use 10 as a safe
- * value).
- *
- * Impact on performance is pretty small, since in most cases, only
- * 3 register reads are needed.
- */
- tsf_upper1 = ath5k_hw_reg_read(ah, AR5K_TSF_U32);
- for (i = 0; i < ATH5K_MAX_TSF_READ; i++) {
- tsf_lower = ath5k_hw_reg_read(ah, AR5K_TSF_L32);
- tsf_upper2 = ath5k_hw_reg_read(ah, AR5K_TSF_U32);
- if (tsf_upper2 == tsf_upper1)
- break;
- tsf_upper1 = tsf_upper2;
- }
- local_irq_restore(flags);
- WARN_ON( i == ATH5K_MAX_TSF_READ );
- return (((u64)tsf_upper1 << 32) | tsf_lower);
- }
- /**
- * ath5k_hw_set_tsf64 - Set a new 64bit TSF
- *
- * @ah: The &struct ath5k_hw
- * @tsf64: The new 64bit TSF
- *
- * Sets the new TSF
- */
- void ath5k_hw_set_tsf64(struct ath5k_hw *ah, u64 tsf64)
- {
- ath5k_hw_reg_write(ah, tsf64 & 0xffffffff, AR5K_TSF_L32);
- ath5k_hw_reg_write(ah, (tsf64 >> 32) & 0xffffffff, AR5K_TSF_U32);
- }
- /**
- * ath5k_hw_reset_tsf - Force a TSF reset
- *
- * @ah: The &struct ath5k_hw
- *
- * Forces a TSF reset on PCU
- */
- void ath5k_hw_reset_tsf(struct ath5k_hw *ah)
- {
- u32 val;
- val = ath5k_hw_reg_read(ah, AR5K_BEACON) | AR5K_BEACON_RESET_TSF;
- /*
- * Each write to the RESET_TSF bit toggles a hardware internal
- * signal to reset TSF, but if left high it will cause a TSF reset
- * on the next chip reset as well. Thus we always write the value
- * twice to clear the signal.
- */
- ath5k_hw_reg_write(ah, val, AR5K_BEACON);
- ath5k_hw_reg_write(ah, val, AR5K_BEACON);
- }
- /*
- * Initialize beacon timers
- */
- void ath5k_hw_init_beacon(struct ath5k_hw *ah, u32 next_beacon, u32 interval)
- {
- u32 timer1, timer2, timer3;
- /*
- * Set the additional timers by mode
- */
- switch (ah->ah_sc->opmode) {
- case NL80211_IFTYPE_MONITOR:
- case NL80211_IFTYPE_STATION:
- /* In STA mode timer1 is used as next wakeup
- * timer and timer2 as next CFP duration start
- * timer. Both in 1/8TUs. */
- /* TODO: PCF handling */
- if (ah->ah_version == AR5K_AR5210) {
- timer1 = 0xffffffff;
- timer2 = 0xffffffff;
- } else {
- timer1 = 0x0000ffff;
- timer2 = 0x0007ffff;
- }
- /* Mark associated AP as PCF incapable for now */
- AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, AR5K_STA_ID1_PCF);
- break;
- case NL80211_IFTYPE_ADHOC:
- AR5K_REG_ENABLE_BITS(ah, AR5K_TXCFG, AR5K_TXCFG_ADHOC_BCN_ATIM);
- default:
- /* On non-STA modes timer1 is used as next DMA
- * beacon alert (DBA) timer and timer2 as next
- * software beacon alert. Both in 1/8TUs. */
- timer1 = (next_beacon - AR5K_TUNE_DMA_BEACON_RESP) << 3;
- timer2 = (next_beacon - AR5K_TUNE_SW_BEACON_RESP) << 3;
- break;
- }
- /* Timer3 marks the end of our ATIM window
- * a zero length window is not allowed because
- * we 'll get no beacons */
- timer3 = next_beacon + 1;
- /*
- * Set the beacon register and enable all timers.
- */
- /* When in AP or Mesh Point mode zero timer0 to start TSF */
- if (ah->ah_sc->opmode == NL80211_IFTYPE_AP ||
- ah->ah_sc->opmode == NL80211_IFTYPE_MESH_POINT)
- ath5k_hw_reg_write(ah, 0, AR5K_TIMER0);
- ath5k_hw_reg_write(ah, next_beacon, AR5K_TIMER0);
- ath5k_hw_reg_write(ah, timer1, AR5K_TIMER1);
- ath5k_hw_reg_write(ah, timer2, AR5K_TIMER2);
- ath5k_hw_reg_write(ah, timer3, AR5K_TIMER3);
- /* Force a TSF reset if requested and enable beacons */
- if (interval & AR5K_BEACON_RESET_TSF)
- ath5k_hw_reset_tsf(ah);
- ath5k_hw_reg_write(ah, interval & (AR5K_BEACON_PERIOD |
- AR5K_BEACON_ENABLE),
- AR5K_BEACON);
- /* Flush any pending BMISS interrupts on ISR by
- * performing a clear-on-write operation on PISR
- * register for the BMISS bit (writing a bit on
- * ISR togles a reset for that bit and leaves
- * the rest bits intact) */
- if (ah->ah_version == AR5K_AR5210)
- ath5k_hw_reg_write(ah, AR5K_ISR_BMISS, AR5K_ISR);
- else
- ath5k_hw_reg_write(ah, AR5K_ISR_BMISS, AR5K_PISR);
- /* TODO: Set enchanced sleep registers on AR5212
- * based on vif->bss_conf params, until then
- * disable power save reporting.*/
- AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, AR5K_STA_ID1_PWR_SV);
- }
- /**
- * ath5k_check_timer_win - Check if timer B is timer A + window
- *
- * @a: timer a (before b)
- * @b: timer b (after a)
- * @window: difference between a and b
- * @intval: timers are increased by this interval
- *
- * This helper function checks if timer B is timer A + window and covers
- * cases where timer A or B might have already been updated or wrapped
- * around (Timers are 16 bit).
- *
- * Returns true if O.K.
- */
- static inline bool
- ath5k_check_timer_win(int a, int b, int window, int intval)
- {
- /*
- * 1.) usually B should be A + window
- * 2.) A already updated, B not updated yet
- * 3.) A already updated and has wrapped around
- * 4.) B has wrapped around
- */
- if ((b - a == window) || /* 1.) */
- (a - b == intval - window) || /* 2.) */
- ((a | 0x10000) - b == intval - window) || /* 3.) */
- ((b | 0x10000) - a == window)) /* 4.) */
- return true; /* O.K. */
- return false;
- }
- /**
- * ath5k_hw_check_beacon_timers - Check if the beacon timers are correct
- *
- * @ah: The &struct ath5k_hw
- * @intval: beacon interval
- *
- * This is a workaround for IBSS mode:
- *
- * The need for this function arises from the fact that we have 4 separate
- * HW timer registers (TIMER0 - TIMER3), which are closely related to the
- * next beacon target time (NBTT), and that the HW updates these timers
- * seperately based on the current TSF value. The hardware increments each
- * timer by the beacon interval, when the local TSF coverted to TU is equal
- * to the value stored in the timer.
- *
- * The reception of a beacon with the same BSSID can update the local HW TSF
- * at any time - this is something we can't avoid. If the TSF jumps to a
- * time which is later than the time stored in a timer, this timer will not
- * be updated until the TSF in TU wraps around at 16 bit (the size of the
- * timers) and reaches the time which is stored in the timer.
- *
- * The problem is that these timers are closely related to TIMER0 (NBTT) and
- * that they define a time "window". When the TSF jumps between two timers
- * (e.g. ATIM and NBTT), the one in the past will be left behind (not
- * updated), while the one in the future will be updated every beacon
- * interval. This causes the window to get larger, until the TSF wraps
- * around as described above and the timer which was left behind gets
- * updated again. But - because the beacon interval is usually not an exact
- * divisor of the size of the timers (16 bit), an unwanted "window" between
- * these timers has developed!
- *
- * This is especially important with the ATIM window, because during
- * the ATIM window only ATIM frames and no data frames are allowed to be
- * sent, which creates transmission pauses after each beacon. This symptom
- * has been described as "ramping ping" because ping times increase linearly
- * for some time and then drop down again. A wrong window on the DMA beacon
- * timer has the same effect, so we check for these two conditions.
- *
- * Returns true if O.K.
- */
- bool
- ath5k_hw_check_beacon_timers(struct ath5k_hw *ah, int intval)
- {
- unsigned int nbtt, atim, dma;
- nbtt = ath5k_hw_reg_read(ah, AR5K_TIMER0);
- atim = ath5k_hw_reg_read(ah, AR5K_TIMER3);
- dma = ath5k_hw_reg_read(ah, AR5K_TIMER1) >> 3;
- /* NOTE: SWBA is different. Having a wrong window there does not
- * stop us from sending data and this condition is catched thru
- * other means (SWBA interrupt) */
- if (ath5k_check_timer_win(nbtt, atim, 1, intval) &&
- ath5k_check_timer_win(dma, nbtt, AR5K_TUNE_DMA_BEACON_RESP,
- intval))
- return true; /* O.K. */
- return false;
- }
- /**
- * ath5k_hw_set_coverage_class - Set IEEE 802.11 coverage class
- *
- * @ah: The &struct ath5k_hw
- * @coverage_class: IEEE 802.11 coverage class number
- *
- * Sets slot time, ACK timeout and CTS timeout for given coverage class.
- */
- void ath5k_hw_set_coverage_class(struct ath5k_hw *ah, u8 coverage_class)
- {
- /* As defined by IEEE 802.11-2007 17.3.8.6 */
- int slot_time = ath5k_hw_get_default_slottime(ah) + 3 * coverage_class;
- int ack_timeout = ath5k_hw_get_default_sifs(ah) + slot_time;
- int cts_timeout = ack_timeout;
- ath5k_hw_set_slot_time(ah, slot_time);
- ath5k_hw_set_ack_timeout(ah, ack_timeout);
- ath5k_hw_set_cts_timeout(ah, cts_timeout);
- ah->ah_coverage_class = coverage_class;
- }
|