linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/18] mwifiex: add AP support
@ 2012-05-03  7:22 Bing Zhao
  2012-05-03  7:22 ` [PATCH 01/18] mwifiex: allocate space for one more mwifiex_private structure Bing Zhao
                   ` (17 more replies)
  0 siblings, 18 replies; 22+ messages in thread
From: Bing Zhao @ 2012-05-03  7:22 UTC (permalink / raw)
  To: linux-wireless
  Cc: John W. Linville, Avinash Patil, Yogesh Powar, Kiran Divekar,
	Amitkumar Karwar, Stone Piao, Frank Huang, Bing Zhao, harvey yang

This patch series adds support for micro-AP (uAP) mode to mwifiex driver.

Tested with hostapd devel v2. Simultaneous AP-STA functionality works fine.

Thanks,
Bing

---
Avinash Patil (18):
  mwifiex: allocate space for one more mwifiex_private structure
  mwifiex: handle station specific commands on STA interface only
  mwifiex: support for creation of AP interface
  mwifiex: multi-interface support for mwifiex
  mwifiex: save adapter pointer in wiphy_priv
  mwifiex: append peer mac address TLV in key material command to
    firmware
  mwifiex: add bss start and bss stop commands for AP
  mwifiex: add AP command sys_config and set channel
  mwifiex: stop BSS in deauthentication handling
  mwifiex: handle interface type changes correctly
  mwifiex: common set_wiphy_params cfg80211 handler for AP and STA
    interface
  mwifiex: add cfg80211 start_ap and stop_ap handlers
  mwifiex: add AP event handling framework
  mwifiex: add WPA2 support for AP
  mwifiex: rearrange AP sys configure code
  mwifiex: add custom IE framework
  mwifiex: parse beacon, probe response and assoc response IEs from
    start_ap
  mwifiex: delete IEs when stop_ap

 drivers/net/wireless/mwifiex/Makefile      |    2 +
 drivers/net/wireless/mwifiex/cfg80211.c    |  485 +++++++++++++++++++++-------
 drivers/net/wireless/mwifiex/cfg80211.h    |    2 +-
 drivers/net/wireless/mwifiex/cmdevt.c      |   21 ++-
 drivers/net/wireless/mwifiex/decl.h        |   13 +-
 drivers/net/wireless/mwifiex/fw.h          |  159 +++++++++-
 drivers/net/wireless/mwifiex/ie.c          |  447 +++++++++++++++++++++++++
 drivers/net/wireless/mwifiex/init.c        |    1 +
 drivers/net/wireless/mwifiex/ioctl.h       |   32 ++
 drivers/net/wireless/mwifiex/join.c        |    4 +
 drivers/net/wireless/mwifiex/main.c        |   57 ++--
 drivers/net/wireless/mwifiex/main.h        |   27 ++-
 drivers/net/wireless/mwifiex/sta_cmd.c     |   64 +++--
 drivers/net/wireless/mwifiex/sta_cmdresp.c |    8 +
 drivers/net/wireless/mwifiex/sta_event.c   |   51 +++-
 drivers/net/wireless/mwifiex/sta_ioctl.c   |    9 +-
 drivers/net/wireless/mwifiex/uap_cmd.c     |  432 +++++++++++++++++++++++++
 drivers/net/wireless/mwifiex/wmm.c         |    4 +
 18 files changed, 1643 insertions(+), 175 deletions(-)
 create mode 100644 drivers/net/wireless/mwifiex/ie.c
 create mode 100644 drivers/net/wireless/mwifiex/uap_cmd.c


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

end of thread, other threads:[~2012-05-08 19:44 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-03  7:22 [PATCH 00/18] mwifiex: add AP support Bing Zhao
2012-05-03  7:22 ` [PATCH 01/18] mwifiex: allocate space for one more mwifiex_private structure Bing Zhao
2012-05-03  7:22 ` [PATCH 02/18] mwifiex: handle station specific commands on STA interface only Bing Zhao
2012-05-03  7:22 ` [PATCH 03/18] mwifiex: support for creation of AP interface Bing Zhao
2012-05-03  7:22 ` [PATCH 04/18] mwifiex: multi-interface support for mwifiex Bing Zhao
2012-05-03  7:22 ` [PATCH 05/18] mwifiex: save adapter pointer in wiphy_priv Bing Zhao
2012-05-03  7:22 ` [PATCH 06/18] mwifiex: append peer mac address TLV in key material command to firmware Bing Zhao
2012-05-03  7:22 ` [PATCH 07/18] mwifiex: add bss start and bss stop commands for AP Bing Zhao
2012-05-03  7:22 ` [PATCH 08/18] mwifiex: add AP command sys_config and set channel Bing Zhao
2012-05-03  7:22 ` [PATCH 09/18] mwifiex: stop BSS in deauthentication handling Bing Zhao
2012-05-03  7:22 ` [PATCH 10/18] mwifiex: handle interface type changes correctly Bing Zhao
2012-05-03  7:22 ` [PATCH 11/18] mwifiex: common set_wiphy_params cfg80211 handler for AP and STA interface Bing Zhao
2012-05-03  7:22 ` [PATCH 12/18] mwifiex: add cfg80211 start_ap and stop_ap handlers Bing Zhao
2012-05-03  7:22 ` [PATCH 13/18] mwifiex: add AP event handling framework Bing Zhao
2012-05-03  7:22 ` [PATCH 14/18] mwifiex: add WPA2 support for AP Bing Zhao
2012-05-03  7:22 ` [PATCH 15/18] mwifiex: rearrange AP sys configure code Bing Zhao
2012-05-03  7:22 ` [PATCH 16/18] mwifiex: add custom IE framework Bing Zhao
2012-05-03  7:22 ` [PATCH 17/18] mwifiex: parse beacon, probe response and assoc response IEs from start_ap Bing Zhao
2012-05-03 14:19   ` Johannes Berg
2012-05-03 19:43     ` Bing Zhao
2012-05-08 19:43     ` Bing Zhao
2012-05-03  7:22 ` [PATCH 18/18] mwifiex: delete IEs when stop_ap Bing Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).