linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] brcmfmac: driver setting concept and other changes
@ 2016-02-17 10:26 Arend van Spriel
  2016-02-17 10:26 ` [PATCH 01/21] brcmfmac: change function name for brcmf_cfg80211_wait_vif_event_timeout() Arend van Spriel
                   ` (21 more replies)
  0 siblings, 22 replies; 29+ messages in thread
From: Arend van Spriel @ 2016-02-17 10:26 UTC (permalink / raw)
  To: Kalle Valo; +Cc: linux-wireless, Arend van Spriel

This series contain various changes for the brcmfmac driver. Here
the list of highlights:

* IPv6 Neighbor discovery offload.
* driver settings that can be populated from different sources.
* country code setting in firmware.
* length checks to validate firmware events.
* new way to determine device memory size needed for BCM4366.
* various offloads during wowl.
* full MFP support.

This series is intended for v4.6 and applies to the master branch
of the wireless-drivers-next repository. Patch #17 is already in
wireless-drivers repo. The other patches apply without it, but it
is needed to compile test the remainder of the series.

Arend van Spriel (1):
  brcmfmac: change function name for
    brcmf_cfg80211_wait_vif_event_timeout()

Franky Lin (3):
  brcmfmac: check for wowl support before enumerating feature flag
  brcmfmac: add neighbor discovery offload ip address table
    configuration
  brcmfmac: check return for ARP ip setting iovar

Hante Meuleman (17):
  brcmfmac: Limit memory allocs to <64K
  brcmfmac: Configure country code using device specific settings
  brcmfmac: Add length checks on firmware events
  brcmfmac: use device memsize config from fw if defined
  brcmfmac: use bar1 window size as provided by pci subsystem
  brcmfmac: add support for the PCIE 4366c0 chip
  brcmfmac: remove pcie gen1 support
  brcmfmac: increase timeout for tx eapol
  brcmfmac: move module init and exit to common
  brcmfmac: add wowl gtk rekeying offload support
  brcmfmac: move platform data retrieval code to common
  brcmfmac: keep ARP and ND offload enabled during WOWL
  brcmfmac: fix sdio sg table alloc crash
  brcmfmac: switch to new platform data
  brcmfmac: merge platform data and module paramaters
  brcmfmac: integrate add_keyext in add_key
  brcmfmac: add 802.11w management frame protection support

 .../wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c  | 145 ++---
 .../net/wireless/broadcom/brcm80211/brcmfmac/bus.h |   4 +-
 .../broadcom/brcm80211/brcmfmac/cfg80211.c         | 617 +++++++++++++--------
 .../broadcom/brcm80211/brcmfmac/cfg80211.h         |  20 +-
 .../wireless/broadcom/brcm80211/brcmfmac/common.c  | 152 ++++-
 .../wireless/broadcom/brcm80211/brcmfmac/common.h  |  43 +-
 .../wireless/broadcom/brcm80211/brcmfmac/core.c    | 180 ++++--
 .../wireless/broadcom/brcm80211/brcmfmac/core.h    |   9 +
 .../wireless/broadcom/brcm80211/brcmfmac/feature.c |  14 +
 .../wireless/broadcom/brcm80211/brcmfmac/feature.h |  10 +-
 .../wireless/broadcom/brcm80211/brcmfmac/fweh.c    |  57 +-
 .../wireless/broadcom/brcm80211/brcmfmac/fweh.h    |  68 ++-
 .../broadcom/brcm80211/brcmfmac/fwil_types.h       |  29 +-
 .../net/wireless/broadcom/brcm80211/brcmfmac/of.c  |  22 +-
 .../net/wireless/broadcom/brcm80211/brcmfmac/of.h  |   4 +-
 .../net/wireless/broadcom/brcm80211/brcmfmac/p2p.c |  26 +-
 .../wireless/broadcom/brcm80211/brcmfmac/pcie.c    | 206 +++----
 .../wireless/broadcom/brcm80211/brcmfmac/sdio.c    | 108 ++--
 .../wireless/broadcom/brcm80211/brcmfmac/sdio.h    |   3 +-
 .../net/wireless/broadcom/brcm80211/brcmfmac/usb.c |  16 +-
 .../broadcom/brcm80211/include/brcmu_wifi.h        |   2 +
 include/linux/platform_data/brcmfmac-sdio.h        | 135 -----
 include/linux/platform_data/brcmfmac.h             | 185 ++++++
 23 files changed, 1240 insertions(+), 815 deletions(-)
 delete mode 100644 include/linux/platform_data/brcmfmac-sdio.h
 create mode 100644 include/linux/platform_data/brcmfmac.h

