iwlagn: reclaim the packets in transport layer
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-agn-lib.c
index eb2be0d304830cfc08e652ee20fa3893f50da30b..52ddb49d20174f98f8a47f44bc2b10b9eb0f261a 100644 (file)
 #include "iwl-agn.h"
 #include "iwl-sta.h"
 #include "iwl-trans.h"
-
-static inline u32 iwlagn_get_scd_ssn(struct iwlagn_tx_resp *tx_resp)
-{
-       return le32_to_cpup((__le32 *)&tx_resp->status +
-                           tx_resp->frame_count) & MAX_SN;
-}
+#include "iwl-shared.h"
 
 static void iwlagn_count_tx_err_status(struct iwl_priv *priv, u16 status)
 {
@@ -53,129 +48,128 @@ static void iwlagn_count_tx_err_status(struct iwl_priv *priv, u16 status)
 
        switch (status) {
        case TX_STATUS_POSTPONE_DELAY:
-               priv->_agn.reply_tx_stats.pp_delay++;
+               priv->reply_tx_stats.pp_delay++;
                break;
        case TX_STATUS_POSTPONE_FEW_BYTES:
-               priv->_agn.reply_tx_stats.pp_few_bytes++;
+               priv->reply_tx_stats.pp_few_bytes++;
                break;
        case TX_STATUS_POSTPONE_BT_PRIO:
-               priv->_agn.reply_tx_stats.pp_bt_prio++;
+               priv->reply_tx_stats.pp_bt_prio++;
                break;
        case TX_STATUS_POSTPONE_QUIET_PERIOD:
-               priv->_agn.reply_tx_stats.pp_quiet_period++;
+               priv->reply_tx_stats.pp_quiet_period++;
                break;
        case TX_STATUS_POSTPONE_CALC_TTAK:
-               priv->_agn.reply_tx_stats.pp_calc_ttak++;
+               priv->reply_tx_stats.pp_calc_ttak++;
                break;
        case TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY:
-               priv->_agn.reply_tx_stats.int_crossed_retry++;
+               priv->reply_tx_stats.int_crossed_retry++;
                break;
        case TX_STATUS_FAIL_SHORT_LIMIT:
-               priv->_agn.reply_tx_stats.short_limit++;
+               priv->reply_tx_stats.short_limit++;
                break;
        case TX_STATUS_FAIL_LONG_LIMIT:
-               priv->_agn.reply_tx_stats.long_limit++;
+               priv->reply_tx_stats.long_limit++;
                break;
        case TX_STATUS_FAIL_FIFO_UNDERRUN:
-               priv->_agn.reply_tx_stats.fifo_underrun++;
+               priv->reply_tx_stats.fifo_underrun++;
                break;
        case TX_STATUS_FAIL_DRAIN_FLOW:
-               priv->_agn.reply_tx_stats.drain_flow++;
+               priv->reply_tx_stats.drain_flow++;
                break;
        case TX_STATUS_FAIL_RFKILL_FLUSH:
-               priv->_agn.reply_tx_stats.rfkill_flush++;
+               priv->reply_tx_stats.rfkill_flush++;
                break;
        case TX_STATUS_FAIL_LIFE_EXPIRE:
-               priv->_agn.reply_tx_stats.life_expire++;
+               priv->reply_tx_stats.life_expire++;
                break;
        case TX_STATUS_FAIL_DEST_PS:
-               priv->_agn.reply_tx_stats.dest_ps++;
+               priv->reply_tx_stats.dest_ps++;
                break;
        case TX_STATUS_FAIL_HOST_ABORTED:
-               priv->_agn.reply_tx_stats.host_abort++;
+               priv->reply_tx_stats.host_abort++;
                break;
        case TX_STATUS_FAIL_BT_RETRY:
-               priv->_agn.reply_tx_stats.bt_retry++;
+               priv->reply_tx_stats.bt_retry++;
                break;
        case TX_STATUS_FAIL_STA_INVALID:
-               priv->_agn.reply_tx_stats.sta_invalid++;
+               priv->reply_tx_stats.sta_invalid++;
                break;
        case TX_STATUS_FAIL_FRAG_DROPPED:
-               priv->_agn.reply_tx_stats.frag_drop++;
+               priv->reply_tx_stats.frag_drop++;
                break;
        case TX_STATUS_FAIL_TID_DISABLE:
-               priv->_agn.reply_tx_stats.tid_disable++;
+               priv->reply_tx_stats.tid_disable++;
                break;
        case TX_STATUS_FAIL_FIFO_FLUSHED:
-               priv->_agn.reply_tx_stats.fifo_flush++;
+               priv->reply_tx_stats.fifo_flush++;
                break;
        case TX_STATUS_FAIL_INSUFFICIENT_CF_POLL:
-               priv->_agn.reply_tx_stats.insuff_cf_poll++;
+               priv->reply_tx_stats.insuff_cf_poll++;
                break;
        case TX_STATUS_FAIL_PASSIVE_NO_RX:
-               priv->_agn.reply_tx_stats.fail_hw_drop++;
+               priv->reply_tx_stats.fail_hw_drop++;
                break;
        case TX_STATUS_FAIL_NO_BEACON_ON_RADAR:
-               priv->_agn.reply_tx_stats.sta_color_mismatch++;
+               priv->reply_tx_stats.sta_color_mismatch++;
                break;
        default:
-               priv->_agn.reply_tx_stats.unknown++;
+               priv->reply_tx_stats.unknown++;
                break;
        }
 }
 
-static void iwlagn_count_agg_tx_err_status(struct iwl_priv *priv, u16 status)
+void iwlagn_count_agg_tx_err_status(struct iwl_priv *priv, u16 status)
 {
        status &= AGG_TX_STATUS_MSK;
 
        switch (status) {
        case AGG_TX_STATE_UNDERRUN_MSK:
-               priv->_agn.reply_agg_tx_stats.underrun++;
+               priv->reply_agg_tx_stats.underrun++;
                break;
        case AGG_TX_STATE_BT_PRIO_MSK:
-               priv->_agn.reply_agg_tx_stats.bt_prio++;
+               priv->reply_agg_tx_stats.bt_prio++;
                break;
        case AGG_TX_STATE_FEW_BYTES_MSK:
-               priv->_agn.reply_agg_tx_stats.few_bytes++;
+               priv->reply_agg_tx_stats.few_bytes++;
                break;
        case AGG_TX_STATE_ABORT_MSK:
-               priv->_agn.reply_agg_tx_stats.abort++;
+               priv->reply_agg_tx_stats.abort++;
                break;
        case AGG_TX_STATE_LAST_SENT_TTL_MSK:
-               priv->_agn.reply_agg_tx_stats.last_sent_ttl++;
+               priv->reply_agg_tx_stats.last_sent_ttl++;
                break;
        case AGG_TX_STATE_LAST_SENT_TRY_CNT_MSK:
-               priv->_agn.reply_agg_tx_stats.last_sent_try++;
+               priv->reply_agg_tx_stats.last_sent_try++;
                break;
        case AGG_TX_STATE_LAST_SENT_BT_KILL_MSK:
-               priv->_agn.reply_agg_tx_stats.last_sent_bt_kill++;
+               priv->reply_agg_tx_stats.last_sent_bt_kill++;
                break;
        case AGG_TX_STATE_SCD_QUERY_MSK:
-               priv->_agn.reply_agg_tx_stats.scd_query++;
+               priv->reply_agg_tx_stats.scd_query++;
                break;
        case AGG_TX_STATE_TEST_BAD_CRC32_MSK:
-               priv->_agn.reply_agg_tx_stats.bad_crc32++;
+               priv->reply_agg_tx_stats.bad_crc32++;
                break;
        case AGG_TX_STATE_RESPONSE_MSK:
-               priv->_agn.reply_agg_tx_stats.response++;
+               priv->reply_agg_tx_stats.response++;
                break;
        case AGG_TX_STATE_DUMP_TX_MSK:
-               priv->_agn.reply_agg_tx_stats.dump_tx++;
+               priv->reply_agg_tx_stats.dump_tx++;
                break;
        case AGG_TX_STATE_DELAY_TX_MSK:
-               priv->_agn.reply_agg_tx_stats.delay_tx++;
+               priv->reply_agg_tx_stats.delay_tx++;
                break;
        default:
-               priv->_agn.reply_agg_tx_stats.unknown++;
+               priv->reply_agg_tx_stats.unknown++;
                break;
        }
 }
 
-static void iwlagn_set_tx_status(struct iwl_priv *priv,
+void iwlagn_set_tx_status(struct iwl_priv *priv,
                                 struct ieee80211_tx_info *info,
-                                struct iwl_rxon_context *ctx,
                                 struct iwlagn_tx_resp *tx_resp,
-                                int txq_id, bool is_agg)
+                                bool is_agg)
 {
        u16  status = le16_to_cpu(tx_resp->status.status);
 
@@ -187,20 +181,6 @@ static void iwlagn_set_tx_status(struct iwl_priv *priv,
                                    info);
        if (!iwl_is_tx_success(status))
                iwlagn_count_tx_err_status(priv, status);
-
-       if (status == TX_STATUS_FAIL_PASSIVE_NO_RX &&
-           iwl_is_associated_ctx(ctx) && ctx->vif &&
-           ctx->vif->type == NL80211_IFTYPE_STATION) {
-               ctx->last_tx_rejected = true;
-               iwl_stop_queue(priv, &priv->txq[txq_id]);
-       }
-
-       IWL_DEBUG_TX_REPLY(priv, "TXQ %d status %s (0x%08x) rate_n_flags "
-                          "0x%x retries %d\n",
-                          txq_id,
-                          iwl_get_tx_fail_reason(status), status,
-                          le32_to_cpu(tx_resp->rate_n_flags),
-                          tx_resp->failure_frame);
 }
 
 #ifdef CONFIG_IWLWIFI_DEBUG
@@ -230,276 +210,16 @@ const char *iwl_get_agg_tx_fail_reason(u16 status)
 }
 #endif /* CONFIG_IWLWIFI_DEBUG */
 
