All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] wil6210 patches
@ 2017-12-12 19:03 Maya Erez
  2017-12-12 19:03 ` [PATCH 1/9] wil6210: support Scheduled scan Maya Erez
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Maya Erez @ 2017-12-12 19:03 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Maya Erez, linux-wireless, wil6210

The following patches include several wil6210 fixes.

Dedy Lansky (2):
  wil6210: support Scheduled scan
  wil6210: remove leftover "FIXME"s

Lazar Alexei (2):
  wil6210: support 40bit DMA addresses
  wil6210: add support for headroom configuration

Lior David (2):
  wil6210: configurable broadcast TX MCS
  wil6210: remove reference to preset_chandef

Maya Erez (3):
  wil6210: add platform capabilities bitmap
  wil6210: set platform features based on FW capabilities
  wil6210: prevent parallel suspend and dump collection

 drivers/net/wireless/ath/wil6210/cfg80211.c       |  68 +++++-
 drivers/net/wireless/ath/wil6210/debugfs.c        |   1 -
 drivers/net/wireless/ath/wil6210/interrupt.c      |   2 +-
 drivers/net/wireless/ath/wil6210/main.c           |  67 +++++-
 drivers/net/wireless/ath/wil6210/netdev.c         |   2 +-
 drivers/net/wireless/ath/wil6210/pcie_bus.c       |  36 +++-
 drivers/net/wireless/ath/wil6210/pm.c             |  17 ++
 drivers/net/wireless/ath/wil6210/pmc.c            |  11 +-
 drivers/net/wireless/ath/wil6210/txrx.c           | 101 ++++++++-
 drivers/net/wireless/ath/wil6210/wil6210.h        |  15 +-
 drivers/net/wireless/ath/wil6210/wil_crash_dump.c |  11 +
 drivers/net/wireless/ath/wil6210/wil_platform.h   |  15 +-
 drivers/net/wireless/ath/wil6210/wmi.c            | 243 +++++++++++++++++++++-
 drivers/net/wireless/ath/wil6210/wmi.h            | 100 +++++++--
 14 files changed, 621 insertions(+), 68 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/9] wil6210 patches
@ 2019-04-26 15:43 Maya Erez
  0 siblings, 0 replies; 14+ messages in thread
From: Maya Erez @ 2019-04-26 15:43 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Maya Erez, linux-wireless, wil6210

The following patches include;
- Various wil6210 bug fixes
- Support handling of multiple section in board file

Ahmad Masri (1):
  wil6210: fix overwriting max_assoc_sta module param

Alexei Avshalom Lazar (1):
  wil6210: fix _desc access in __wil_tx_vring_tso

Dedy Lansky (3):
  wil6210: add printout of platform capabilities
  wil6210: enhancements for descriptor and status ring debugfs
  wil6210: check rx_buff_mgmt before accessing it

Maya Erez (4):
  wil6210: fix spurious interrupts in 3-msi
  wil6210: add support for multiple sections in brd file
  wil6210: fix missed MISC mbox interrupt
  wil6210: remove HALP for Talyn devices

 drivers/net/wireless/ath/wil6210/cfg80211.c   |   4 +-
 drivers/net/wireless/ath/wil6210/debugfs.c    |  70 ++++++++----
 drivers/net/wireless/ath/wil6210/fw.h         |  11 +-
 drivers/net/wireless/ath/wil6210/fw_inc.c     | 148 +++++++++++++++++++-------
 drivers/net/wireless/ath/wil6210/interrupt.c  |  67 +++++++-----
 drivers/net/wireless/ath/wil6210/main.c       |  18 +++-
 drivers/net/wireless/ath/wil6210/pcie_bus.c   |   2 +
 drivers/net/wireless/ath/wil6210/rx_reorder.c |   2 +-
 drivers/net/wireless/ath/wil6210/txrx.c       |  25 +++--
 drivers/net/wireless/ath/wil6210/txrx_edma.c  |  10 +-
 drivers/net/wireless/ath/wil6210/wil6210.h    |  33 ++++--
 drivers/net/wireless/ath/wil6210/wmi.c        |  14 +--
 12 files changed, 275 insertions(+), 129 deletions(-)

-- 
1.9.1


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/9] wil6210 patches
@ 2018-08-23 11:47 Maya Erez
  0 siblings, 0 replies; 14+ messages in thread
From: Maya Erez @ 2018-08-23 11:47 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Maya Erez, linux-wireless, wil6210

The followings et of patches include:
- Various wil6210 fixes
- Add FT roam support for AP and station
- Add support for channel 4

Ahmad Masri (1):
  wil6210: add FT roam support for AP and station

Alexei Avshalom Lazar (1):
  wil6210: add support for channel 4

Dedy Lansky (2):
  wil6210: drop Rx multicast packets that are looped-back to STA
  wil6210: fix invalid memory access for rx_buff_mgmt debugfs

Karthick Gopalasubramanian (1):
  wil6210: remove reset file from debugfs

Maya Erez (4):
  wil6210: set edma variables only for Talyn-MB devices
  wil6210: allocate rx reorder buffer only if rx reorder is enabled
  wil6210: prevent usage of tx ring 0 for eDMA
  wil6210: fix RX buffers release and unmap

 drivers/net/wireless/ath/wil6210/cfg80211.c   | 333 ++++++++++++++++++++----
 drivers/net/wireless/ath/wil6210/debugfs.c    |  47 ++--
 drivers/net/wireless/ath/wil6210/main.c       |  13 +-
 drivers/net/wireless/ath/wil6210/pcie_bus.c   |   1 +
 drivers/net/wireless/ath/wil6210/rx_reorder.c |  12 +-
 drivers/net/wireless/ath/wil6210/txrx.c       |  98 +++++++-
 drivers/net/wireless/ath/wil6210/txrx_edma.c  |  26 +-
 drivers/net/wireless/ath/wil6210/wil6210.h    |  19 ++
 drivers/net/wireless/ath/wil6210/wmi.c        | 350 +++++++++++++++++++++++++-
 drivers/net/wireless/ath/wil6210/wmi.h        |   2 +
 10 files changed, 799 insertions(+), 102 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/9] wil6210 patches
@ 2015-02-15 12:02 Vladimir Kondratiev
  0 siblings, 0 replies; 14+ messages in thread
From: Vladimir Kondratiev @ 2015-02-15 12:02 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Vladimir Kondratiev, linux-wireless, wil6210

Boot loader starts kind of new era in the driver/firmware
interaction. No more ability to boot operational firmware
from on card flash, the only way is to download from the
host.

Removed is support for the old hardware. It is not supported
any more by the new firmware. Removing it allow to compact
code a bit.

Also, after old hardware support is out, it is possible to benefit
from fixes in the new hardware. See
"enable fix for HW bug in 802.11->803.3 transform"

Boris fixed division by 0 observed on some platforms

Other are small improvements

Boris Sorochkin (1):
  wil6210: Fix division by zero in wil_vring_debugfs_show

Vladimir Kondratiev (7):
  wil6210: boot loader
  wil6210: remove support for old hardware
  wil6210: enable fix for HW bug in 802.11->803.3 transform
  wil6210: branch prediction hints
  wil6210: rename 'secure_pcp' to 'privacy'
  wil6210: track privacy connection attribute
  wil6210: Align Rx buffers on 4*n+2

Vladimir Shulman (1):
  wil6210: Change of threshold for tx vring idleness measurement

 drivers/net/wireless/ath/wil6210/cfg80211.c  |  32 +++---
 drivers/net/wireless/ath/wil6210/debugfs.c   |  26 +++--
 drivers/net/wireless/ath/wil6210/ethtool.c   |  34 +++---
 drivers/net/wireless/ath/wil6210/fw.c        |   3 +-
 drivers/net/wireless/ath/wil6210/fw_inc.c    |   4 +-
 drivers/net/wireless/ath/wil6210/interrupt.c |  70 ++++-------
 drivers/net/wireless/ath/wil6210/main.c      | 166 +++++++++++++++------------
 drivers/net/wireless/ath/wil6210/pcie_bus.c  |  22 +---
 drivers/net/wireless/ath/wil6210/txrx.c      | 128 ++++++++++-----------
 drivers/net/wireless/ath/wil6210/wil6210.h   |  34 ++++--
 drivers/net/wireless/ath/wil6210/wmi.c       |   9 +-
 11 files changed, 252 insertions(+), 276 deletions(-)

-- 
2.1.0


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

end of thread, other threads:[~2019-04-26 15:49 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-12 19:03 [PATCH 0/9] wil6210 patches Maya Erez
2017-12-12 19:03 ` [PATCH 1/9] wil6210: support Scheduled scan Maya Erez
2017-12-13  8:58   ` Arend van Spriel
2017-12-12 19:03 ` [PATCH 2/9] wil6210: support 40bit DMA addresses Maya Erez
2017-12-12 19:03 ` [PATCH 3/9] wil6210: add platform capabilities bitmap Maya Erez
2017-12-12 19:03 ` [PATCH 4/9] wil6210: set platform features based on FW capabilities Maya Erez
2017-12-12 19:03 ` [PATCH 5/9] wil6210: prevent parallel suspend and dump collection Maya Erez
2017-12-12 19:03 ` [PATCH 6/9] wil6210: add support for headroom configuration Maya Erez
2017-12-12 19:04 ` [PATCH 7/9] wil6210: configurable broadcast TX MCS Maya Erez
2017-12-12 19:04 ` [PATCH 8/9] wil6210: remove leftover "FIXME"s Maya Erez
2017-12-12 19:04 ` [PATCH 9/9] wil6210: remove reference to preset_chandef Maya Erez
  -- strict thread matches above, loose matches on Subject: below --
2019-04-26 15:43 [PATCH 0/9] wil6210 patches Maya Erez
2018-08-23 11:47 Maya Erez
2015-02-15 12:02 Vladimir Kondratiev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.