linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bing Zhao <bzhao@marvell.com>
To: linux-wireless@vger.kernel.org
Cc: "John W. Linville" <linville@tuxdriver.com>,
	Avinash Patil <patila@marvell.com>,
	Yogesh Powar <yogeshp@marvell.com>,
	Kiran Divekar <dkiran@marvell.com>,
	Amitkumar Karwar <akarwar@marvell.com>,
	Stone Piao <piaoyun@marvell.com>,
	Frank Huang <frankh@marvell.com>, Bing Zhao <bzhao@marvell.com>,
	harvey yang <harvey.huawei.yang@gmail.com>
Subject: [PATCH 00/18] mwifiex: add AP support
Date: Thu,  3 May 2012 00:22:22 -0700	[thread overview]
Message-ID: <1336029760-22565-1-git-send-email-bzhao@marvell.com> (raw)

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


             reply	other threads:[~2012-05-03  7:23 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-03  7:22 Bing Zhao [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1336029760-22565-1-git-send-email-bzhao@marvell.com \
    --to=bzhao@marvell.com \
    --cc=akarwar@marvell.com \
    --cc=dkiran@marvell.com \
    --cc=frankh@marvell.com \
    --cc=harvey.huawei.yang@gmail.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=patila@marvell.com \
    --cc=piaoyun@marvell.com \
    --cc=yogeshp@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).