1. 06 9月, 2008 1 次提交
  2. 30 8月, 2008 2 次提交
    • M
      b43: Rewrite TX power adjustment · 18c8adeb
      Michael Buesch 提交于
      This patch rewrites the TX power recalculation algorithms to scale better
      with changed enviromnent. If there's low
      TX traffic, the power will be checked against the desired values
      every 60 seconds.
      If there is high TX traffic, the check is redone every 2 seconds. This improves
      the reaction times a lot and confuses the rate control less.
      It will also reduce the time it initially takes to tune to a new TX power
      value. With the old algorithm it could take about 30 to 45 seconds to settle to
      a new power value. This will happen in about two to four seconds now.
      Signed-off-by: NMichael Buesch <mb@bu3sch.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      18c8adeb
    • M
      b43: Implement dynamic PHY API · ef1a628d
      Michael Buesch 提交于
      This patch implements a dynamic "ops" based PHY API.
      This is needed in order to conveniently support future PHY types
      to avoid the "switch"-hell.
      
      This patch does not change any functionality. It just moves lots
      of code from one place to another and adjusts it for the changed
      data structures.
      Signed-off-by: NMichael Buesch <mb@bu3sch.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      ef1a628d
  3. 15 5月, 2008 2 次提交
  4. 08 5月, 2008 2 次提交
    • M
      b43: Remove some dead code · f4440e8a
      Michael Buesch 提交于
      This patch removes some dead code from the driver.
      Signed-off-by: NMichael Buesch <mb@bu3sch.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      f4440e8a
    • M
      b43: Rewrite LO calibration algorithm · f5eda47f
      Michael Buesch 提交于
      This patch distributes the Local Oscillator calibration bursts over time,
      so that calibration only happens when it's actually needed.
      Currently we periodically perform a recalibration of the whole table.
      The table is huge and this takes lots of time. Additionally only small bits
      of the table are actually needed at a given time. So instead of maintaining
      a huge table with all possible calibration values, we create dynamic calibration
      settings that
      a) We only calibrate when they are actually needed.
      b) Are cached for some time until they expire.
      So a recalibration might happen if we need a calibration setting that's not
      cached, or if the active calibration setting expires.
      Currently the expire timeout is set to 30 seconds. We may raise that in future.
      
      This patch reduces overall memory consumption by nuking the
      huge static calibration tables.
      
      This patch has been tested on several 4306, 4311 and 4318 flavours.
      Signed-off-by: NMichael Buesch <mb@bu3sch.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      f5eda47f
  5. 24 4月, 2008 1 次提交
  6. 14 3月, 2008 1 次提交
  7. 29 1月, 2008 8 次提交
  8. 30 11月, 2007 1 次提交
  9. 14 10月, 2007 1 次提交
    • G
      b43 wireless needs <linux/io.h> · 50e36ebe
      Geert Uytterhoeven 提交于
      b43 wireless needs <linux/io.h>
      
        linux/drivers/net/wireless/b43/pio.h: In function 'b43_pio_write':
        linux/drivers/net/wireless/b43/pio.h:89: error: implicit declaration of function 'mmiowb'
      
        linux/drivers/net/wireless/b43/phy.c: In function 'b43_phy_write':
        linux/drivers/net/wireless/b43/phy.c:301: error: implicit declaration of function 'mmiowb'
      
        linuxdrivers/net/wireless/b43/sysfs.c: In function 'b43_attr_interfmode_store':
        linuxdrivers/net/wireless/b43/sysfs.c:147: error: implicit declaration of function 'mmiowb'
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      50e36ebe
  10. 11 10月, 2007 3 次提交