-- 
1.9.1


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

end of thread, other threads:[~2016-03-08  8:46 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-17 10:26 [PATCH 00/21] brcmfmac: driver setting concept and other changes Arend van Spriel
2016-02-17 10:26 ` [PATCH 01/21] brcmfmac: change function name for brcmf_cfg80211_wait_vif_event_timeout() Arend van Spriel
2016-03-07 12:19   ` [01/21] brcmfmac: change function name forbrcmf_cfg80211_wait_vif_event_timeout() Kalle Valo
2016-03-07 12:49     ` Kalle Valo
2016-03-07 20:03       ` Arend Van Spriel
2016-03-08  8:46         ` Kalle Valo
2016-02-17 10:26 ` [PATCH 02/21] brcmfmac: Limit memory allocs to <64K Arend van Spriel
2016-02-17 10:26 ` [PATCH 03/21] brcmfmac: check for wowl support before enumerating feature flag Arend van Spriel
2016-02-17 10:26 ` [PATCH 04/21] brcmfmac: Configure country code using device specific settings Arend van Spriel
2016-02-17 10:26 ` [PATCH 05/21] brcmfmac: Add length checks on firmware events Arend van Spriel
2016-02-17 10:26 ` [PATCH 06/21] brcmfmac: add neighbor discovery offload ip address table configuration Arend van Spriel
2016-02-17 10:26 ` [PATCH 07/21] brcmfmac: check return for ARP ip setting iovar Arend van Spriel
2016-02-17 10:26 ` [PATCH 08/21] brcmfmac: use device memsize config from fw if defined Arend van Spriel
2016-02-17 10:26 ` [PATCH 09/21] brcmfmac: use bar1 window size as provided by pci subsystem Arend van Spriel
2016-02-17 10:26 ` [PATCH 10/21] brcmfmac: add support for the PCIE 4366c0 chip Arend van Spriel
2016-02-17 10:27 ` [PATCH 11/21] brcmfmac: remove pcie gen1 support Arend van Spriel
2016-02-17 10:27 ` [PATCH 12/21] brcmfmac: increase timeout for tx eapol Arend van Spriel
2016-02-17 10:27 ` [PATCH 13/21] brcmfmac: move module init and exit to common Arend van Spriel
2016-02-17 10:27 ` [PATCH 14/21] brcmfmac: add wowl gtk rekeying offload support Arend van Spriel
2016-02-17 10:27 ` [PATCH 15/21] brcmfmac: move platform data retrieval code to common Arend van Spriel
2016-02-17 10:27 ` [PATCH 16/21] brcmfmac: keep ARP and ND offload enabled during WOWL Arend van Spriel
2016-02-17 10:27 ` [PATCH 17/21] brcmfmac: fix sdio sg table alloc crash Arend van Spriel
2016-02-17 10:27 ` [PATCH 18/21] brcmfmac: switch to new platform data Arend van Spriel
2016-03-04 14:49   ` Kalle Valo
2016-03-04 20:02     ` Arend Van Spriel
2016-02-17 10:27 ` [PATCH 19/21] brcmfmac: merge platform data and module paramaters Arend van Spriel
2016-02-17 10:27 ` [PATCH 20/21] brcmfmac: integrate add_keyext in add_key Arend van Spriel
2016-02-17 10:27 ` [PATCH 21/21] brcmfmac: add 802.11w management frame protection support Arend van Spriel
2016-02-25 22:26 ` [PATCH 00/21] brcmfmac: driver setting concept and other changes Rafał Miłecki

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