linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/28] rtl8xxxu updates and fixes
@ 2016-02-03 18:39 Jes.Sorensen
  2016-02-03 18:39 ` [PATCH 01/28] rtl8xxxu: Minor cleanup to rtl8xxxu_download_firmware() Jes.Sorensen
                   ` (27 more replies)
  0 siblings, 28 replies; 32+ messages in thread
From: Jes.Sorensen @ 2016-02-03 18:39 UTC (permalink / raw)
  To: linux-wireless; +Cc: kvalo, Jes Sorensen

From: Jes Sorensen <Jes.Sorensen@redhat.com>

Hi,

Please find included a smaller patchset for the rtl8xxxu driver. It
includes fixes from Bruno Randolf for monitor mode support, Jakub
Sitnicki (I have a few more patches pending from Jakub), and Tobias
Klauser. It also includes a few fixes and some preparatory patches for
the next patchset which will include rtl8723bu and rtl8192eu support.

This is all I was able to split out, without breaking my follow-on
patches.

I have another stack that goes on top of this, that I will try to post
as soon as I see these hit the tree.

Thanks,
Jes


Bruno Randolf (3):
  rtl8xxxu: Enable monitor mode by handling filters
  rtl8xxxu: Document REG_RXFLTMAP registers
  rtl8xxxu: Enable data frame reception in rtl8xxxu_start

Jakub Sitnicki (1):
  rtl8xxxu: Use REG_EFUSE_TEST register only on multifunctional devices

Jes Sorensen (22):
  rtl8xxxu: Minor cleanup to rtl8xxxu_download_firmware()
  rtl8xxxu: rtl8xxxu_download_firmware(): Cosmetic cleanups
  rtl8xxxu: If fw running in RAM, reset the 8051 before trying to
    download a new one
  rtl8xxxu: Add RQPN_[NE]PQ_SHIFT values
  rtl8xxxu: Define SYS_CFG_SW_OFFLOAD_EN
  rtl8xxxu: Add REG_TX_REPORT_* defines
  rtl8xxxu: Add more RCR bits
  rtl8xxxu: Implement rtl8xxxu_reset_8051()
  rtl8xxxu: Add definitions for antenna selection registers for 8723BU
  rtl8xxxu: Add mbox extension register definitions for 8723B
  rtl8xxxu: Add REG_OFDM0_RX_D_SYNC_PATH definitions
  rtl8xxxu: Remove unused clutter for handling recursive calls to
    rtl8xxxu_init_device()
  rtl8xxxu: Fix cosmetics to quiet down checkpatch police
  rtl8xxxu: Remove duplicate USB ID
  rtl8xxxu: Fix 80 character per line issue
  rtl8xxxu: rtl8xxxu_set_linktype(): Be consistent aboutregister size
    REG_MSR
  rtl8xxxu: Set correct bit to reset MCU IO wrapper
  rtl8xxxu: Remove unused mgmt variable from rtl8xxxu_rx_complete()
  rtl8xxxu: Remove unused len/cnt variables from rtl8xxxu_rx_complete()
  rtl8xxxu: Do not mask RF registers to 6 bits
  rtl8xxxu: Make device_init kludge 8723au only
  rtl8xxxu: Add missing bit define for REG_APS_FSMCO

Tobias Klauser (2):
  rtl8xxxu: Fix typo in Kconfig help text
  rtl8xxxu: Check return value of kmemdup()

 drivers/net/wireless/realtek/rtl8xxxu/Kconfig      |   2 +-
 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.c   | 183 ++++++++++++++-------
 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h   |   2 +-
 .../net/wireless/realtek/rtl8xxxu/rtl8xxxu_regs.h  |  55 ++++++-
 4 files changed, 169 insertions(+), 73 deletions(-)

-- 
2.5.0


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

