All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/40] wl12xx: move to wl12xx-fw-3
@ 2011-08-14 10:16 Eliad Peller
  2011-08-14 10:17 ` [PATCH v2 01/40] wl12xx: Revert "wl12xx: schedule TX packets according to FW occupancy" Eliad Peller
                   ` (40 more replies)
  0 siblings, 41 replies; 42+ messages in thread
From: Eliad Peller @ 2011-08-14 10:16 UTC (permalink / raw)
  To: Luciano Coelho; +Cc: linux-wireless

The new wl12xx fw (ver 7.3.0.0.75) had some major api changes.
The main change was the addition of multi-role concept, which
will later allow using multiple vifs concurrently.

Consequently, this design change caused api changes for most
of the api commands, as a new role_id had to be added.

This patchset migrates the fw to use the new fw api (a new
fw filename is used, as there is no backward compatability
with older firmwares).

Additional patchsets will follow, with further bugfixes
and new features (e.g. p2p support).

v2: apply Luca's comments, rebase.

Arik Nemtsov (17):
  wl12xx: Revert "wl12xx: schedule TX packets according to FW
    occupancy"
  wl12xx: Use a single fw for both STA and AP roles
  wl12xx: use 1 spare block in all cases
  wl12xx: handle dummy packet event also in ap mode
  wl12xx: fix session counter
  wl12xx: use dynamic hlids for AP-mode
  wl12xx: re-enable block ack session support
  wl12xx: AP-mode - set STA HT capabilities when adding a STA
  wl12xx: AP-mode - configure STA HT rates on join
  wl12xx: AP-mode - configure HT rate support to the FW
  wl12xx: track freed packets in FW by AC
  wl12xx: schedule TX packets according to FW packet occupancy
  wl12xx: handle wrap-around overflow in released Tx blocks FW counter
  wl12xx: enable AP advanced functionality
  wl12xx: set the AP-started flag only after setting keys
  wl12xx: AP-mode - prevent Tx to stale/invalid stations
  wl12xx: fix tx_queue_count spurious increment

Eliad Peller (23):
  wl12xx: temporarily disable advanced ap functions
  wl12xx: remove rx filtering stuff
  wl12xx: update fw status struct
  wl12xx: update acx commands
  wl12xx: update commands & events
  wl12xx: enable/disable role on interface add/remove
  wl12xx: add device role commands
  wl12xx: update scan cmd api
  wl12xx: update rx/tx
  wl12xx: change max/default template size
  wl12xx: use wl1271_acx_beacon_filter_opt for both sta and ap
  wl12xx: add set_rate_mgmt_params acx
  wl12xx: add system_hlid
  wl12xx: add ROC/CROC commands
  wl12xx: replace dummy_join with ROC/CROC commands
  wl12xx: update BT coex configuration params
  wl12xx: call wl12xx_cmd_set_peer_state() in AP mode
  wl12xx: don't remove key if hlid was already deleted
  wl12xx: add wl12xx_cmd_role_start_ibss()
  wl12xx: support IBSS vif type
  wl12xx: use ap_bcast_hlid for recorded keys
  wl12xx: don't remove key if hlid was already deleted
  wl12xx: don't wait for disconnection event

 drivers/net/wireless/wl12xx/acx.c          |  322 ++++------
 drivers/net/wireless/wl12xx/acx.h          |  394 ++++--------
 drivers/net/wireless/wl12xx/boot.c         |   30 +-
 drivers/net/wireless/wl12xx/cmd.c          |  793 +++++++++++++++++------
 drivers/net/wireless/wl12xx/cmd.h          |  329 ++++++-----
 drivers/net/wireless/wl12xx/conf.h         |  352 ++++------
 drivers/net/wireless/wl12xx/debugfs.c      |   17 +-
 drivers/net/wireless/wl12xx/event.c        |    6 +-
 drivers/net/wireless/wl12xx/event.h        |   80 +--
 drivers/net/wireless/wl12xx/init.c         |   91 +--
 drivers/net/wireless/wl12xx/io.h           |    1 -
 drivers/net/wireless/wl12xx/main.c         |  951 +++++++++++++++++-----------
 drivers/net/wireless/wl12xx/ps.c           |    4 +-
 drivers/net/wireless/wl12xx/reg.h          |   75 ---
 drivers/net/wireless/wl12xx/rx.c           |   23 +-
 drivers/net/wireless/wl12xx/rx.h           |   10 +-
 drivers/net/wireless/wl12xx/scan.c         |   38 +-
 drivers/net/wireless/wl12xx/scan.h         |   25 +-
 drivers/net/wireless/wl12xx/sdio.c         |    4 +-
 drivers/net/wireless/wl12xx/spi.c          |    2 -
 drivers/net/wireless/wl12xx/tx.c           |  136 +++--
 drivers/net/wireless/wl12xx/tx.h           |   16 +-
 drivers/net/wireless/wl12xx/wl12xx.h       |  153 +++---
 drivers/net/wireless/wl12xx/wl12xx_80211.h |   25 -
 24 files changed, 2034 insertions(+), 1843 deletions(-)

-- 
1.7.6.401.g6a319


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

