1. 30 3月, 2016 29 次提交
  2. 20 3月, 2016 4 次提交
  3. 10 3月, 2016 7 次提交
    • A
      iwlwifi: mvm: update GSCAN capabilities · 5ed47226
      Ayala Beker 提交于
      Gscan capabilities were updated with new capabilities supported
      by the device. While at it, simplify the firmware support
      conditional and move both conditions into the WARN() to make it
      easier to undertand and use the unlikely() for both.
      Signed-off-by: NAyala Beker <ayala.beker@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      5ed47226
    • J
      iwlwifi: mvm: don't try to offload AES-CMAC in AP/IBSS modes · 81279c49
      Johannes Berg 提交于
      The firmware/hardware only supports checking AES-CMAC on RX, not
      using it on TX. For station mode this is fine, since it's the only
      thing it will ever do. For AP mode, it never receives such frames,
      but must be able to transmit them. This is currently broken since
      we try to enable them for hardware crypto (for RX only) and then
      treat them as TX_CMD_SEC_EXT, leading to FIFO underruns during TX
      so the frames never go out to the air.
      
      To fix this, simply use software on TX in AP (and IBSS) mode.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      81279c49
    • E
      iwlwifi: mvm: adapt the firmware assert log to new firmware · 7d3ca7f4
      Emmanuel Grumbach 提交于
      Newer firmware versions put different data in the memory
      which is read by the driver upon firmware crash. Just
      change the variable names in the code and the name of the
      data in the log that we print withouth any functional
      change.
      On older firmware, there will be a mismatch between the
      names that are printed and the content itself, but that's
      harmless.
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      7d3ca7f4
    • G
      iwlwifi: pcie: avoid restocks inside rx loop if not emergency · e0e168dc
      Gregory Greenman 提交于
      When trying to reach high Rx throughput of more than 500Mbps on
      a device with a relatively weak CPU (Atom x5-Z8500), CPU utilization
      may become a bottleneck. Analysis showed that we are looping in
      iwl_pcie_rx_handle for very long periods which led to starvation
      of other threads (iwl_pcie_rx_handle runs with _bh disabled).
      We were handling Rx and allocating new buffers and the new buffers
      were ready quickly enough to be available before we had finished
      handling all the buffers available in the hardware. As a
      consequence, we called iwl_pcie_rxq_restock to refill the hardware
      with the new buffers, and start again handling new buffers without
      exiting the function. Since we read the hardware pointer again when
      we goto restart, new buffers were handled immediately instead of
      exiting the function.
      
      This patch avoids refilling RBs inside rx handling loop, unless an
      emergency situation is reached. It also doesn't read the hardware
      pointer again unless we are in an emergency (unlikely) case.
      This significantly reduce the maximal time we spend in
      iwl_pcie_rx_handle with _bh disabled.
      Signed-off-by: NGregory Greenman <gregory.greenman@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      e0e168dc
    • C
      iwlwifi: mvm: return the cooling state index instead of the budget · b358993b
      Chaya Rachel Ivgi 提交于
      iwl_mvm_tcool_get_cur_state is the function that returns the
      cooling state index to the sysfs handler. This function returns
      mvm->cooling_dev.cur_state but that variable was set to the
      budget and not the cooling state index. Fix that.
      Add a missing blank line while at it.
      Signed-off-by: NChaya Rachel Ivgi <chaya.rachel.ivgi@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      b358993b
    • E
      iwlwifi: mvm: remove RRM advertisement · 416cb246
      Emmanuel Grumbach 提交于
      mac80211 advertises this feature for all its drivers.
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      416cb246
    • E
      iwlwifi: mvm: don't let NDPs mess the packet tracking · 532beba3
      Emmanuel Grumbach 提交于
      We need to track the next packet that we will reclaim in
      order to know when the Tx queues are empty. This is useful
      when we open or tear down an A-MPDU session which requires
      to switch queue.
      The next packet being reclaimed is identified by its WiFi
      sequence number and this is relevant only when we use QoS.
      QoS NDPs do have a TID but have a meaningless sequence
      number. The spec mandates the receiver to ignore the
      sequence number in this case, allowing the transmitter to
      put any sequence number. Our implementation leaves it 0.
      When we reclaim a QoS NDP, we can't update the next_relcaim
      counter since the sequence number of the QoS NDP itself is
      invalid.
      We used to update the next_reclaim based on the sequence
      number of the QoS NDP which reset it to 1 (0 + 1) and
      because of this, we never knew when the queue got empty.
      This had to sad consequence to stuck the A-MPDU state
      machine in a transient state.
      To fix this, don't update next_reclaim when we reclaim
      a QoS NDP.
      
      Alesya saw this bug when testing u-APSD. Because the
      A-MPDU state machine was stuck in EMPTYING_DELBA, we
      updated mac80211 that we still have frames for that
      station when it got back to sleep. mac80211 then wrongly
      set the TIM bit in the beacon and requested to release
      non-existent frames from the A-MPDU queue. This led to
      a situation where the client was trying to poll frames
      but we had no frames to send.
      Reported-by: NAlesya Shapira <alesya.shapira@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      532beba3