Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH 00/29] wl12xx: start preparing the driver for multi-vif support
@ 2011-10-05  9:55 Eliad Peller
  2011-10-05  9:55 ` [PATCH 01/29] wl12xx: disable AP-mode-specific quirks Eliad Peller
                   ` (29 more replies)
  0 siblings, 30 replies; 31+ messages in thread
From: Eliad Peller @ 2011-10-05  9:55 UTC (permalink / raw)
  To: Luciano Coelho; +Cc: linux-wireless

The wl12xx fw currently supports only a single vif at a time.
Upcoming fw versions are going to support concurrentl vifs.

While mac80211 works well with multiple vifs, the wl12xx
driver assumes it handles only a single interface.

This is the first patchset in order to make the driver ready
for multiple vifs support. The main action here is defining
a new per-interface data struct (wlvif), and moving the
currently-global fields into it.

(Additional global fields/flags will be addressed by further patchsets)

Note that this patchset only adds functionality - it doesn't
break compatability with the current fw.

Eliad Peller (29):
  wl12xx: disable AP-mode-specific quirks
  wl12xx: replace wl->mac_addr with vif->addr
  wl12xx: start reworking the init sequence
  wl12xx: define wl12xx_vif
  wl12xx: move rate_set into wlvif
  wl12xx: move basic_rate into wlvif
  wl12xx: replace wl->bssid with vif->bss_conf.bssid
  wl12xx: move bss_type into wlvif
  wl12xx: remove set_bss_type field
  wl12xx: move p2p into wlvif
  wl12xx: move ssid and ssid_len into wlvif
  wl12xx: move probereq into wlvif
  wl12xx: move aid into wlvif
  wl12xx: move role_id into wlvif
  wl12xx: move dev_role_id into wlvif
  wl12xx: move sta_hlid into wlvif
  wl12xx: move ap_global_hlid and ap_bcast_hlid into wlvif
  wl12xx: move session_counter into wlvif
  wl12xx: move some logic into wl12xx_init_vif_data
  wl12xx: move dev_hlid into wlvif
  wl12xx: move beacon_int into wlvif
  wl12xx: move default_key into wlvif
  wl12xx: move pspoll_work into wlvif
  wl12xx: move ps_compl into wlvif
  wl12xx: move ps_poll_failures and psm_entry_retry into wlvif
  wl12xx: move rssi_thold and last_rssi_event into wlvif
  wl12xx: move ba fields into wlvif
  wl12xx: move ap_hlid_map into wlvif.ap
  wl12xx: move recorded_ap_keys into wlvif

 drivers/net/wireless/wl12xx/acx.c     |  138 ++++---
 drivers/net/wireless/wl12xx/acx.h     |   75 ++--
 drivers/net/wireless/wl12xx/boot.c    |    3 -
 drivers/net/wireless/wl12xx/cmd.c     |  231 ++++++-----
 drivers/net/wireless/wl12xx/cmd.h     |   42 ++-
 drivers/net/wireless/wl12xx/debugfs.c |   23 +-
 drivers/net/wireless/wl12xx/event.c   |  103 +++--
 drivers/net/wireless/wl12xx/event.h   |    3 -
 drivers/net/wireless/wl12xx/init.c    |  413 ++++++++++---------
 drivers/net/wireless/wl12xx/init.h    |    7 +-
 drivers/net/wireless/wl12xx/main.c    |  754 +++++++++++++++++---------------
 drivers/net/wireless/wl12xx/ps.c      |   14 +-
 drivers/net/wireless/wl12xx/ps.h      |    4 +-
 drivers/net/wireless/wl12xx/rx.c      |    4 +-
 drivers/net/wireless/wl12xx/scan.c    |   59 ++-
 drivers/net/wireless/wl12xx/scan.h    |    8 +-
 drivers/net/wireless/wl12xx/tx.c      |  165 ++++---
 drivers/net/wireless/wl12xx/tx.h      |    7 +-
 drivers/net/wireless/wl12xx/wl12xx.h  |  170 ++++----
 19 files changed, 1204 insertions(+), 1019 deletions(-)

