1. 27 9月, 2013 3 次提交
  2. 18 5月, 2013 1 次提交
  3. 28 3月, 2013 1 次提交
  4. 19 3月, 2013 1 次提交
  5. 23 1月, 2013 1 次提交
  6. 10 1月, 2013 3 次提交
  7. 08 1月, 2013 3 次提交
  8. 17 11月, 2012 1 次提交
  9. 30 10月, 2012 1 次提交
  10. 10 7月, 2012 1 次提交
  11. 07 6月, 2012 2 次提交
  12. 16 5月, 2012 1 次提交
    • S
      ath9k_hw: Fix RTT calibration · 8a90555f
      Sujith Manoharan 提交于
      This patch fixes multiple issues with the current RTT
      implementation in ath9k.
      
      * The data that is obtained from the RTT interface registers
        are stored in 31:5 - mask out the extra bits when reading them.
      
      * A history buffer is maintained which is not needed at all.
        Remove this array and just store the baseband data for each
        chain (or bank).
      
      * A 'num_readings' variable was being used to handle the
        last entry. But it was being used in an improper manner, with
        the result that the RTT values were never being written
        to the RTT Interface registers. Fix this by using a simple
        flag.
      
      * Stop baseband operations before programming the calibration values
        to the HW.
      
      * Do not restore RX gain settings as part of RTT.
      Signed-off-by: NSujith Manoharan <c_manoha@qca.qualcomm.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      8a90555f
  13. 24 4月, 2012 1 次提交
  14. 28 2月, 2012 1 次提交
  15. 20 12月, 2011 1 次提交
  16. 08 12月, 2011 1 次提交
  17. 01 12月, 2011 1 次提交
  18. 29 11月, 2011 1 次提交
  19. 03 11月, 2011 2 次提交
  20. 15 10月, 2011 6 次提交
  21. 20 9月, 2011 2 次提交
  22. 15 9月, 2011 1 次提交
  23. 25 8月, 2011 1 次提交
  24. 20 5月, 2011 1 次提交
  25. 27 4月, 2011 1 次提交
    • R
      ath9k_hw: Fix Tx IQ Calibration hang issue in AR9003 chips · 3782c69d
      Rajkumar Manoharan 提交于
      On AR9003 chips, doing three IQ calibrations will possibly cause chip
      in stuck state. In noisy environment, chip could receive
      a packet during the middle of three calibrations and it causes
      the conflict of HW access and the eventual failure. It also
      causes IQ calibration outliers which results in poor Tx EVM.
      
      The IQ Cal procedure is after resetting the chip, run IQ cal 3 times
      per each cal cycle and find the two closest readings and average of two.
      The advantage of running Tx IQ cal more than once is that we can compare
      calibration results for the same gain setting over multiple iterations.
      Most of the cases the IQ failures were observed after first pass.
      
      For the AR9485 and later chips, Tx IQ Calibration is performed along
      with AGC cal. But for pre-AR9485 chips, Tx IQ cal HW has to be separated
      from the rest of calibration HW to avoid chip hang. After all
      calibrations are done in HW, we can start SW post-processing.
      By doing this way, we minimize the SW difference among all chips.
      
      The order of calibration (run IQ cal before other calibration) is also
      needed to avoid chip hang for chips before AR9485. This issue was
      originally observed with AR9382.
      
      During the issue kernel log was filled with following message
      ath: timeout (100000 us) on reg 0xa640: 0x00000001 & 0x00000001 != 0x00000000
      ath: timeout (100000 us) on reg 0xa2c4: 0x00158dd9 & 0x00000001 != 0x00000000
      ath: Unable to reset channel (2412 MHz), reset status -5
      ath: Unable to set channel
      Signed-off-by: NRajkumar Manoharan <rmanoharan@atheros.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      3782c69d
  26. 26 4月, 2011 1 次提交