end of thread, other threads:[~2016-02-25 15:03 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-03 18:39 [PATCH 00/28] rtl8xxxu updates and fixes Jes.Sorensen
2016-02-03 18:39 ` [PATCH 01/28] rtl8xxxu: Minor cleanup to rtl8xxxu_download_firmware() Jes.Sorensen
2016-02-25  9:57   ` [01/28] " Kalle Valo
2016-02-03 18:39 ` [PATCH 02/28] rtl8xxxu: rtl8xxxu_download_firmware(): Cosmetic cleanups Jes.Sorensen
2016-02-03 18:39 ` [PATCH 03/28] rtl8xxxu: If fw running in RAM, reset the 8051 before trying to download a new one Jes.Sorensen
2016-02-25  9:36   ` Kalle Valo
2016-02-25 15:02     ` Jes Sorensen
2016-02-03 18:39 ` [PATCH 04/28] rtl8xxxu: Add RQPN_[NE]PQ_SHIFT values Jes.Sorensen
2016-02-03 18:39 ` [PATCH 05/28] rtl8xxxu: Define SYS_CFG_SW_OFFLOAD_EN Jes.Sorensen
2016-02-03 18:39 ` [PATCH 06/28] rtl8xxxu: Add REG_TX_REPORT_* defines Jes.Sorensen
2016-02-03 18:39 ` [PATCH 07/28] rtl8xxxu: Add more RCR bits Jes.Sorensen
2016-02-03 18:39 ` [PATCH 08/28] rtl8xxxu: Fix typo in Kconfig help text Jes.Sorensen
2016-02-03 18:39 ` [PATCH 09/28] rtl8xxxu: Check return value of kmemdup() Jes.Sorensen
2016-02-03 18:39 ` [PATCH 10/28] rtl8xxxu: Implement rtl8xxxu_reset_8051() Jes.Sorensen
2016-02-03 18:39 ` [PATCH 11/28] rtl8xxxu: Add definitions for antenna selection registers for 8723BU Jes.Sorensen
2016-02-03 18:39 ` [PATCH 12/28] rtl8xxxu: Add mbox extension register definitions for 8723B Jes.Sorensen
2016-02-03 18:39 ` [PATCH 13/28] rtl8xxxu: Add REG_OFDM0_RX_D_SYNC_PATH definitions Jes.Sorensen
2016-02-03 18:39 ` [PATCH 14/28] rtl8xxxu: Remove unused clutter for handling recursive calls to rtl8xxxu_init_device() Jes.Sorensen
2016-02-03 18:39 ` [PATCH 15/28] rtl8xxxu: Use REG_EFUSE_TEST register only on multifunctional devices Jes.Sorensen
2016-02-03 18:39 ` [PATCH 16/28] rtl8xxxu: Fix cosmetics to quiet down checkpatch police Jes.Sorensen
2016-02-03 18:39 ` [PATCH 17/28] rtl8xxxu: Enable monitor mode by handling filters Jes.Sorensen
2016-02-03 18:39 ` [PATCH 18/28] rtl8xxxu: Document REG_RXFLTMAP registers Jes.Sorensen
2016-02-03 18:39 ` [PATCH 19/28] rtl8xxxu: Remove duplicate USB ID Jes.Sorensen
2016-02-03 18:39 ` [PATCH 20/28] rtl8xxxu: Fix 80 character per line issue Jes.Sorensen
2016-02-03 18:39 ` [PATCH 21/28] rtl8xxxu: Enable data frame reception in rtl8xxxu_start Jes.Sorensen
2016-02-03 18:39 ` [PATCH 22/28] rtl8xxxu: rtl8xxxu_set_linktype(): Be consistent aboutregister size REG_MSR Jes.Sorensen
2016-02-03 18:39 ` [PATCH 23/28] rtl8xxxu: Set correct bit to reset MCU IO wrapper Jes.Sorensen
2016-02-03 18:39 ` [PATCH 24/28] rtl8xxxu: Remove unused mgmt variable from rtl8xxxu_rx_complete() Jes.Sorensen
2016-02-03 18:39 ` [PATCH 25/28] rtl8xxxu: Remove unused len/cnt variables " Jes.Sorensen
2016-02-03 18:40 ` [PATCH 26/28] rtl8xxxu: Do not mask RF registers to 6 bits Jes.Sorensen
2016-02-03 18:40 ` [PATCH 27/28] rtl8xxxu: Make device_init kludge 8723au only Jes.Sorensen
2016-02-03 18:40 ` [PATCH 28/28] rtl8xxxu: Add missing bit define for REG_APS_FSMCO Jes.Sorensen

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