1. 12 8月, 2014 2 次提交
  2. 04 8月, 2014 1 次提交
    • S
      ath10k: add spectral scan feature · 855aed12
      Simon Wunderlich 提交于
      Adds the spectral scan feature for ath10k. The spectral scan is triggered by
      configuring a mode through a debugfs control file. Samples can be gathered via
      another relay debugfs file.
      
      Essentially, to try it out:
      
      ip link set dev wlan0 up
      echo background > /sys/kernel/debug/ieee80211/phy0/ath10k/spectral_scan_ctl
      echo trigger > /sys/kernel/debug/ieee80211/phy0/ath10k/spectral_scan_ctl
      iw dev wlan0 scan
      echo disable > /sys/kernel/debug/ieee80211/phy0/ath10k/spectral_scan_ctl
      cat /sys/kernel/debug/ieee80211/phy0/ath10k/spectral_scan0 > samples
      
      This feature is still experimental. Based on the original RFC patch of
      Sven Eckelmann.
      Signed-off-by: NSimon Wunderlich <sw@simonwunderlich.de>
      Signed-off-by: NMathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de>
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      855aed12
  3. 29 7月, 2014 1 次提交
  4. 14 7月, 2014 1 次提交
  5. 26 5月, 2014 1 次提交
    • M
      ath10k: make core registering async · 6782cb69
      Michal Kazior 提交于
      If ath10k was built into the kernel it could stall
      booting for 120 seconds by default (60 seconds for
      each firmware API variant) waiting for firmware
      files before userspace was ready or filesystems
      mounted.
      
      Fix this by making the core registering
      asynchronous.
      
      This also shoves off about 1 second from boot time
      on most systems since the driver is now mostly
      initialized in a worker and modprobe takes very
      little time to complete.
      Signed-off-by: NMichal Kazior <michal.kazior@tieto.com>
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      6782cb69
  6. 23 5月, 2014 1 次提交
  7. 11 4月, 2014 1 次提交
    • M
      ath10k: refactor radar detection code · d650097b
      Michal Kazior 提交于
      If 20MHz CAC completed successfully then
      subsequent CAC with wider bandwidth (40Mhz, 80Mhz)
      with identical control frequency did not start
      monitor vdev making it impossible to detect any
      radar pulses during intended CAC.
      
      It also was incorrect to assume ath10k_config() will
      be called after CAC is finished. Theoretically for
      non-HT channels nothing changes between CAC and
      start_ap() (albeit in practice this can be
      different). The incorrect assumption led to CAC
      not being stopped on non-HT chandefs leading to
      all Rx being drooped making it impossible for
      clients to associate.
      
      While at it clean up the code a bit.
      
      kvalo: separate WARN_ON() from the if statement
      Signed-off-by: NMichal Kazior <michal.kazior@tieto.com>
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      d650097b
  8. 08 4月, 2014 1 次提交
    • M
      ath10k: refactor monitor code · 1bbc0975
      Michal Kazior 提交于
      It was possible to create/delete/start/stop
      monitor vdev from a few places that were not
      exclusively protected against each other. This
      resulted in monitor vdev being stopped/removed by
      one call origin while another one was expecting it
      to continue running.
      
      For example if CAC was started and interface's
      promiscuous mode was toggled monitor vdev was
      removed from the driver meaning no radar would be
      detected. In additional a warning would be printed
      upon CAC completion complaining it tried to stop
      non-running monitor vdev.
      
      The patch simplifies monitor code by removing
      IEEE80211_HW_WANT_MONITOR_VIF (which wasn't really
      ever needed) and improves state tracking. It also
      unifies prints.
      Signed-off-by: NMichal Kazior <michal.kazior@tieto.com>
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      1bbc0975
  9. 28 3月, 2014 2 次提交
  10. 13 3月, 2014 1 次提交
  11. 28 2月, 2014 4 次提交
  12. 15 2月, 2014 1 次提交
  13. 13 2月, 2014 2 次提交
  14. 24 1月, 2014 2 次提交
  15. 23 1月, 2014 1 次提交
    • K
      ath10k: enable firmware STA quick kickout · 5a13e76e
      Kalle Valo 提交于
      Firmware has a feature to track if the associated STA is not acking the frames.
      When that happens, the firmware sends WMI_PEER_STA_KICKOUT_EVENTID event to the
      host. Enable that to faster detect when a STA has left BSS without sending a
      deauth frame.
      
      Also set huge keepalive timeouts to avoid using the keepalive functionality in
      the firmware.
      Signed-off-by: NKalle Valo <kvalo@qca.qualcomm.com>
      5a13e76e
  16. 10 1月, 2014 3 次提交
  17. 16 12月, 2013 1 次提交
  18. 20 11月, 2013 4 次提交
  19. 15 11月, 2013 1 次提交
  20. 16 10月, 2013 2 次提交
  21. 01 10月, 2013 3 次提交
  22. 27 9月, 2013 4 次提交