Linux wireless drivers development
 help / color / mirror / Atom feed
* pull request: wl12xx 2011-05-05
@ 2011-05-05 16:38 Luciano Coelho
  0 siblings, 0 replies; 2+ messages in thread
From: Luciano Coelho @ 2011-05-05 16:38 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless

Hello John,

One more pull for 2.6.40.  I've held this back a bit so that we could
run some tests internally.  In this series we add BT-coexistence in AP
mode, FM-coexistence, some more debugging info into debugfs, some fixes
in the chip's powersave modes and other small improvements and fixes.
This also includes the revert we talked about earlier.

Please pull or let me know if there's any problem.  This tree is based
on wireless-next/master.

Thanks!


The following changes since commit ff776cecec92fe7cac4a9ce1919576ad6e737e08:

  mwl8k: Reducing extra_tx_headroom for tx optimization in AP mode (2011-04-29 15:36:15 -0400)

are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git for-linville

Arik Nemtsov (12):
      wl12xx: implement the tx_frames_pending mac80211 callback
      wl12xx: discard corrupted packets in RX
      wl12xx: add BT-coexistance for AP
      wl12xx: use wiphy values for setting rts, frag thresholds on init
      wl12xx: AP-mode - disable beacon filtering on start up
      wl12xx: schedule recovery on command timeout
      wl12xx: print firmware program counter during recovery
      wl12xx: AP-mode - overhaul rate policy configuration
      wl12xx: AP-mode - reconfigure templates after basic rates change
      wl12xx: add debugfs entry for starting recovery
      wl12xx: fix race condition during recovery in AP mode
      wl12xx: export driver state to debugfs

Eliad Peller (6):
      wl12xx: sleep instead of wakeup after tx work
      wl12xx: avoid premature elp entrance
      wl12xx: print actual rx packet size (without padding)
      wl12xx: avoid redundant join on interface reconfiguration
      wl12xx: configure rates when working in ibss mode
      wl12xx: add debugfs entries for dtim_interval and beacon_interval

Hauke Mehrtens (1):
      wl12xx: do not set queue_mapping directly

Ido Yariv (3):
      wl12xx: Modify memory configuration for 128x/AP
      wl12xx: Restart TX when TX descriptors are available
      wl12xx: Enable dynamic memory for 127x

Luciano Coelho (2):
      wl12xx: strict_stroul introduced converted to kstrtoul
      Revert "wl12xx: support FW TX inactivity triggers"

Shahar Levi (4):
      wl12xx: Set End-of-transaction Flag at Wl127x AP Mode
      wl12xx: Set correct REF CLK and TCXO CLK values to the FW
      wl12xx: FM WLAN coexistence
      wl12xx: Update Power Save Exit Retries Packets

 drivers/net/wireless/wl12xx/acx.c     |  190 +++++++++++++++++++-------
 drivers/net/wireless/wl12xx/acx.h     |  103 ++++++++++++---
 drivers/net/wireless/wl12xx/boot.c    |    6 +-
 drivers/net/wireless/wl12xx/cmd.c     |   18 ++-
 drivers/net/wireless/wl12xx/conf.h    |   90 +++++++++----
 drivers/net/wireless/wl12xx/debugfs.c |  239 +++++++++++++++++++++++++++++++++
 drivers/net/wireless/wl12xx/event.c   |   47 -------
 drivers/net/wireless/wl12xx/event.h   |   12 +--
 drivers/net/wireless/wl12xx/init.c    |  110 +++++++++++----
 drivers/net/wireless/wl12xx/init.h    |    2 +
 drivers/net/wireless/wl12xx/main.c    |  232 ++++++++++++++++++++++----------
 drivers/net/wireless/wl12xx/ps.c      |   30 ++++-
 drivers/net/wireless/wl12xx/rx.c      |   36 ++++-
 drivers/net/wireless/wl12xx/tx.c      |   13 ++-
 drivers/net/wireless/wl12xx/tx.h      |    2 +-
 drivers/net/wireless/wl12xx/wl12xx.h  |    2 +
 16 files changed, 852 insertions(+), 280 deletions(-)


-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* pull request: wl12xx 2011-05-05
@ 2011-05-13 12:49 Luciano Coelho
  0 siblings, 0 replies; 2+ messages in thread
From: Luciano Coelho @ 2011-05-13 12:49 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless

Hi John,

A few more things that would be nice to have included in 2.6.40, if
there is still time to do it.  This pull request includes my changes in
the wl12xx driver to support scheduled scans, Eliad's WoWLAN patches and
two fixes by Shahar: one that enables 802.11h in spectrum management
(which we do support but were not advertising) and one to let HT
information elements be passed up to mac80211 so it can take the
appropriate actions.


Please pull or let me know if there's any problem.  This tree is based
on wireless-next/master.

Thanks!


The following changes since commit 6b86bd62a505a4a9739474f00f8088395b7a80ba:

  mac80211: mesh: move some code to make it static (2011-05-12 14:10:55 -0400)

are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git for-linville

Eliad Peller (7):
      wl12xx: simplify wl1271_ssid_set()
      wl12xx_sdio: set interrupt as wake_up interrupt
      wl12xx: declare suspend/resume callbacks (for wowlan)
      wl12xx_sdio: set MMC_PM_KEEP_POWER flag on suspend
      wl12xx: prevent scheduling while suspending (WoW enabled)
      wl12xx_sdio: declare support for NL80211_WOW_TRIGGER_ANYTHING trigger
      wl12xx: enter/exit psm on wowlan suspend/resume

Luciano Coelho (7):
      wl12xx: add configuration values for scheduled scan
      wl12xx: listen to scheduled scan events
      wl12xx: add scheduled scan structures and commands
      wl12xx: implement scheduled scan driver operations and reporting
      wl12xx: export scheduled scan state in debugfs
      wl12xx: prevent sched_scan when not idle or not in station mode
      wl12xx: remove unused flag WL1271_FLAG_IDLE_REQUESTED

Shahar Levi (2):
      wl12xx: Don't filter beacons that include changed HT IEs
      wl12xx: add IEEE80211_HW_SPECTRUM_MGMT bit to the hw flags

 drivers/net/wireless/wl12xx/boot.c    |    4 +-
 drivers/net/wireless/wl12xx/conf.h    |   21 +++
 drivers/net/wireless/wl12xx/debugfs.c |    1 +
 drivers/net/wireless/wl12xx/event.c   |   23 +++
 drivers/net/wireless/wl12xx/main.c    |  260 +++++++++++++++++++++++++++++++--
 drivers/net/wireless/wl12xx/ps.h      |    2 +
 drivers/net/wireless/wl12xx/scan.c    |  243 ++++++++++++++++++++++++++++++
 drivers/net/wireless/wl12xx/scan.h    |  114 ++++++++++++++
 drivers/net/wireless/wl12xx/sdio.c    |   64 ++++++++-
 drivers/net/wireless/wl12xx/wl12xx.h  |   12 ++-
 10 files changed, 728 insertions(+), 16 deletions(-)

-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-05-13 12:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-05 16:38 pull request: wl12xx 2011-05-05 Luciano Coelho
  -- strict thread matches above, loose matches on Subject: below --
2011-05-13 12:49 Luciano Coelho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox