linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/22] ath6kl: AP mode and P2P
@ 2011-08-30 18:57 Jouni Malinen
  2011-08-30 18:57 ` [PATCH v2 01/22] ath6kl: Add functionality for starting AP mode Jouni Malinen
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Jouni Malinen @ 2011-08-30 18:57 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, Jouni Malinen

This set of patches adds preliminary support for AP mode and P2P
operations into ath6kl. Since these require a new firmware build
and more testing, the patches to actually enable either AP or P2P
modes are not included in the series. These will be submitted
after some more testing.

v2:
- address review comments
- add couple of additional cleanup/sparse patches for things that came
  up during the review


Edward Lu (4):
  ath6kl: Support channel set request for startscan command
  ath6kl: Fix a typo in ath6k context
  ath6kl: Fix default key installation in AP mode
  ath6kl: Do not clear CONNECT bit setting in AP mode for STA
    disconnect

Jouni Malinen (18):
  ath6kl: Add functionality for starting AP mode
  ath6kl: Fix AP mode (Re)AssocReq IE processing
  ath6kl: Delay initial group key setup in AP mode
  ath6kl: Use change_station() to authorize/unauthorize STAs
  ath6kl: Add new WMI commands and events for P2P
  ath6kl: Implement remain_on_channel and cancel_remain_on_channel
  ath6kl: Implement mgmt_tx
  ath6kl: Request P2P capabilities during target init
  ath6kl: Add cfg80211 calls for remain-on-channel events
  ath6kl: Use set_appie command to add Probe Request IEs
  ath6kl: Report received Probe Request frames to cfg80211
  ath6kl: Notify cfg80211 of TX status of mgmt_tx frames
  ath6kl: Report received Action frames to cfg80211
  ath6kl: Advertise supported mgmt_stypes
  ath6kl: Add support for new P2P iftypes in mode changes
  ath6kl: Include P2P IE(s) in GO Probe Response depending on request
  ath6kl: Return error from wmi.c instead of -EIO in
    ath6kl_cfg80211_scan
  ath6kl: Define __CHECK_ENDIAN__ for sparse

 drivers/net/wireless/ath/ath6kl/Makefile   |    2 +
 drivers/net/wireless/ath/ath6kl/cfg80211.c |  503 +++++++++++++++++++++++++++-
 drivers/net/wireless/ath/ath6kl/core.h     |   31 +--
 drivers/net/wireless/ath/ath6kl/init.c     |   19 +-
 drivers/net/wireless/ath/ath6kl/main.c     |   96 ++++--
 drivers/net/wireless/ath/ath6kl/wmi.c      |  433 ++++++++++++++++++++++++-
 drivers/net/wireless/ath/ath6kl/wmi.h      |  229 ++++++++++++-
 7 files changed, 1238 insertions(+), 75 deletions(-)

-- 
1.7.4.1


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

end of thread, other threads:[~2011-08-31  7:45 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-30 18:57 [PATCH v2 00/22] ath6kl: AP mode and P2P Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 01/22] ath6kl: Add functionality for starting AP mode Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 02/22] ath6kl: Fix AP mode (Re)AssocReq IE processing Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 03/22] ath6kl: Delay initial group key setup in AP mode Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 04/22] ath6kl: Use change_station() to authorize/unauthorize STAs Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 05/22] ath6kl: Add new WMI commands and events for P2P Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 06/22] ath6kl: Implement remain_on_channel and cancel_remain_on_channel Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 07/22] ath6kl: Implement mgmt_tx Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 08/22] ath6kl: Request P2P capabilities during target init Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 09/22] ath6kl: Add cfg80211 calls for remain-on-channel events Jouni Malinen
2011-08-30 18:57 ` [PATCH v2 10/22] ath6kl: Use set_appie command to add Probe Request IEs Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 11/22] ath6kl: Support channel set request for startscan command Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 12/22] ath6kl: Report received Probe Request frames to cfg80211 Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 13/22] ath6kl: Notify cfg80211 of TX status of mgmt_tx frames Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 14/22] ath6kl: Report received Action frames to cfg80211 Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 15/22] ath6kl: Advertise supported mgmt_stypes Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 16/22] ath6kl: Add support for new P2P iftypes in mode changes Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 17/22] ath6kl: Fix a typo in ath6k context Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 18/22] ath6kl: Fix default key installation in AP mode Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 19/22] ath6kl: Do not clear CONNECT bit setting in AP mode for STA disconnect Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 20/22] ath6kl: Include P2P IE(s) in GO Probe Response depending on request Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 21/22] ath6kl: Return error from wmi.c instead of -EIO in ath6kl_cfg80211_scan Jouni Malinen
2011-08-30 18:58 ` [PATCH v2 22/22] ath6kl: Define __CHECK_ENDIAN__ for sparse Jouni Malinen
2011-08-31  7:45 ` [PATCH v2 00/22] ath6kl: AP mode and P2P Kalle Valo

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).