end of thread, other threads:[~2011-08-22 11:11 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-14 10:16 [PATCH v2 00/40] wl12xx: move to wl12xx-fw-3 Eliad Peller
2011-08-14 10:17 ` [PATCH v2 01/40] wl12xx: Revert "wl12xx: schedule TX packets according to FW occupancy" Eliad Peller
2011-08-14 10:17 ` [PATCH v2 02/40] wl12xx: Use a single fw for both STA and AP roles Eliad Peller
2011-08-14 10:17 ` [PATCH v2 03/40] wl12xx: use 1 spare block in all cases Eliad Peller
2011-08-14 10:17 ` [PATCH v2 04/40] wl12xx: temporarily disable advanced ap functions Eliad Peller
2011-08-14 10:17 ` [PATCH v2 05/40] wl12xx: remove rx filtering stuff Eliad Peller
2011-08-14 10:17 ` [PATCH v2 06/40] wl12xx: update fw status struct Eliad Peller
2011-08-14 10:17 ` [PATCH v2 07/40] wl12xx: update acx commands Eliad Peller
2011-08-14 10:17 ` [PATCH v2 08/40] wl12xx: update commands & events Eliad Peller
2011-08-14 10:17 ` [PATCH v2 09/40] wl12xx: enable/disable role on interface add/remove Eliad Peller
2011-08-14 10:17 ` [PATCH v2 10/40] wl12xx: add device role commands Eliad Peller
2011-08-14 10:17 ` [PATCH v2 11/40] wl12xx: update scan cmd api Eliad Peller
2011-08-14 10:17 ` [PATCH v2 12/40] wl12xx: update rx/tx Eliad Peller
2011-08-14 10:17 ` [PATCH v2 13/40] wl12xx: change max/default template size Eliad Peller
2011-08-14 10:17 ` [PATCH v2 14/40] wl12xx: use wl1271_acx_beacon_filter_opt for both sta and ap Eliad Peller
2011-08-14 10:17 ` [PATCH v2 15/40] wl12xx: add set_rate_mgmt_params acx Eliad Peller
2011-08-14 10:17 ` [PATCH v2 16/40] wl12xx: add system_hlid Eliad Peller
2011-08-14 10:17 ` [PATCH v2 17/40] wl12xx: add ROC/CROC commands Eliad Peller
2011-08-14 10:17 ` [PATCH v2 18/40] wl12xx: replace dummy_join with " Eliad Peller
2011-08-14 10:17 ` [PATCH v2 19/40] wl12xx: handle dummy packet event also in ap mode Eliad Peller
2011-08-14 10:17 ` [PATCH v2 20/40] wl12xx: update BT coex configuration params Eliad Peller
2011-08-14 10:17 ` [PATCH v2 21/40] wl12xx: fix session counter Eliad Peller
2011-08-14 10:17 ` [PATCH v2 22/40] wl12xx: use dynamic hlids for AP-mode Eliad Peller
2011-08-14 10:17 ` [PATCH v2 23/40] wl12xx: re-enable block ack session support Eliad Peller
2011-08-14 10:17 ` [PATCH v2 24/40] wl12xx: call wl12xx_cmd_set_peer_state() in AP mode Eliad Peller
2011-08-14 10:17 ` [PATCH v2 25/40] wl12xx: don't remove key if hlid was already deleted Eliad Peller
2011-08-14 10:17 ` [PATCH v2 26/40] wl12xx: add wl12xx_cmd_role_start_ibss() Eliad Peller
2011-08-14 10:17 ` [PATCH v2 27/40] wl12xx: support IBSS vif type Eliad Peller
2011-08-14 10:17 ` [PATCH v2 28/40] wl12xx: AP-mode - set STA HT capabilities when adding a STA Eliad Peller
2011-08-14 10:17 ` [PATCH v2 29/40] wl12xx: AP-mode - configure STA HT rates on join Eliad Peller
2011-08-14 10:17 ` [PATCH v2 30/40] wl12xx: AP-mode - configure HT rate support to the FW Eliad Peller
2011-08-14 10:17 ` [PATCH v2 31/40] wl12xx: use ap_bcast_hlid for recorded keys Eliad Peller
2011-08-14 10:17 ` [PATCH v2 32/40] wl12xx: don't remove key if hlid was already deleted Eliad Peller
2011-08-14 10:17 ` [PATCH v2 33/40] wl12xx: track freed packets in FW by AC Eliad Peller
2011-08-14 10:17 ` [PATCH v2 34/40] wl12xx: schedule TX packets according to FW packet occupancy Eliad Peller
2011-08-14 10:17 ` [PATCH v2 35/40] wl12xx: handle wrap-around overflow in released Tx blocks FW counter Eliad Peller
2011-08-14 10:17 ` [PATCH v2 36/40] wl12xx: enable AP advanced functionality Eliad Peller
2011-08-14 10:17 ` [PATCH v2 37/40] wl12xx: don't wait for disconnection event Eliad Peller
2011-08-14 10:17 ` [PATCH v2 38/40] wl12xx: set the AP-started flag only after setting keys Eliad Peller
2011-08-14 10:17 ` [PATCH v2 39/40] wl12xx: AP-mode - prevent Tx to stale/invalid stations Eliad Peller
2011-08-14 10:17 ` [PATCH v2 40/40] wl12xx: fix tx_queue_count spurious increment Eliad Peller
2011-08-22 11:11 ` [PATCH v2 00/40] wl12xx: move to wl12xx-fw-3 Luciano Coelho

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.