-static int iwlagn_tx_status_reply_tx(struct iwl_priv *priv,
-                                     struct iwl_ht_agg *agg,
-                                     struct iwlagn_tx_resp *tx_resp,
-                                     int txq_id, u16 start_idx)
-{
-       u16 status;
-       struct agg_tx_status *frame_status = &tx_resp->status;
-       struct ieee80211_hdr *hdr = NULL;
-       int i, sh, idx;
-       u16 seq;
-
-       if (agg->wait_for_ba)
-               IWL_DEBUG_TX_REPLY(priv, "got tx response w/o block-ack\n");
-
-       agg->frame_count = tx_resp->frame_count;
-       agg->start_idx = start_idx;
-       agg->rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
-       agg->bitmap = 0;
-
-       /* # frames attempted by Tx command */
-       if (agg->frame_count == 1) {
-               struct iwl_tx_info *txb;
-
-               /* Only one frame was attempted; no block-ack will arrive */
-               idx = start_idx;
-
-               IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n",
-                                  agg->frame_count, agg->start_idx, idx);
-               txb = &priv->txq[txq_id].txb[idx];
-               iwlagn_set_tx_status(priv, IEEE80211_SKB_CB(txb->skb),
-                                    txb->ctx, tx_resp, txq_id, true);
-               agg->wait_for_ba = 0;
-       } else {
-               /* Two or more frames were attempted; expect block-ack */
-               u64 bitmap = 0;
-
-               /*
-                * Start is the lowest frame sent. It may not be the first
-                * frame in the batch; we figure this out dynamically during
-                * the following loop.
-                */
-               int start = agg->start_idx;
-
-               /* Construct bit-map of pending frames within Tx window */
-               for (i = 0; i < agg->frame_count; i++) {
-                       u16 sc;
-                       status = le16_to_cpu(frame_status[i].status);
-                       seq  = le16_to_cpu(frame_status[i].sequence);
-                       idx = SEQ_TO_INDEX(seq);
-                       txq_id = SEQ_TO_QUEUE(seq);
-
-                       if (status & AGG_TX_STATUS_MSK)
-                               iwlagn_count_agg_tx_err_status(priv, status);
-
-                       if (status & (AGG_TX_STATE_FEW_BYTES_MSK |
-                                     AGG_TX_STATE_ABORT_MSK))
-                               continue;
-
-                       IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, txq_id=%d idx=%d\n",
-                                          agg->frame_count, txq_id, idx);
-                       IWL_DEBUG_TX_REPLY(priv, "status %s (0x%08x), "
-                                          "try-count (0x%08x)\n",
-                                          iwl_get_agg_tx_fail_reason(status),
-                                          status & AGG_TX_STATUS_MSK,
-                                          status & AGG_TX_TRY_MSK);
-
-                       hdr = iwl_tx_queue_get_hdr(priv, txq_id, idx);
-                       if (!hdr) {
-                               IWL_ERR(priv,
-                                       "BUG_ON idx doesn't point to valid skb"
-                                       " idx=%d, txq_id=%d\n", idx, txq_id);
-                               return -1;
-                       }
-
-                       sc = le16_to_cpu(hdr->seq_ctrl);
-                       if (idx != (SEQ_TO_SN(sc) & 0xff)) {
-                               IWL_ERR(priv,
-                                       "BUG_ON idx doesn't match seq control"
-                                       " idx=%d, seq_idx=%d, seq=%d\n",
-                                         idx, SEQ_TO_SN(sc),
-                                         hdr->seq_ctrl);
-                               return -1;
-                       }
-
-                       IWL_DEBUG_TX_REPLY(priv, "AGG Frame i=%d idx %d seq=%d\n",
-                                          i, idx, SEQ_TO_SN(sc));
-
-                       /*
-                        * sh -> how many frames ahead of the starting frame is
-                        * the current one?
-                        *
-                        * Note that all frames sent in the batch must be in a
-                        * 64-frame window, so this number should be in [0,63].
-                        * If outside of this window, then we've found a new
-                        * "first" frame in the batch and need to change start.
-                        */
-                       sh = idx - start;
-
-                       /*
-                        * If >= 64, out of window. start must be at the front
-                        * of the circular buffer, idx must be near the end of
-                        * the buffer, and idx is the new "first" frame. Shift
-                        * the indices around.
-                        */
-                       if (sh >= 64) {
-                               /* Shift bitmap by start - idx, wrapped */
-                               sh = 0x100 - idx + start;
-                               bitmap = bitmap << sh;
-                               /* Now idx is the new start so sh = 0 */
-                               sh = 0;
-                               start = idx;
-                       /*
-                        * If <= -64 then wraps the 256-pkt circular buffer
-                        * (e.g., start = 255 and idx = 0, sh should be 1)
-                        */
-                       } else if (sh <= -64) {
-                               sh  = 0x100 - start + idx;
-                       /*
-                        * If < 0 but > -64, out of window. idx is before start
-                        * but not wrapped. Shift the indices around.
-                        */
-                       } else if (sh < 0) {
-                               /* Shift by how far start is ahead of idx */
-                               sh = start - idx;
-                               bitmap = bitmap << sh;
-                               /* Now idx is the new start so sh = 0 */
-                               start = idx;
-                               sh = 0;
-                       }
-                       /* Sequence number start + sh was sent in this batch */
-                       bitmap |= 1ULL << sh;
-                       IWL_DEBUG_TX_REPLY(priv, "start=%d bitmap=0x%llx\n",
-                                          start, (unsigned long long)bitmap);
-               }
-
-               /*
-                * Store the bitmap and possibly the new start, if we wrapped
-                * the buffer above
-                */
-               agg->bitmap = bitmap;
-               agg->start_idx = start;
-               IWL_DEBUG_TX_REPLY(priv, "Frames %d start_idx=%d bitmap=0x%llx\n",
-                                  agg->frame_count, agg->start_idx,
-                                  (unsigned long long)agg->bitmap);
-
-               if (bitmap)
-                       agg->wait_for_ba = 1;
-       }
-       return 0;
-}
-
 void iwl_check_abort_status(struct iwl_priv *priv,
                            u8 frame_count, u32 status)
 {
        if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) {
                IWL_ERR(priv, "Tx flush command to flush out all frames\n");
-               if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
-                       queue_work(priv->workqueue, &priv->tx_flush);
+               if (!test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
+                       queue_work(priv->shrd->workqueue, &priv->tx_flush);
        }
 }
 
-static void iwlagn_rx_reply_tx(struct iwl_priv *priv,
-                               struct iwl_rx_mem_buffer *rxb)
-{
-       struct iwl_rx_packet *pkt = rxb_addr(rxb);
-       u16 sequence = le16_to_cpu(pkt->hdr.sequence);
-       int txq_id = SEQ_TO_QUEUE(sequence);
-       int index = SEQ_TO_INDEX(sequence);
-       struct iwl_tx_queue *txq = &priv->txq[txq_id];
-       struct ieee80211_tx_info *info;
-       struct iwlagn_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
-       struct iwl_tx_info *txb;
-       u32 status = le16_to_cpu(tx_resp->status.status);
-       int tid;
-       int sta_id;
-       int freed;
-       unsigned long flags;
-
-       if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) {
-               IWL_ERR(priv, "%s: Read index for DMA queue txq_id (%d) "
-                         "index %d is out of range [0-%d] %d %d\n", __func__,
-                         txq_id, index, txq->q.n_bd, txq->q.write_ptr,
-                         txq->q.read_ptr);
-               return;
-       }
-
-       txq->time_stamp = jiffies;
-       txb = &txq->txb[txq->q.read_ptr];
-       info = IEEE80211_SKB_CB(txb->skb);
-       memset(&info->status, 0, sizeof(info->status));
-
-       tid = (tx_resp->ra_tid & IWLAGN_TX_RES_TID_MSK) >>
-               IWLAGN_TX_RES_TID_POS;
-       sta_id = (tx_resp->ra_tid & IWLAGN_TX_RES_RA_MSK) >>
-               IWLAGN_TX_RES_RA_POS;
-
-       spin_lock_irqsave(&priv->sta_lock, flags);
-       if (txq->sched_retry) {
-               const u32 scd_ssn = iwlagn_get_scd_ssn(tx_resp);
-               struct iwl_ht_agg *agg;
-
-               agg = &priv->stations[sta_id].tid[tid].agg;
-               /*
-                * If the BT kill count is non-zero, we'll get this
-                * notification again.
-                */
-               if (tx_resp->bt_kill_count && tx_resp->frame_count == 1 &&
-                   priv->cfg->bt_params &&
-                   priv->cfg->bt_params->advanced_bt_coexist) {
-                       IWL_DEBUG_COEX(priv, "receive reply tx with bt_kill\n");
-               }
-               iwlagn_tx_status_reply_tx(priv, agg, tx_resp, txq_id, index);
-
-               /* check if BAR is needed */
-               if ((tx_resp->frame_count == 1) && !iwl_is_tx_success(status))
-                       info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
-
-               if (txq->q.read_ptr != (scd_ssn & 0xff)) {
-                       index = iwl_queue_dec_wrap(scd_ssn & 0xff, txq->q.n_bd);
-                       IWL_DEBUG_TX_REPLY(priv, "Retry scheduler reclaim "
-                                       "scd_ssn=%d idx=%d txq=%d swq=%d\n",
-                                       scd_ssn , index, txq_id, txq->swq_id);
-
-                       freed = iwlagn_tx_queue_reclaim(priv, txq_id, index);
-                       iwl_free_tfds_in_queue(priv, sta_id, tid, freed);
-
-                       if (priv->mac80211_registered &&
-                           (iwl_queue_space(&txq->q) > txq->q.low_mark) &&
-                           (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA))
-                               iwl_wake_queue(priv, txq);
-               }
-       } else {
-               iwlagn_set_tx_status(priv, info, txb->ctx, tx_resp,
-                                    txq_id, false);
-               freed = iwlagn_tx_queue_reclaim(priv, txq_id, index);
-               iwl_free_tfds_in_queue(priv, sta_id, tid, freed);
-
-               if (priv->mac80211_registered &&
-                   iwl_queue_space(&txq->q) > txq->q.low_mark &&
-                   status != TX_STATUS_FAIL_PASSIVE_NO_RX)
-                       iwl_wake_queue(priv, txq);
-       }
-
-       iwlagn_txq_check_empty(priv, sta_id, tid, txq_id);
-
-       iwl_check_abort_status(priv, tx_resp->frame_count, status);
-       spin_unlock_irqrestore(&priv->sta_lock, flags);
-}
-
-void iwlagn_rx_handler_setup(struct iwl_priv *priv)
-{
-       /* init calibration handlers */
-       priv->rx_handlers[CALIBRATION_RES_NOTIFICATION] =
-                                       iwlagn_rx_calib_result;
-       priv->rx_handlers[REPLY_TX] = iwlagn_rx_reply_tx;
-
-       /* set up notification wait support */
-       spin_lock_init(&priv->_agn.notif_wait_lock);
-       INIT_LIST_HEAD(&priv->_agn.notif_waits);
-       init_waitqueue_head(&priv->_agn.notif_waitq);
-}
-
-void iwlagn_setup_deferred_work(struct iwl_priv *priv)
-{
-       /*
-        * nothing need to be done here anymore
-        * still keep for future use if needed
-        */
-}
-
 int iwlagn_hw_valid_rtc_data_addr(u32 addr)
 {
        return (addr >= IWLAGN_RTC_DATA_LOWER_BOUND) &&
@@ -511,7 +231,7 @@ int iwlagn_send_tx_power(struct iwl_priv *priv)
        struct iwlagn_tx_power_dbm_cmd tx_power_cmd;
        u8 tx_ant_cfg_cmd;
 
-       if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->status),
+       if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->shrd->status),
                      "TX Power requested while scanning!\n"))
                return -EAGAIN;
 
@@ -541,7 +261,7 @@ int iwlagn_send_tx_power(struct iwl_priv *priv)
        else
                tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD;
 
-       return trans_send_cmd_pdu(priv, tx_ant_cfg_cmd, CMD_SYNC,
+       return iwl_trans_send_cmd_pdu(trans(priv), tx_ant_cfg_cmd, CMD_SYNC,
                        sizeof(tx_power_cmd), &tx_power_cmd);
 }
 
@@ -625,286 +345,12 @@ struct iwl_mod_params iwlagn_mod_params = {
        .bt_coex_active = true,
        .no_sleep_autoadjust = true,
        .power_level = IWL_POWER_INDEX_1,
+       .bt_ch_announce = true,
+       .wanted_ucode_alternative = 1,
+       .auto_agg = true,
        /* the rest are 0 by default */
 };
 
-int iwlagn_rx_init(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
-{
-       u32 rb_size;
-       const u32 rfdnlog = RX_QUEUE_SIZE_LOG; /* 256 RBDs */
-       u32 rb_timeout = 0; /* FIXME: RX_RB_TIMEOUT for all devices? */
-
-       rb_timeout = RX_RB_TIMEOUT;
-
-       if (iwlagn_mod_params.amsdu_size_8K)
-               rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K;
-       else
-               rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K;
-
-       /* Stop Rx DMA */
-       iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
-
-       /* Reset driver's Rx queue write index */
-       iwl_write_direct32(priv, FH_RSCSR_CHNL0_RBDCB_WPTR_REG, 0);
-
-       /* Tell device where to find RBD circular buffer in DRAM */
-       iwl_write_direct32(priv, FH_RSCSR_CHNL0_RBDCB_BASE_REG,
-                          (u32)(rxq->bd_dma >> 8));
-
-       /* Tell device where in DRAM to update its Rx status */
-       iwl_write_direct32(priv, FH_RSCSR_CHNL0_STTS_WPTR_REG,
-                          rxq->rb_stts_dma >> 4);
-
-       /* Enable Rx DMA
-        * FH_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY is set because of HW bug in
-        *      the credit mechanism in 5000 HW RX FIFO
-        * Direct rx interrupts to hosts
-        * Rx buffer size 4 or 8k
-        * RB timeout 0x10
-        * 256 RBDs
-        */
-       iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG,
-                          FH_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL |
-                          FH_RCSR_CHNL0_RX_IGNORE_RXF_EMPTY |
-                          FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL |
-                          FH_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK |
-                          rb_size|
-                          (rb_timeout << FH_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS)|
-                          (rfdnlog << FH_RCSR_RX_CONFIG_RBDCB_SIZE_POS));
-
-       /* Set interrupt coalescing timer to default (2048 usecs) */
-       iwl_write8(priv, CSR_INT_COALESCING, IWL_HOST_INT_TIMEOUT_DEF);
-
-       return 0;
-}
-
-static void iwlagn_set_pwr_vmain(struct iwl_priv *priv)
-{
-/*
- * (for documentation purposes)
- * to set power to V_AUX, do:
-
-               if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
-                       iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
-                                              APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
-                                              ~APMG_PS_CTRL_MSK_PWR_SRC);
- */
-
-       iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
-                              APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
-                              ~APMG_PS_CTRL_MSK_PWR_SRC);
-}
-
-int iwlagn_hw_nic_init(struct iwl_priv *priv)
-{
-       unsigned long flags;
-       struct iwl_rx_queue *rxq = &priv->rxq;
-
-       /* nic_init */
-       spin_lock_irqsave(&priv->lock, flags);
-       iwl_apm_init(priv);
-
-       /* Set interrupt coalescing calibration timer to default (512 usecs) */
-       iwl_write8(priv, CSR_INT_COALESCING, IWL_HOST_INT_CALIB_TIMEOUT_DEF);
-
-       spin_unlock_irqrestore(&priv->lock, flags);
-
-       iwlagn_set_pwr_vmain(priv);
-
-       priv->cfg->ops->lib->nic_config(priv);
-
-       /* Allocate the RX queue, or reset if it is already allocated */
-       trans_rx_init(priv);
-
-       iwlagn_rx_replenish(priv);
-
-       iwlagn_rx_init(priv, rxq);
-
-       spin_lock_irqsave(&priv->lock, flags);
-
-       rxq->need_update = 1;
-       iwl_rx_queue_update_write_ptr(priv, rxq);
-
-       spin_unlock_irqrestore(&priv->lock, flags);
-
-       /* Allocate or reset and init all Tx and Command queues */
-       if (trans_tx_init(priv))
-               return -ENOMEM;
-
-       if (priv->cfg->base_params->shadow_reg_enable) {
-               /* enable shadow regs in HW */
-               iwl_set_bit(priv, CSR_MAC_SHADOW_REG_CTRL,
-                       0x800FFFFF);
-       }
-
-       set_bit(STATUS_INIT, &priv->status);
-
-       return 0;
-}
-
-/**
- * iwlagn_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
- */
-static inline __le32 iwlagn_dma_addr2rbd_ptr(struct iwl_priv *priv,
-                                         dma_addr_t dma_addr)
-{
-       return cpu_to_le32((u32)(dma_addr >> 8));
-}
-
-/**
- * iwlagn_rx_queue_restock - refill RX queue from pre-allocated pool
- *
- * If there are slots in the RX queue that need to be restocked,
- * and we have free pre-allocated buffers, fill the ranks as much
- * as we can, pulling from rx_free.
- *
- * This moves the 'write' index forward to catch up with 'processed', and
- * also updates the memory address in the firmware to reference the new
- * target buffer.
- */
-void iwlagn_rx_queue_restock(struct iwl_priv *priv)
-{
-       struct iwl_rx_queue *rxq = &priv->rxq;
-       struct list_head *element;
-       struct iwl_rx_mem_buffer *rxb;
-       unsigned long flags;
-
-       spin_lock_irqsave(&rxq->lock, flags);
-       while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
-               /* The overwritten rxb must be a used one */
-               rxb = rxq->queue[rxq->write];
-               BUG_ON(rxb && rxb->page);
-
-               /* Get next free Rx buffer, remove from free list */
-               element = rxq->rx_free.next;
-               rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
-               list_del(element);
-
-               /* Point to Rx buffer via next RBD in circular buffer */
-               rxq->bd[rxq->write] = iwlagn_dma_addr2rbd_ptr(priv,
-                                                             rxb->page_dma);
-               rxq->queue[rxq->write] = rxb;
-               rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
-               rxq->free_count--;
-       }
-       spin_unlock_irqrestore(&rxq->lock, flags);
-       /* If the pre-allocated buffer pool is dropping low, schedule to
-        * refill it */
-       if (rxq->free_count <= RX_LOW_WATERMARK)
-               queue_work(priv->workqueue, &priv->rx_replenish);
-
-
-       /* If we've added more space for the firmware to place data, tell it.
-        * Increment device's write pointer in multiples of 8. */
-       if (rxq->write_actual != (rxq->write & ~0x7)) {
-               spin_lock_irqsave(&rxq->lock, flags);
-               rxq->need_update = 1;
-               spin_unlock_irqrestore(&rxq->lock, flags);
-               iwl_rx_queue_update_write_ptr(priv, rxq);
-       }
-}
-
-/**
- * iwlagn_rx_replenish - Move all used packet from rx_used to rx_free
- *
- * When moving to rx_free an SKB is allocated for the slot.
- *
- * Also restock the Rx queue via iwl_rx_queue_restock.
- * This is called as a scheduled work item (except for during initialization)
- */
-void iwlagn_rx_allocate(struct iwl_priv *priv, gfp_t priority)
-{
-       struct iwl_rx_queue *rxq = &priv->rxq;
-       struct list_head *element;
-       struct iwl_rx_mem_buffer *rxb;
-       struct page *page;
-       unsigned long flags;
-       gfp_t gfp_mask = priority;
-
-       while (1) {
-               spin_lock_irqsave(&rxq->lock, flags);
-               if (list_empty(&rxq->rx_used)) {
-                       spin_unlock_irqrestore(&rxq->lock, flags);
-                       return;
-               }
-               spin_unlock_irqrestore(&rxq->lock, flags);
-
-               if (rxq->free_count > RX_LOW_WATERMARK)
-                       gfp_mask |= __GFP_NOWARN;
-
-               if (priv->hw_params.rx_page_order > 0)
-                       gfp_mask |= __GFP_COMP;
-
-               /* Alloc a new receive buffer */
-               page = alloc_pages(gfp_mask, priv->hw_params.rx_page_order);
-               if (!page) {
-                       if (net_ratelimit())
-                               IWL_DEBUG_INFO(priv, "alloc_pages failed, "
-                                              "order: %d\n",
-                                              priv->hw_params.rx_page_order);
-
-                       if ((rxq->free_count <= RX_LOW_WATERMARK) &&
-                           net_ratelimit())
-                               IWL_CRIT(priv, "Failed to alloc_pages with %s. Only %u free buffers remaining.\n",
-                                        priority == GFP_ATOMIC ?  "GFP_ATOMIC" : "GFP_KERNEL",
-                                        rxq->free_count);
-                       /* We don't reschedule replenish work here -- we will
-                        * call the restock method and if it still needs
-                        * more buffers it will schedule replenish */
-                       return;
-               }
-
-               spin_lock_irqsave(&rxq->lock, flags);
-
-               if (list_empty(&rxq->rx_used)) {
-                       spin_unlock_irqrestore(&rxq->lock, flags);
-                       __free_pages(page, priv->hw_params.rx_page_order);
-                       return;
-               }
-               element = rxq->rx_used.next;
-               rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
-               list_del(element);
-
-               spin_unlock_irqrestore(&rxq->lock, flags);
-
-               BUG_ON(rxb->page);
-               rxb->page = page;
-               /* Get physical address of the RB */
-               rxb->page_dma = dma_map_page(priv->bus.dev, page, 0,
-                               PAGE_SIZE << priv->hw_params.rx_page_order,
-                               DMA_FROM_DEVICE);
-               /* dma address must be no more than 36 bits */
-               BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36));
-               /* and also 256 byte aligned! */
-               BUG_ON(rxb->page_dma & DMA_BIT_MASK(8));
-
-               spin_lock_irqsave(&rxq->lock, flags);
-
-               list_add_tail(&rxb->list, &rxq->rx_free);
-               rxq->free_count++;
-
-               spin_unlock_irqrestore(&rxq->lock, flags);
-       }
-}
-
-void iwlagn_rx_replenish(struct iwl_priv *priv)
-{
-       unsigned long flags;
-
-       iwlagn_rx_allocate(priv, GFP_KERNEL);
-
-       spin_lock_irqsave(&priv->lock, flags);
-       iwlagn_rx_queue_restock(priv);
-       spin_unlock_irqrestore(&priv->lock, flags);
-}
-
-void iwlagn_rx_replenish_now(struct iwl_priv *priv)
-{
-       iwlagn_rx_allocate(priv, GFP_ATOMIC);
-
-       iwlagn_rx_queue_restock(priv);
-}
-
 int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
 {
        int idx = 0;
@@ -1046,18 +492,6 @@ static int iwl_get_channels_for_scan(struct iwl_priv *priv,
        return added;
 }
 
-static int iwl_fill_offch_tx(struct iwl_priv *priv, void *data, size_t maxlen)
-{
-       struct sk_buff *skb = priv->_agn.offchan_tx_skb;
-
-       if (skb->len < maxlen)
-               maxlen = skb->len;
-
-       memcpy(data, skb->data, maxlen);
-
-       return maxlen;
-}
-
 int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
 {
        struct iwl_host_cmd cmd = {
@@ -1072,15 +506,15 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
        u16 rx_chain = 0;
        enum ieee80211_band band;
        u8 n_probes = 0;
-       u8 rx_ant = priv->hw_params.valid_rx_ant;
+       u8 rx_ant = hw_params(priv).valid_rx_ant;
        u8 rate;
        bool is_active = false;
        int  chan_mod;
        u8 active_chains;
-       u8 scan_tx_antennas = priv->hw_params.valid_tx_ant;
+       u8 scan_tx_antennas = hw_params(priv).valid_tx_ant;
        int ret;
 
-       lockdep_assert_held(&priv->mutex);
+       lockdep_assert_held(&priv->shrd->mutex);
 
        if (vif)
                ctx = iwl_rxon_ctx_from_vif(vif);
@@ -1100,7 +534,7 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
        scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
        scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
 
-       if (priv->scan_type != IWL_SCAN_OFFCH_TX &&
+       if (priv->scan_type != IWL_SCAN_ROC &&
            iwl_is_any_associated(priv)) {
                u16 interval = 0;
                u32 extra;
@@ -1109,7 +543,7 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
 
                IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
                switch (priv->scan_type) {
-               case IWL_SCAN_OFFCH_TX:
+               case IWL_SCAN_ROC:
                        WARN_ON(1);
                        break;
                case IWL_SCAN_RADIO_RESET:
@@ -1131,10 +565,11 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
                scan->suspend_time = cpu_to_le32(scan_suspend_time);
                IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
                               scan_suspend_time, interval);
-       } else if (priv->scan_type == IWL_SCAN_OFFCH_TX) {
+       } else if (priv->scan_type == IWL_SCAN_ROC) {
                scan->suspend_time = 0;
-               scan->max_out_time =
-                       cpu_to_le32(1024 * priv->_agn.offchan_tx_timeout);
+               scan->max_out_time = 0;
+               scan->quiet_time = 0;
+               scan->quiet_plcp_th = 0;
        }
 
        switch (priv->scan_type) {
@@ -1162,8 +597,8 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
                } else
                        IWL_DEBUG_SCAN(priv, "Start passive scan.\n");
                break;
-       case IWL_SCAN_OFFCH_TX:
-               IWL_DEBUG_SCAN(priv, "Start offchannel TX scan.\n");
+       case IWL_SCAN_ROC:
+               IWL_DEBUG_SCAN(priv, "Start ROC scan.\n");
                break;
        }
 
@@ -1246,7 +681,7 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
        scan->tx_cmd.rate_n_flags = iwl_hw_set_rate_n_flags(rate, rate_flags);
 
        /* In power save mode use one chain, otherwise use all chains */
-       if (test_bit(STATUS_POWER_PMI, &priv->status)) {
+       if (test_bit(STATUS_POWER_PMI, &priv->shrd->status)) {
                /* rx_ant has been set to all valid chains previously */
                active_chains = rx_ant &
                                ((u8)(priv->chain_noise_data.active_chains));
@@ -1266,7 +701,8 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
        }
 
        /* MIMO is not used here, but value is required */
-       rx_chain |= priv->hw_params.valid_rx_ant << RXON_RX_CHAIN_VALID_POS;
+       rx_chain |=
+               hw_params(priv).valid_rx_ant << RXON_RX_CHAIN_VALID_POS;
        rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
        rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS;
        rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
@@ -1281,19 +717,13 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
                                        IWL_MAX_SCAN_SIZE - sizeof(*scan));
                break;
        case IWL_SCAN_RADIO_RESET:
+       case IWL_SCAN_ROC:
                /* use bcast addr, will not be transmitted but must be valid */
                cmd_len = iwl_fill_probe_req(priv,
                                        (struct ieee80211_mgmt *)scan->data,
                                        iwl_bcast_addr, NULL, 0,
                                        IWL_MAX_SCAN_SIZE - sizeof(*scan));
                break;
-       case IWL_SCAN_OFFCH_TX:
-               cmd_len = iwl_fill_offch_tx(priv, scan->data,
-                                           IWL_MAX_SCAN_SIZE
-                                            - sizeof(*scan)
-                                            - sizeof(struct iwl_scan_channel));
-               scan->scan_flags |= IWL_SCAN_FLAGS_ACTION_FRAME_TX;
-               break;
        default:
                BUG();
        }
@@ -1314,18 +744,18 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
                                is_active, n_probes,
                                (void *)&scan->data[cmd_len]);
                break;
-       case IWL_SCAN_OFFCH_TX: {
+       case IWL_SCAN_ROC: {
                struct iwl_scan_channel *scan_ch;
 
                scan->channel_count = 1;
 
                scan_ch = (void *)&scan->data[cmd_len];
-               scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE;
+               scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
                scan_ch->channel =
-                       cpu_to_le16(priv->_agn.offchan_tx_chan->hw_value);
+                       cpu_to_le16(priv->hw_roc_channel->hw_value);
                scan_ch->active_dwell =
-                       cpu_to_le16(priv->_agn.offchan_tx_timeout);
-               scan_ch->passive_dwell = 0;
+               scan_ch->passive_dwell =
+                       cpu_to_le16(priv->hw_roc_duration);
 
                /* Set txpower levels to defaults */
                scan_ch->dsp_atten = 110;
@@ -1334,7 +764,7 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
                 * power level:
                 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
                 */
-               if (priv->_agn.offchan_tx_chan->band == IEEE80211_BAND_5GHZ)
+               if (priv->hw_roc_channel->band == IEEE80211_BAND_5GHZ)
                        scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
                else
                        scan_ch->tx_gain = ((1 << 5) | (5 << 3));
@@ -1354,15 +784,15 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
        scan->len = cpu_to_le16(cmd.len[0]);
 
        /* set scan bit here for PAN params */
-       set_bit(STATUS_SCAN_HW, &priv->status);
+       set_bit(STATUS_SCAN_HW, &priv->shrd->status);
 
        ret = iwlagn_set_pan_params(priv);
        if (ret)
                return ret;
 
-       ret = trans_send_cmd(priv, &cmd);
+       ret = iwl_trans_send_cmd(trans(priv), &cmd);
        if (ret) {
-               clear_bit(STATUS_SCAN_HW, &priv->status);
+               clear_bit(STATUS_SCAN_HW, &priv->shrd->status);
                iwlagn_set_pan_params(priv);
        }
 
@@ -1385,7 +815,7 @@ int iwlagn_manage_ibss_station(struct iwl_priv *priv,
 void iwl_free_tfds_in_queue(struct iwl_priv *priv,
                            int sta_id, int tid, int freed)
 {
-       lockdep_assert_held(&priv->sta_lock);
+       lockdep_assert_held(&priv->shrd->sta_lock);
 
        if (priv->stations[sta_id].tid[tid].tfds_in_queue >= freed)
                priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
@@ -1408,8 +838,8 @@ int iwlagn_wait_tx_queue_empty(struct iwl_priv *priv)
        int ret = 0;
 
        /* waiting for all the tx frames complete might take a while */
-       for (cnt = 0; cnt < priv->hw_params.max_txq_num; cnt++) {
-               if (cnt == priv->cmd_queue)
+       for (cnt = 0; cnt < hw_params(priv).max_txq_num; cnt++) {
+               if (cnt == priv->shrd->cmd_queue)
                        continue;
                txq = &priv->txq[cnt];
                q = &txq->q;
@@ -1466,12 +896,12 @@ int iwlagn_txfifo_flush(struct iwl_priv *priv, u16 flush_control)
                       flush_cmd.fifo_control);
        flush_cmd.flush_control = cpu_to_le16(flush_control);
 
-       return trans_send_cmd(priv, &cmd);
+       return iwl_trans_send_cmd(trans(priv), &cmd);
 }
 
 void iwlagn_dev_txfifo_flush(struct iwl_priv *priv, u16 flush_control)
 {
-       mutex_lock(&priv->mutex);
+       mutex_lock(&priv->shrd->mutex);
        ieee80211_stop_queues(priv->hw);
        if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
                IWL_ERR(priv, "flush request fail\n");
@@ -1481,7 +911,7 @@ void iwlagn_dev_txfifo_flush(struct iwl_priv *priv, u16 flush_control)
        iwlagn_wait_tx_queue_empty(priv);
 done:
        ieee80211_wake_queues(priv->hw);
-       mutex_unlock(&priv->mutex);
+       mutex_unlock(&priv->shrd->mutex);
 }
 
 /*
@@ -1660,12 +1090,12 @@ void iwlagn_send_advance_bt_config(struct iwl_priv *priv)
        if (priv->cfg->bt_params->bt_session_2) {
                memcpy(&bt_cmd_2000.basic, &basic,
                        sizeof(basic));
-               ret = trans_send_cmd_pdu(priv, REPLY_BT_CONFIG,
+               ret = iwl_trans_send_cmd_pdu(trans(priv), REPLY_BT_CONFIG,
                        CMD_SYNC, sizeof(bt_cmd_2000), &bt_cmd_2000);
        } else {
                memcpy(&bt_cmd_6000.basic, &basic,
                        sizeof(basic));
-               ret = trans_send_cmd_pdu(priv, REPLY_BT_CONFIG,
+               ret = iwl_trans_send_cmd_pdu(trans(priv), REPLY_BT_CONFIG,
                        CMD_SYNC, sizeof(bt_cmd_6000), &bt_cmd_6000);
        }
        if (ret)
@@ -1678,7 +1108,7 @@ void iwlagn_bt_adjust_rssi_monitor(struct iwl_priv *priv, bool rssi_ena)
        struct iwl_rxon_context *ctx, *found_ctx = NULL;
        bool found_ap = false;
 
-       lockdep_assert_held(&priv->mutex);
+       lockdep_assert_held(&priv->shrd->mutex);
 
        /* Check whether AP or GO mode is active. */
        if (rssi_ena) {
@@ -1791,7 +1221,7 @@ static void iwlagn_bt_traffic_change_work(struct work_struct *work)
                break;
        }
 
-       mutex_lock(&priv->mutex);
+       mutex_lock(&priv->shrd->mutex);
 
        /*
         * We can not send command to firmware while scanning. When the scan
@@ -1800,7 +1230,7 @@ static void iwlagn_bt_traffic_change_work(struct work_struct *work)
         * STATUS_SCANNING to avoid race when queue_work two times from
         * different notifications, but quit and not perform any work at all.
         */
-       if (test_bit(STATUS_SCAN_HW, &priv->status))
+       if (test_bit(STATUS_SCAN_HW, &priv->shrd->status))
                goto out;
 
        iwl_update_chain_flags(priv);
@@ -1819,7 +1249,7 @@ static void iwlagn_bt_traffic_change_work(struct work_struct *work)
         */
        iwlagn_bt_coex_rssi_monitor(priv);
 out:
-       mutex_unlock(&priv->mutex);
+       mutex_unlock(&priv->shrd->mutex);
 }
 
 /*
@@ -1926,7 +1356,7 @@ static void iwlagn_set_kill_msk(struct iwl_priv *priv,
                priv->kill_cts_mask = bt_kill_cts_msg[kill_msk];
 
                /* schedule to send runtime bt_config */
-               queue_work(priv->workqueue, &priv->bt_runtime_config);
+               queue_work(priv->shrd->workqueue, &priv->bt_runtime_config);
        }
 }
 
@@ -1970,7 +1400,7 @@ void iwlagn_bt_coex_profile_notif(struct iwl_priv *priv,
                                        IWL_BT_COEX_TRAFFIC_LOAD_NONE;
                        }
                        priv->bt_status = coex->bt_status;
-                       queue_work(priv->workqueue,
+                       queue_work(priv->shrd->workqueue,
                                   &priv->bt_traffic_change_work);
                }
        }
@@ -1979,22 +1409,19 @@ void iwlagn_bt_coex_profile_notif(struct iwl_priv *priv,
 
        /* FIXME: based on notification, adjust the prio_boost */
 
-       spin_lock_irqsave(&priv->lock, flags);
+       spin_lock_irqsave(&priv->shrd->lock, flags);
        priv->bt_ci_compliance = coex->bt_ci_compliance;
-       spin_unlock_irqrestore(&priv->lock, flags);
+       spin_unlock_irqrestore(&priv->shrd->lock, flags);
 }
 
 void iwlagn_bt_rx_handler_setup(struct iwl_priv *priv)
 {
-       iwlagn_rx_handler_setup(priv);
        priv->rx_handlers[REPLY_BT_COEX_PROFILE_NOTIF] =
                iwlagn_bt_coex_profile_notif;
 }
 
 void iwlagn_bt_setup_deferred_work(struct iwl_priv *priv)
 {
-       iwlagn_setup_deferred_work(priv);
-
        INIT_WORK(&priv->bt_traffic_change_work,
                  iwlagn_bt_traffic_change_work);
 }
@@ -2084,7 +1511,7 @@ static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
 void iwlagn_set_rxon_chain(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
 {
        bool is_single = is_single_rx_stream(priv);
-       bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
+       bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->shrd->status);
        u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
        u32 active_chains;
        u16 rx_chain;
@@ -2096,7 +1523,7 @@ void iwlagn_set_rxon_chain(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
        if (priv->chain_noise_data.active_chains)
                active_chains = priv->chain_noise_data.active_chains;
        else
-               active_chains = priv->hw_params.valid_rx_ant;
+               active_chains = hw_params(priv).valid_rx_ant;
 
        if (priv->cfg->bt_params &&
            priv->cfg->bt_params->advanced_bt_coexist &&
@@ -2306,9 +1733,9 @@ void iwlagn_init_notification_wait(struct iwl_priv *priv,
        wait_entry->triggered = false;
        wait_entry->aborted = false;
 
-       spin_lock_bh(&priv->_agn.notif_wait_lock);
-       list_add(&wait_entry->list, &priv->_agn.notif_waits);
-       spin_unlock_bh(&priv->_agn.notif_wait_lock);
+       spin_lock_bh(&priv->notif_wait_lock);
+       list_add(&wait_entry->list, &priv->notif_waits);
+       spin_unlock_bh(&priv->notif_wait_lock);
 }
 
 int iwlagn_wait_notification(struct iwl_priv *priv,
@@ -2317,13 +1744,13 @@ int iwlagn_wait_notification(struct iwl_priv *priv,
 {
        int ret;
 
-       ret = wait_event_timeout(priv->_agn.notif_waitq,
+       ret = wait_event_timeout(priv->notif_waitq,
                                 wait_entry->triggered || wait_entry->aborted,
                                 timeout);
 
-       spin_lock_bh(&priv->_agn.notif_wait_lock);
+       spin_lock_bh(&priv->notif_wait_lock);
        list_del(&wait_entry->list);
-       spin_unlock_bh(&priv->_agn.notif_wait_lock);
+       spin_unlock_bh(&priv->notif_wait_lock);
 
        if (wait_entry->aborted)
                return -EIO;
@@ -2337,93 +1764,7 @@ int iwlagn_wait_notification(struct iwl_priv *priv,
 void iwlagn_remove_notification(struct iwl_priv *priv,
                                struct iwl_notification_wait *wait_entry)
 {
-       spin_lock_bh(&priv->_agn.notif_wait_lock);
+       spin_lock_bh(&priv->notif_wait_lock);
        list_del(&wait_entry->list);
-       spin_unlock_bh(&priv->_agn.notif_wait_lock);
-}
-
-int iwlagn_start_device(struct iwl_priv *priv)
-{
-       int ret;
-
-       if ((priv->cfg->sku & EEPROM_SKU_CAP_AMT_ENABLE) &&
-            iwl_prepare_card_hw(priv)) {
-               IWL_WARN(priv, "Exit HW not ready\n");
-               return -EIO;
-       }
-
-       /* If platform's RF_KILL switch is NOT set to KILL */
-       if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
-               clear_bit(STATUS_RF_KILL_HW, &priv->status);
-       else
-               set_bit(STATUS_RF_KILL_HW, &priv->status);
-
-       if (iwl_is_rfkill(priv)) {
-               wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
-               iwl_enable_interrupts(priv);
-               return -ERFKILL;
-       }
-
-       iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
-
-       ret = iwlagn_hw_nic_init(priv);
-       if (ret) {
-               IWL_ERR(priv, "Unable to init nic\n");
-               return ret;
-       }
-
-       /* make sure rfkill handshake bits are cleared */
-       iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
-       iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
-                   CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
-
-       /* clear (again), then enable host interrupts */
-       iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
-       iwl_enable_interrupts(priv);
-
-       /* really make sure rfkill handshake bits are cleared */
-       iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
-       iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
-
-       return 0;
-}
-
-void iwlagn_stop_device(struct iwl_priv *priv)
-{
-       unsigned long flags;
-
-       /* stop and reset the on-board processor */
-       iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
-
-       /* tell the device to stop sending interrupts */
-       spin_lock_irqsave(&priv->lock, flags);
-       iwl_disable_interrupts(priv);
-       spin_unlock_irqrestore(&priv->lock, flags);
-       iwl_synchronize_irq(priv);
-
-       /* device going down, Stop using ICT table */
-       iwl_disable_ict(priv);
-
-       /*
-        * If a HW restart happens during firmware loading,
-        * then the firmware loading might call this function
-        * and later it might be called again due to the
-        * restart. So don't process again if the device is
-        * already dead.
-        */
-       if (test_bit(STATUS_DEVICE_ENABLED, &priv->status)) {
-               trans_tx_stop(priv);
-               trans_rx_stop(priv);
-
-               /* Power-down device's busmaster DMA clocks */
-               iwl_write_prph(priv, APMG_CLK_DIS_REG,
-                              APMG_CLK_VAL_DMA_CLK_RQT);
-               udelay(5);
-       }
-
-       /* Make sure (redundant) we've released our request to stay awake */
-       iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
-
-       /* Stop the device, and put it in low power state */
-       iwl_apm_stop(priv);
+       spin_unlock_bh(&priv->notif_wait_lock);
 }
This page took 0.040281 seconds and 5 git commands to generate.