LCOV - code coverage report
Current view: top level - drivers/net/wireless/ath/ath9k - link.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 67 272 24.6 %
Date: 2022-03-28 13:20:08 Functions: 7 13 53.8 %
Branches: 19 170 11.2 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Copyright (c) 2012 Qualcomm Atheros, Inc.
       3                 :            :  *
       4                 :            :  * Permission to use, copy, modify, and/or distribute this software for any
       5                 :            :  * purpose with or without fee is hereby granted, provided that the above
       6                 :            :  * copyright notice and this permission notice appear in all copies.
       7                 :            :  *
       8                 :            :  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
       9                 :            :  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      10                 :            :  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
      11                 :            :  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      12                 :            :  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
      13                 :            :  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
      14                 :            :  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
      15                 :            :  */
      16                 :            : 
      17                 :            : #include "ath9k.h"
      18                 :            : 
      19                 :            : /*
      20                 :            :  * TX polling - checks if the TX engine is stuck somewhere
      21                 :            :  * and issues a chip reset if so.
      22                 :            :  */
      23                 :          6 : static bool ath_tx_complete_check(struct ath_softc *sc)
      24                 :            : {
      25                 :          6 :         struct ath_txq *txq;
      26                 :          6 :         int i;
      27                 :            : 
      28         [ +  - ]:          6 :         if (sc->tx99_state)
      29                 :            :                 return true;
      30                 :            : 
      31         [ +  + ]:         30 :         for (i = 0; i < IEEE80211_NUM_ACS; i++) {
      32                 :         24 :                 txq = sc->tx.txq_map[i];
      33                 :            : 
      34                 :         24 :                 ath_txq_lock(sc, txq);
      35         [ -  + ]:         24 :                 if (txq->axq_depth) {
      36         [ #  # ]:          0 :                         if (txq->axq_tx_inprogress) {
      37                 :          0 :                                 ath_txq_unlock(sc, txq);
      38                 :          0 :                                 goto reset;
      39                 :            :                         }
      40                 :            : 
      41                 :          0 :                         txq->axq_tx_inprogress = true;
      42                 :            :                 }
      43                 :         24 :                 ath_txq_unlock(sc, txq);
      44                 :            :         }
      45                 :            : 
      46                 :            :         return true;
      47                 :            : 
      48                 :            : reset:
      49         [ #  # ]:          0 :         ath_dbg(ath9k_hw_common(sc->sc_ah), RESET,
      50                 :            :                 "tx hung, resetting the chip\n");
      51                 :          0 :         ath9k_queue_reset(sc, RESET_TYPE_TX_HANG);
      52                 :          0 :         return false;
      53                 :            : 
      54                 :            : }
      55                 :            : 
      56                 :          6 : void ath_hw_check_work(struct work_struct *work)
      57                 :            : {
      58                 :          6 :         struct ath_softc *sc = container_of(work, struct ath_softc,
      59                 :            :                                             hw_check_work.work);
      60                 :            : 
      61   [ +  -  -  + ]:         12 :         if (!ath_hw_check(sc) ||
      62                 :          6 :             !ath_tx_complete_check(sc))
      63                 :          0 :                 return;
      64                 :            : 
      65                 :          6 :         ieee80211_queue_delayed_work(sc->hw, &sc->hw_check_work,
      66                 :            :                                      msecs_to_jiffies(ATH_HW_CHECK_POLL_INT));
      67                 :            : }
      68                 :            : 
      69                 :            : /*
      70                 :            :  * Checks if the BB/MAC is hung.
      71                 :            :  */
      72                 :          6 : bool ath_hw_check(struct ath_softc *sc)
      73                 :            : {
      74                 :          6 :         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
      75                 :          6 :         enum ath_reset_type type;
      76                 :          6 :         bool is_alive;
      77                 :            : 
      78                 :          6 :         ath9k_ps_wakeup(sc);
      79                 :            : 
      80                 :          6 :         is_alive = ath9k_hw_check_alive(sc->sc_ah);
      81                 :            : 
      82         [ -  + ]:          6 :         if (!is_alive) {
      83         [ #  # ]:          0 :                 ath_dbg(common, RESET,
      84                 :            :                         "HW hang detected, schedule chip reset\n");
      85                 :          0 :                 type = RESET_TYPE_MAC_HANG;
      86                 :          0 :                 ath9k_queue_reset(sc, type);
      87                 :            :         }
      88                 :            : 
      89                 :          6 :         ath9k_ps_restore(sc);
      90                 :            : 
      91                 :          6 :         return is_alive;
      92                 :            : }
      93                 :            : 
      94                 :            : /*
      95                 :            :  * PLL-WAR for AR9485/AR9340
      96                 :            :  */
      97                 :          0 : static bool ath_hw_pll_rx_hang_check(struct ath_softc *sc, u32 pll_sqsum)
      98                 :            : {
      99                 :          0 :         static int count;
     100         [ #  # ]:          0 :         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
     101                 :            : 
     102         [ #  # ]:          0 :         if (pll_sqsum >= 0x40000) {
     103                 :          0 :                 count++;
     104         [ #  # ]:          0 :                 if (count == 3) {
     105         [ #  # ]:          0 :                         ath_dbg(common, RESET, "PLL WAR, resetting the chip\n");
     106                 :          0 :                         ath9k_queue_reset(sc, RESET_TYPE_PLL_HANG);
     107                 :          0 :                         count = 0;
     108                 :          0 :                         return true;
     109                 :            :                 }
     110                 :            :         } else {
     111                 :          0 :                 count = 0;
     112                 :            :         }
     113                 :            : 
     114                 :            :         return false;
     115                 :            : }
     116                 :            : 
     117                 :          0 : void ath_hw_pll_work(struct work_struct *work)
     118                 :            : {
     119                 :          0 :         u32 pll_sqsum;
     120                 :          0 :         struct ath_softc *sc = container_of(work, struct ath_softc,
     121                 :            :                                             hw_pll_work.work);
     122                 :          0 :         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
     123                 :            :         /*
     124                 :            :          * ensure that the PLL WAR is executed only
     125                 :            :          * after the STA is associated (or) if the
     126                 :            :          * beaconing had started in interfaces that
     127                 :            :          * uses beacons.
     128                 :            :          */
     129         [ #  # ]:          0 :         if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
     130                 :            :                 return;
     131                 :            : 
     132         [ #  # ]:          0 :         if (sc->tx99_state)
     133                 :            :                 return;
     134                 :            : 
     135                 :          0 :         ath9k_ps_wakeup(sc);
     136                 :          0 :         pll_sqsum = ar9003_get_pll_sqsum_dvc(sc->sc_ah);
     137                 :          0 :         ath9k_ps_restore(sc);
     138         [ #  # ]:          0 :         if (ath_hw_pll_rx_hang_check(sc, pll_sqsum))
     139                 :            :                 return;
     140                 :            : 
     141                 :          0 :         ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work,
     142                 :            :                                      msecs_to_jiffies(ATH_PLL_WORK_INTERVAL));
     143                 :            : }
     144                 :            : 
     145                 :            : /*
     146                 :            :  * PA Pre-distortion.
     147                 :            :  */
     148                 :            : static void ath_paprd_activate(struct ath_softc *sc)
     149                 :            : {
     150                 :            :         struct ath_hw *ah = sc->sc_ah;
     151                 :            :         struct ath_common *common = ath9k_hw_common(ah);
     152                 :            :         struct ath9k_hw_cal_data *caldata = ah->caldata;
     153                 :            :         int chain;
     154                 :            : 
     155                 :            :         if (!caldata || !test_bit(PAPRD_DONE, &caldata->cal_flags)) {
     156                 :            :                 ath_dbg(common, CALIBRATE, "Failed to activate PAPRD\n");
     157                 :            :                 return;
     158                 :            :         }
     159                 :            : 
     160                 :            :         ar9003_paprd_enable(ah, false);
     161                 :            :         for (chain = 0; chain < AR9300_MAX_CHAINS; chain++) {
     162                 :            :                 if (!(ah->txchainmask & BIT(chain)))
     163                 :            :                         continue;
     164                 :            : 
     165                 :            :                 ar9003_paprd_populate_single_table(ah, caldata, chain);
     166                 :            :         }
     167                 :            : 
     168                 :            :         ath_dbg(common, CALIBRATE, "Activating PAPRD\n");
     169                 :            :         ar9003_paprd_enable(ah, true);
     170                 :            : }
     171                 :            : 
     172                 :          0 : static bool ath_paprd_send_frame(struct ath_softc *sc, struct sk_buff *skb, int chain)
     173                 :            : {
     174                 :          0 :         struct ieee80211_hw *hw = sc->hw;
     175                 :          0 :         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
     176                 :          0 :         struct ath_hw *ah = sc->sc_ah;
     177                 :          0 :         struct ath_common *common = ath9k_hw_common(ah);
     178                 :          0 :         struct ath_tx_control txctl;
     179                 :          0 :         unsigned long time_left;
     180                 :            : 
     181                 :          0 :         memset(&txctl, 0, sizeof(txctl));
     182                 :          0 :         txctl.txq = sc->tx.txq_map[IEEE80211_AC_BE];
     183                 :            : 
     184                 :          0 :         memset(tx_info, 0, sizeof(*tx_info));
     185                 :          0 :         tx_info->band = sc->cur_chandef.chan->band;
     186                 :          0 :         tx_info->flags |= IEEE80211_TX_CTL_NO_ACK;
     187                 :          0 :         tx_info->control.rates[0].idx = 0;
     188                 :          0 :         tx_info->control.rates[0].count = 1;
     189                 :          0 :         tx_info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
     190                 :          0 :         tx_info->control.rates[1].idx = -1;
     191                 :            : 
     192                 :          0 :         init_completion(&sc->paprd_complete);
     193                 :          0 :         txctl.paprd = BIT(chain);
     194                 :            : 
     195         [ #  # ]:          0 :         if (ath_tx_start(hw, skb, &txctl) != 0) {
     196         [ #  # ]:          0 :                 ath_dbg(common, CALIBRATE, "PAPRD TX failed\n");
     197                 :          0 :                 dev_kfree_skb_any(skb);
     198                 :          0 :                 return false;
     199                 :            :         }
     200                 :            : 
     201                 :          0 :         time_left = wait_for_completion_timeout(&sc->paprd_complete,
     202                 :            :                         msecs_to_jiffies(ATH_PAPRD_TIMEOUT));
     203                 :            : 
     204         [ #  # ]:          0 :         if (!time_left)
     205         [ #  # ]:          0 :                 ath_dbg(common, CALIBRATE,
     206                 :            :                         "Timeout waiting for paprd training on TX chain %d\n",
     207                 :            :                         chain);
     208                 :            : 
     209                 :          0 :         return !!time_left;
     210                 :            : }
     211                 :            : 
     212                 :          0 : void ath_paprd_calibrate(struct work_struct *work)
     213                 :            : {
     214                 :          0 :         struct ath_softc *sc = container_of(work, struct ath_softc, paprd_work);
     215                 :          0 :         struct ieee80211_hw *hw = sc->hw;
     216                 :          0 :         struct ath_hw *ah = sc->sc_ah;
     217                 :          0 :         struct ieee80211_hdr *hdr;
     218                 :          0 :         struct sk_buff *skb = NULL;
     219                 :          0 :         struct ath9k_hw_cal_data *caldata = ah->caldata;
     220         [ #  # ]:          0 :         struct ath_common *common = ath9k_hw_common(ah);
     221                 :          0 :         int ftype;
     222                 :          0 :         int chain_ok = 0;
     223                 :          0 :         int chain;
     224                 :          0 :         int len = 1800;
     225                 :          0 :         int ret;
     226                 :            : 
     227   [ #  #  #  # ]:          0 :         if (!caldata ||
     228         [ #  # ]:          0 :             !test_bit(PAPRD_PACKET_SENT, &caldata->cal_flags) ||
     229                 :            :             test_bit(PAPRD_DONE, &caldata->cal_flags)) {
     230         [ #  # ]:          0 :                 ath_dbg(common, CALIBRATE, "Skipping PAPRD calibration\n");
     231                 :          0 :                 return;
     232                 :            :         }
     233                 :            : 
     234                 :          0 :         ath9k_ps_wakeup(sc);
     235                 :            : 
     236         [ #  # ]:          0 :         if (ar9003_paprd_init_table(ah) < 0)
     237                 :          0 :                 goto fail_paprd;
     238                 :            : 
     239                 :          0 :         skb = alloc_skb(len, GFP_KERNEL);
     240         [ #  # ]:          0 :         if (!skb)
     241                 :          0 :                 goto fail_paprd;
     242                 :            : 
     243                 :          0 :         skb_put(skb, len);
     244                 :          0 :         memset(skb->data, 0, len);
     245                 :          0 :         hdr = (struct ieee80211_hdr *)skb->data;
     246                 :          0 :         ftype = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC;
     247                 :          0 :         hdr->frame_control = cpu_to_le16(ftype);
     248                 :          0 :         hdr->duration_id = cpu_to_le16(10);
     249                 :          0 :         memcpy(hdr->addr1, hw->wiphy->perm_addr, ETH_ALEN);
     250                 :          0 :         memcpy(hdr->addr2, hw->wiphy->perm_addr, ETH_ALEN);
     251                 :          0 :         memcpy(hdr->addr3, hw->wiphy->perm_addr, ETH_ALEN);
     252                 :            : 
     253         [ #  # ]:          0 :         for (chain = 0; chain < AR9300_MAX_CHAINS; chain++) {
     254         [ #  # ]:          0 :                 if (!(ah->txchainmask & BIT(chain)))
     255                 :          0 :                         continue;
     256                 :            : 
     257                 :          0 :                 chain_ok = 0;
     258                 :          0 :                 ar9003_paprd_setup_gain_table(ah, chain);
     259                 :            : 
     260         [ #  # ]:          0 :                 ath_dbg(common, CALIBRATE,
     261                 :            :                         "Sending PAPRD training frame on chain %d\n", chain);
     262         [ #  # ]:          0 :                 if (!ath_paprd_send_frame(sc, skb, chain))
     263                 :          0 :                         goto fail_paprd;
     264                 :            : 
     265         [ #  # ]:          0 :                 if (!ar9003_paprd_is_done(ah)) {
     266         [ #  # ]:          0 :                         ath_dbg(common, CALIBRATE,
     267                 :            :                                 "PAPRD not yet done on chain %d\n", chain);
     268                 :            :                         break;
     269                 :            :                 }
     270                 :            : 
     271                 :          0 :                 ret = ar9003_paprd_create_curve(ah, caldata, chain);
     272         [ #  # ]:          0 :                 if (ret == -EINPROGRESS) {
     273         [ #  # ]:          0 :                         ath_dbg(common, CALIBRATE,
     274                 :            :                                 "PAPRD curve on chain %d needs to be re-trained\n",
     275                 :            :                                 chain);
     276                 :            :                         break;
     277         [ #  # ]:          0 :                 } else if (ret) {
     278         [ #  # ]:          0 :                         ath_dbg(common, CALIBRATE,
     279                 :            :                                 "PAPRD create curve failed on chain %d\n",
     280                 :            :                                 chain);
     281                 :            :                         break;
     282                 :            :                 }
     283                 :            : 
     284                 :            :                 chain_ok = 1;
     285                 :            :         }
     286                 :          0 :         kfree_skb(skb);
     287                 :            : 
     288         [ #  # ]:          0 :         if (chain_ok) {
     289                 :          0 :                 set_bit(PAPRD_DONE, &caldata->cal_flags);
     290                 :          0 :                 ath_paprd_activate(sc);
     291                 :            :         }
     292                 :            : 
     293                 :          0 : fail_paprd:
     294                 :          0 :         ath9k_ps_restore(sc);
     295                 :            : }
     296                 :            : 
     297                 :            : /*
     298                 :            :  *  ANI performs periodic noise floor calibration
     299                 :            :  *  that is used to adjust and optimize the chip performance.  This
     300                 :            :  *  takes environmental changes (location, temperature) into account.
     301                 :            :  *  When the task is complete, it reschedules itself depending on the
     302                 :            :  *  appropriate interval that was calculated.
     303                 :            :  */
     304                 :          0 : void ath_ani_calibrate(struct timer_list *t)
     305                 :            : {
     306                 :          0 :         struct ath_common *common = from_timer(common, t, ani.timer);
     307                 :          0 :         struct ath_softc *sc = (struct ath_softc *)common->priv;
     308                 :          0 :         struct ath_hw *ah = sc->sc_ah;
     309                 :          0 :         bool longcal = false;
     310                 :          0 :         bool shortcal = false;
     311                 :          0 :         bool aniflag = false;
     312                 :          0 :         unsigned int timestamp = jiffies_to_msecs(jiffies);
     313                 :          0 :         u32 cal_interval, short_cal_interval, long_cal_interval;
     314                 :          0 :         unsigned long flags;
     315                 :            : 
     316   [ #  #  #  # ]:          0 :         if (ah->caldata && test_bit(NFCAL_INTF, &ah->caldata->cal_flags))
     317                 :            :                 long_cal_interval = ATH_LONG_CALINTERVAL_INT;
     318                 :            :         else
     319                 :            :                 long_cal_interval = ATH_LONG_CALINTERVAL;
     320                 :            : 
     321                 :          0 :         short_cal_interval = (ah->opmode == NL80211_IFTYPE_AP) ?
     322         [ #  # ]:          0 :                 ATH_AP_SHORT_CALINTERVAL : ATH_STA_SHORT_CALINTERVAL;
     323                 :            : 
     324                 :            :         /* Only calibrate if awake */
     325         [ #  # ]:          0 :         if (sc->sc_ah->power_mode != ATH9K_PM_AWAKE) {
     326         [ #  # ]:          0 :                 if (++ah->ani_skip_count >= ATH_ANI_MAX_SKIP_COUNT) {
     327                 :          0 :                         spin_lock_irqsave(&sc->sc_pm_lock, flags);
     328                 :          0 :                         sc->ps_flags |= PS_WAIT_FOR_ANI;
     329                 :          0 :                         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
     330                 :            :                 }
     331                 :          0 :                 goto set_timer;
     332                 :            :         }
     333                 :          0 :         ah->ani_skip_count = 0;
     334                 :          0 :         spin_lock_irqsave(&sc->sc_pm_lock, flags);
     335                 :          0 :         sc->ps_flags &= ~PS_WAIT_FOR_ANI;
     336                 :          0 :         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
     337                 :            : 
     338                 :          0 :         ath9k_ps_wakeup(sc);
     339                 :            : 
     340                 :            :         /* Long calibration runs independently of short calibration. */
     341         [ #  # ]:          0 :         if ((timestamp - common->ani.longcal_timer) >= long_cal_interval) {
     342                 :          0 :                 longcal = true;
     343                 :          0 :                 common->ani.longcal_timer = timestamp;
     344                 :            :         }
     345                 :            : 
     346                 :            :         /* Short calibration applies only while caldone is false */
     347         [ #  # ]:          0 :         if (!common->ani.caldone) {
     348         [ #  # ]:          0 :                 if ((timestamp - common->ani.shortcal_timer) >= short_cal_interval) {
     349                 :          0 :                         shortcal = true;
     350                 :          0 :                         common->ani.shortcal_timer = timestamp;
     351                 :          0 :                         common->ani.resetcal_timer = timestamp;
     352                 :            :                 }
     353                 :            :         } else {
     354         [ #  # ]:          0 :                 if ((timestamp - common->ani.resetcal_timer) >=
     355                 :            :                     ATH_RESTART_CALINTERVAL) {
     356                 :          0 :                         common->ani.caldone = ath9k_hw_reset_calvalid(ah);
     357         [ #  # ]:          0 :                         if (common->ani.caldone)
     358                 :          0 :                                 common->ani.resetcal_timer = timestamp;
     359                 :            :                 }
     360                 :            :         }
     361                 :            : 
     362                 :            :         /* Verify whether we must check ANI */
     363         [ #  # ]:          0 :         if ((timestamp - common->ani.checkani_timer) >= ah->config.ani_poll_interval) {
     364                 :          0 :                 aniflag = true;
     365                 :          0 :                 common->ani.checkani_timer = timestamp;
     366                 :            :         }
     367                 :            : 
     368                 :            :         /* Call ANI routine if necessary */
     369                 :          0 :         if (aniflag) {
     370                 :          0 :                 spin_lock_irqsave(&common->cc_lock, flags);
     371                 :          0 :                 ath9k_hw_ani_monitor(ah, ah->curchan);
     372                 :          0 :                 ath_update_survey_stats(sc);
     373                 :          0 :                 spin_unlock_irqrestore(&common->cc_lock, flags);
     374                 :            :         }
     375                 :            : 
     376                 :            :         /* Perform calibration if necessary */
     377         [ #  # ]:          0 :         if (longcal || shortcal) {
     378                 :          0 :                 int ret = ath9k_hw_calibrate(ah, ah->curchan, ah->rxchainmask,
     379                 :            :                                              longcal);
     380         [ #  # ]:          0 :                 if (ret < 0) {
     381                 :          0 :                         common->ani.caldone = 0;
     382                 :          0 :                         ath9k_queue_reset(sc, RESET_TYPE_CALIBRATION);
     383                 :          0 :                         return;
     384                 :            :                 }
     385                 :            : 
     386                 :          0 :                 common->ani.caldone = ret;
     387                 :            :         }
     388                 :            : 
     389   [ #  #  #  #  :          0 :         ath_dbg(common, ANI,
          #  #  #  #  #  
                      # ]
     390                 :            :                 "Calibration @%lu finished: %s %s %s, caldone: %s\n",
     391                 :            :                 jiffies,
     392                 :            :                 longcal ? "long" : "", shortcal ? "short" : "",
     393                 :            :                 aniflag ? "ani" : "", common->ani.caldone ? "true" : "false");
     394                 :            : 
     395                 :          0 :         ath9k_ps_restore(sc);
     396                 :            : 
     397                 :          0 : set_timer:
     398                 :            :         /*
     399                 :            :         * Set timer interval based on previous results.
     400                 :            :         * The interval must be the shortest necessary to satisfy ANI,
     401                 :            :         * short calibration and long calibration.
     402                 :            :         */
     403                 :          0 :         cal_interval = ATH_LONG_CALINTERVAL;
     404                 :          0 :         cal_interval = min(cal_interval, (u32)ah->config.ani_poll_interval);
     405         [ #  # ]:          0 :         if (!common->ani.caldone)
     406                 :          0 :                 cal_interval = min(cal_interval, (u32)short_cal_interval);
     407                 :            : 
     408         [ #  # ]:          0 :         mod_timer(&common->ani.timer, jiffies + msecs_to_jiffies(cal_interval));
     409                 :            : 
     410   [ #  #  #  # ]:          0 :         if (ar9003_is_paprd_enabled(ah) && ah->caldata) {
     411         [ #  # ]:          0 :                 if (!test_bit(PAPRD_DONE, &ah->caldata->cal_flags)) {
     412                 :          0 :                         ieee80211_queue_work(sc->hw, &sc->paprd_work);
     413         [ #  # ]:          0 :                 } else if (!ah->paprd_table_write_done) {
     414                 :          0 :                         ath9k_ps_wakeup(sc);
     415                 :          0 :                         ath_paprd_activate(sc);
     416                 :          0 :                         ath9k_ps_restore(sc);
     417                 :            :                 }
     418                 :            :         }
     419                 :            : }
     420                 :            : 
     421                 :         52 : void ath_start_ani(struct ath_softc *sc)
     422                 :            : {
     423                 :         52 :         struct ath_hw *ah = sc->sc_ah;
     424                 :         52 :         struct ath_common *common = ath9k_hw_common(ah);
     425                 :         52 :         unsigned long timestamp = jiffies_to_msecs(jiffies);
     426                 :            : 
     427   [ +  -  -  + ]:        104 :         if (common->disable_ani ||
     428                 :         52 :             !test_bit(ATH_OP_ANI_RUN, &common->op_flags) ||
     429         [ #  # ]:          0 :             sc->cur_chan->offchannel)
     430                 :         52 :                 return;
     431                 :            : 
     432                 :          0 :         common->ani.longcal_timer = timestamp;
     433                 :          0 :         common->ani.shortcal_timer = timestamp;
     434                 :          0 :         common->ani.checkani_timer = timestamp;
     435                 :            : 
     436         [ #  # ]:          0 :         ath_dbg(common, ANI, "Starting ANI\n");
     437                 :          0 :         mod_timer(&common->ani.timer,
     438         [ #  # ]:          0 :                   jiffies + msecs_to_jiffies((u32)ah->config.ani_poll_interval));
     439                 :            : }
     440                 :            : 
     441                 :         52 : void ath_stop_ani(struct ath_softc *sc)
     442                 :            : {
     443         [ -  + ]:         52 :         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
     444                 :            : 
     445         [ -  + ]:         52 :         ath_dbg(common, ANI, "Stopping ANI\n");
     446                 :         52 :         del_timer_sync(&common->ani.timer);
     447                 :         52 : }
     448                 :            : 
     449                 :          0 : void ath_check_ani(struct ath_softc *sc)
     450                 :            : {
     451                 :          0 :         struct ath_hw *ah = sc->sc_ah;
     452         [ #  # ]:          0 :         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
     453                 :          0 :         struct ath_beacon_config *cur_conf = &sc->cur_chan->beacon;
     454                 :            : 
     455                 :            :         /*
     456                 :            :          * Check for the various conditions in which ANI has to
     457                 :            :          * be stopped.
     458                 :            :          */
     459         [ #  # ]:          0 :         if (ah->opmode == NL80211_IFTYPE_ADHOC) {
     460         [ #  # ]:          0 :                 if (!cur_conf->enable_beacon)
     461                 :          0 :                         goto stop_ani;
     462         [ #  # ]:          0 :         } else if (ah->opmode == NL80211_IFTYPE_AP) {
     463         [ #  # ]:          0 :                 if (!cur_conf->enable_beacon) {
     464                 :            :                         /*
     465                 :            :                          * Disable ANI only when there are no
     466                 :            :                          * associated stations.
     467                 :            :                          */
     468         [ #  # ]:          0 :                         if (!test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags))
     469                 :          0 :                                 goto stop_ani;
     470                 :            :                 }
     471         [ #  # ]:          0 :         } else if (ah->opmode == NL80211_IFTYPE_STATION) {
     472         [ #  # ]:          0 :                 if (!test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags))
     473                 :          0 :                         goto stop_ani;
     474                 :            :         }
     475                 :            : 
     476         [ #  # ]:          0 :         if (!test_bit(ATH_OP_ANI_RUN, &common->op_flags)) {
     477                 :          0 :                 set_bit(ATH_OP_ANI_RUN, &common->op_flags);
     478                 :          0 :                 ath_start_ani(sc);
     479                 :            :         }
     480                 :            : 
     481                 :            :         return;
     482                 :            : 
     483                 :          0 : stop_ani:
     484                 :          0 :         clear_bit(ATH_OP_ANI_RUN, &common->op_flags);
     485                 :          0 :         ath_stop_ani(sc);
     486                 :            : }
     487                 :            : 
     488                 :         12 : void ath_update_survey_nf(struct ath_softc *sc, int channel)
     489                 :            : {
     490                 :         12 :         struct ath_hw *ah = sc->sc_ah;
     491                 :         12 :         struct ath9k_channel *chan = &ah->channels[channel];
     492                 :         12 :         struct survey_info *survey = &sc->survey[channel];
     493                 :            : 
     494         [ +  + ]:         12 :         if (chan->noisefloor) {
     495                 :         10 :                 survey->filled |= SURVEY_INFO_NOISE_DBM;
     496                 :         10 :                 survey->noise = ath9k_hw_getchan_noise(ah, chan,
     497                 :         10 :                                                        chan->noisefloor);
     498                 :            :         }
     499                 :         12 : }
     500                 :            : 
     501                 :            : /*
     502                 :            :  * Updates the survey statistics and returns the busy time since last
     503                 :            :  * update in %, if the measurement duration was long enough for the
     504                 :            :  * result to be useful, -1 otherwise.
     505                 :            :  */
     506                 :          6 : int ath_update_survey_stats(struct ath_softc *sc)
     507                 :            : {
     508                 :          6 :         struct ath_hw *ah = sc->sc_ah;
     509         [ +  - ]:          6 :         struct ath_common *common = ath9k_hw_common(ah);
     510                 :          6 :         int pos = ah->curchan - &ah->channels[0];
     511                 :          6 :         struct survey_info *survey = &sc->survey[pos];
     512                 :          6 :         struct ath_cycle_counters *cc = &common->cc_survey;
     513                 :          6 :         unsigned int div = common->clockrate * 1000;
     514                 :          6 :         int ret = 0;
     515                 :            : 
     516         [ +  - ]:          6 :         if (!ah->curchan)
     517                 :            :                 return -1;
     518                 :            : 
     519         [ +  - ]:          6 :         if (ah->power_mode == ATH9K_PM_AWAKE)
     520                 :          6 :                 ath_hw_cycle_counters_update(common);
     521                 :            : 
     522         [ +  - ]:          6 :         if (cc->cycles > 0) {
     523                 :          6 :                 survey->filled |= SURVEY_INFO_TIME |
     524                 :            :                         SURVEY_INFO_TIME_BUSY |
     525                 :            :                         SURVEY_INFO_TIME_RX |
     526                 :            :                         SURVEY_INFO_TIME_TX;
     527                 :          6 :                 survey->time += cc->cycles / div;
     528                 :          6 :                 survey->time_busy += cc->rx_busy / div;
     529                 :          6 :                 survey->time_rx += cc->rx_frame / div;
     530                 :          6 :                 survey->time_tx += cc->tx_frame / div;
     531                 :            :         }
     532                 :            : 
     533         [ +  - ]:          6 :         if (cc->cycles < div)
     534                 :            :                 return -1;
     535                 :            : 
     536         [ +  - ]:          6 :         if (cc->cycles > 0)
     537                 :          6 :                 ret = cc->rx_busy * 100 / cc->cycles;
     538                 :            : 
     539                 :          6 :         memset(cc, 0, sizeof(*cc));
     540                 :            : 
     541                 :          6 :         ath_update_survey_nf(sc, pos);
     542                 :            : 
     543                 :          6 :         return ret;
     544                 :            : }

Generated by: LCOV version 1.14