From: "Arend van Spriel" <arend@broadcom.com>
To: linville@tuxdriver.com
Cc: linux-wireless@vger.kernel.org, "Arend van Spriel" <arend@broadcom.com>
Subject: [PATCH 00/15] brcm80211: resolve brcmsmac issues and brcmfmac usb support
Date: Thu, 9 Feb 2012 21:08:54 +0100 [thread overview]
Message-ID: <1328818149-4826-1-git-send-email-arend@broadcom.com> (raw)
This patch series contains patches for a couple of issue in brcmsmac. The A-MPDU
endless retry fix is a long standing issue that exists in previous kernels. So
it should go to 3.3 kernel.
For the brcmfmac driver support has been added for USB chipsets. Firmware has
been submitted for bcm43235, bcm43236, and bcm43238 chipsets.
Arend van Spriel (14):
brcm80211: update the maintainers listed for brcm80211 drivers
brcm80211: smac: fix unintended fallthru in wlc_phy_radio_init_2057()
brcm80211: smac: remove redundant assignments from
txpwrctrl_pwr_setup_nphy
brcm80211: smac: fix endless retry of A-MPDU transmissions
brcm80211: smac: remove smatch warnings from brcmsmac code
brcm80211: fmac: resolve smatch issues in brcmfmac code
brcm80211: fmac: use specific types in struct brcmf_bus
brcm80211: fmac: move module entry points to dhd_linux.c
brcm80211: fmac: only return success in brcmf_sdbrcm_bus_init() when
true
brcm80211: fmac: update bus state in common driver part
brcm80211: fmac: change allocation flag in brcmf_enq_event() function
brcm80211: fmac: use spinlock calls saving irq flags in
brcmf_enq_event()
brcm80211: fmac: add USB support for bcm43235/6/8 chipsets
brcm80211: fmac: make sdio firmware filename specific
Franky Lin (1):
brcm80211: fmac: make sure cancel_work_sync only called after
INIT_WORK
MAINTAINERS | 1 -
drivers/net/wireless/brcm80211/Kconfig | 17 +-
drivers/net/wireless/brcm80211/brcmfmac/Makefile | 6 +-
.../net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c | 14 +-
drivers/net/wireless/brcm80211/brcmfmac/dhd_bus.h | 17 +-
.../net/wireless/brcm80211/brcmfmac/dhd_linux.c | 59 +-
drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c | 32 +-
drivers/net/wireless/brcm80211/brcmfmac/usb.c | 1623 ++++++++++++++++++++
drivers/net/wireless/brcm80211/brcmfmac/usb.h | 84 +
drivers/net/wireless/brcm80211/brcmfmac/usb_rdl.h | 75 +
.../net/wireless/brcm80211/brcmfmac/wl_cfg80211.c | 13 +-
drivers/net/wireless/brcm80211/brcmsmac/ampdu.c | 6 +-
.../net/wireless/brcm80211/brcmsmac/mac80211_if.c | 4 +-
drivers/net/wireless/brcm80211/brcmsmac/main.c | 1 -
.../net/wireless/brcm80211/brcmsmac/phy/phy_n.c | 28 +-
drivers/net/wireless/brcm80211/brcmsmac/srom.c | 14 +-
16 files changed, 1905 insertions(+), 89 deletions(-)
create mode 100644 drivers/net/wireless/brcm80211/brcmfmac/usb.c
create mode 100644 drivers/net/wireless/brcm80211/brcmfmac/usb.h
create mode 100644 drivers/net/wireless/brcm80211/brcmfmac/usb_rdl.h
--
1.7.5.4
next reply other threads:[~2012-02-09 20:09 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-09 20:08 Arend van Spriel [this message]
2012-02-09 20:08 ` [PATCH 01/15] brcm80211: update the maintainers listed for brcm80211 drivers Arend van Spriel
2012-02-10 7:26 ` Rafał Miłecki
2012-02-09 20:08 ` [PATCH 02/15] brcm80211: smac: fix unintended fallthru in wlc_phy_radio_init_2057() Arend van Spriel
2012-02-09 20:08 ` [PATCH 03/15] brcm80211: smac: remove redundant assignments from txpwrctrl_pwr_setup_nphy Arend van Spriel
2012-02-09 20:08 ` [PATCH 04/15] brcm80211: smac: fix endless retry of A-MPDU transmissions Arend van Spriel
2012-02-09 20:08 ` [PATCH 05/15] brcm80211: smac: remove smatch warnings from brcmsmac code Arend van Spriel
2012-02-09 20:09 ` [PATCH 06/15] brcm80211: fmac: resolve smatch issues in brcmfmac code Arend van Spriel
2012-02-09 20:09 ` [PATCH 07/15] brcm80211: fmac: make sure cancel_work_sync only called after INIT_WORK Arend van Spriel
2012-02-09 20:09 ` [PATCH 08/15] brcm80211: fmac: use specific types in struct brcmf_bus Arend van Spriel
2012-02-09 20:09 ` [PATCH 09/15] brcm80211: fmac: move module entry points to dhd_linux.c Arend van Spriel
2012-02-09 23:50 ` Julian Calaby
2012-02-10 9:11 ` Arend van Spriel
2012-02-09 20:09 ` [PATCH 10/15] brcm80211: fmac: only return success in brcmf_sdbrcm_bus_init() when true Arend van Spriel
2012-02-09 20:09 ` [PATCH 11/15] brcm80211: fmac: update bus state in common driver part Arend van Spriel
2012-02-09 20:09 ` [PATCH 12/15] brcm80211: fmac: change allocation flag in brcmf_enq_event() function Arend van Spriel
2012-02-09 20:09 ` [PATCH 13/15] brcm80211: fmac: use spinlock calls saving irq flags in brcmf_enq_event() Arend van Spriel
2012-02-09 20:09 ` [PATCH 14/15] brcm80211: fmac: add USB support for bcm43235/6/8 chipsets Arend van Spriel
2012-02-23 18:10 ` Rafał Miłecki
2012-02-23 18:46 ` Rafał Miłecki
2012-02-23 21:20 ` Arend van Spriel
2012-02-24 6:16 ` Rafał Miłecki
2012-02-24 9:47 ` Arend van Spriel
2012-02-09 20:09 ` [PATCH 15/15] brcm80211: fmac: make sdio firmware filename specific Arend van Spriel
2012-02-22 17:12 ` [PATCH 00/15] brcm80211: resolve brcmsmac issues and brcmfmac usb support Arend van Spriel
2012-02-22 19:14 ` John W. Linville
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=1328818149-4826-1-git-send-email-arend@broadcom.com \
--to=arend@broadcom.com \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.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).