-- 
1.7.6.401.g6a319


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

end of thread, other threads:[~2011-10-06 13:18 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-05  9:55 [PATCH 00/29] wl12xx: start preparing the driver for multi-vif support Eliad Peller
2011-10-05  9:55 ` [PATCH 01/29] wl12xx: disable AP-mode-specific quirks Eliad Peller
2011-10-05  9:55 ` [PATCH 02/29] wl12xx: replace wl->mac_addr with vif->addr Eliad Peller
2011-10-05  9:55 ` [PATCH 03/29] wl12xx: start reworking the init sequence Eliad Peller
2011-10-05  9:55 ` [PATCH 04/29] wl12xx: define wl12xx_vif Eliad Peller
2011-10-05  9:55 ` [PATCH 05/29] wl12xx: move rate_set into wlvif Eliad Peller
2011-10-05  9:55 ` [PATCH 06/29] wl12xx: move basic_rate " Eliad Peller
2011-10-05  9:55 ` [PATCH 07/29] wl12xx: replace wl->bssid with vif->bss_conf.bssid Eliad Peller
2011-10-05  9:55 ` [PATCH 08/29] wl12xx: move bss_type into wlvif Eliad Peller
2011-10-05  9:55 ` [PATCH 09/29] wl12xx: remove set_bss_type field Eliad Peller
2011-10-05  9:55 ` [PATCH 10/29] wl12xx: move p2p into wlvif Eliad Peller
2011-10-05  9:55 ` [PATCH 11/29] wl12xx: move ssid and ssid_len " Eliad Peller
2011-10-05  9:55 ` [PATCH 12/29] wl12xx: move probereq " Eliad Peller
2011-10-05  9:55 ` [PATCH 13/29] wl12xx: move aid " Eliad Peller
2011-10-05  9:55 ` [PATCH 14/29] wl12xx: move role_id " Eliad Peller
2011-10-05  9:55 ` [PATCH 15/29] wl12xx: move dev_role_id " Eliad Peller
2011-10-05  9:55 ` [PATCH 16/29] wl12xx: move sta_hlid " Eliad Peller
2011-10-05  9:55 ` [PATCH 17/29] wl12xx: move ap_global_hlid and ap_bcast_hlid " Eliad Peller
2011-10-05  9:55 ` [PATCH 18/29] wl12xx: move session_counter " Eliad Peller
2011-10-05  9:55 ` [PATCH 19/29] wl12xx: move some logic into wl12xx_init_vif_data Eliad Peller
2011-10-05  9:55 ` [PATCH 20/29] wl12xx: move dev_hlid into wlvif Eliad Peller
2011-10-05  9:55 ` [PATCH 21/29] wl12xx: move beacon_int " Eliad Peller
2011-10-05  9:55 ` [PATCH 22/29] wl12xx: move default_key " Eliad Peller
2011-10-05  9:56 ` [PATCH 23/29] wl12xx: move pspoll_work " Eliad Peller
2011-10-05  9:56 ` [PATCH 24/29] wl12xx: move ps_compl " Eliad Peller
2011-10-05  9:56 ` [PATCH 25/29] wl12xx: move ps_poll_failures and psm_entry_retry " Eliad Peller
2011-10-05  9:56 ` [PATCH 26/29] wl12xx: move rssi_thold and last_rssi_event " Eliad Peller
2011-10-05  9:56 ` [PATCH 27/29] wl12xx: move ba fields " Eliad Peller
2011-10-05  9:56 ` [PATCH 28/29] wl12xx: move ap_hlid_map into wlvif.ap Eliad Peller
2011-10-05  9:56 ` [PATCH 29/29] wl12xx: move recorded_ap_keys into wlvif Eliad Peller
2011-10-06 13:18 ` [PATCH 00/29] wl12xx: start preparing the driver for multi-vif support Luciano Coelho

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