linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10] wil6210 patches
@ 2017-02-21 14:31 Maya Erez
  2017-02-21 14:31 ` [PATCH 01/10] wil6210: set dma mask to reflect device capability Maya Erez
                   ` (9 more replies)
  0 siblings, 10 replies; 18+ messages in thread
From: Maya Erez @ 2017-02-21 14:31 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Maya Erez, linux-wireless, wil6210

various wil6210 patches

Dedy Lansky (4):
  wil6210: use print_hex_dump_debug instead of print_hex_dump_bytes
  wil6210: store bss object and use cfg80211_connect_bss()
  wil6210: use WMI_DISCONNECT_CMDID upon connect timeout
  wil6210: correctly report locally generated disconnect in STA mode

Hamad Kadmany (2):
  wil6210: set dma mask to reflect device capability
  wil6210: protect list of pending wmi events during flush

Lior David (3):
  wil6210: do not start regular scan on stopped p2p device
  wil6210: bus_request platform operation refinement
  wil6210: add oob_mode for AP certification

Maya Erez (1):
  wil6210: missing reinit_completion in HALP voting

 drivers/net/wireless/ath/wil6210/cfg80211.c | 68 ++++++++++++++------------
 drivers/net/wireless/ath/wil6210/main.c     | 75 +++++++++++++++++++++++------
 drivers/net/wireless/ath/wil6210/pcie_bus.c | 16 ++++++
 drivers/net/wireless/ath/wil6210/pmc.c      | 17 ++++++-
 drivers/net/wireless/ath/wil6210/txrx.c     | 19 +++++++-
 drivers/net/wireless/ath/wil6210/wil6210.h  | 21 +++++++-
 drivers/net/wireless/ath/wil6210/wmi.c      | 21 ++++++--
 7 files changed, 183 insertions(+), 54 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 00/10] wil6210 patches
@ 2018-04-12  8:08 Maya Erez
  0 siblings, 0 replies; 18+ messages in thread
From: Maya Erez @ 2018-04-12  8:08 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Maya Erez, linux-wireless, wil6210

The following patches include multiple wil6210 fixes.

Ahmad Masri (1):
  wil6210: align to latest auto generated wmi.h

Alexei Avshalom Lazar (3):
  wil6210: disable tracing config option
  wil6210: set/get EDMG channel through debugfs
  wil6210: Initialize reply struct of the WMI commands

Dedy Lansky (4):
  wil6210: use country specific board file upon reg domain change
  wil6210: move WMI functionality out of wil_cfg80211_mgmt_tx
  wil6210: remove unused rx_reorder members
  wil6210: rate limit wil_rx_refill error

Lior David (2):
  wil6210: fix call to wil6210_disconnect during unload
  wil6210: change reply_size arg to u16 in wmi_call

 drivers/net/wireless/ath/wil6210/Kconfig      |   2 +-
 drivers/net/wireless/ath/wil6210/cfg80211.c   | 216 ++++++++++---
 drivers/net/wireless/ath/wil6210/debugfs.c    |   6 +-
 drivers/net/wireless/ath/wil6210/main.c       |  39 ++-
 drivers/net/wireless/ath/wil6210/netdev.c     |   8 +-
 drivers/net/wireless/ath/wil6210/rx_reorder.c |   7 +-
 drivers/net/wireless/ath/wil6210/txrx.c       |  12 +-
 drivers/net/wireless/ath/wil6210/wil6210.h    |  23 +-
 drivers/net/wireless/ath/wil6210/wmi.c        | 177 ++++++++---
 drivers/net/wireless/ath/wil6210/wmi.h        | 420 ++++++++++++++++++++++++--
 10 files changed, 769 insertions(+), 141 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 00/10] wil6210 patches
@ 2018-04-12  7:52 Maya Erez
  0 siblings, 0 replies; 18+ messages in thread
From: Maya Erez @ 2018-04-12  7:52 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Maya Erez, linux-wireless, wil6210

The following patches include multiple wil6210 fixes.

Ahmad Masri (1):
  wil6210: align to latest auto generated wmi.h

Alexei Avshalom Lazar (2):
  wil6210: disable tracing config option
  wil6210: set/get EDMG channel through debugfs

Dedy Lansky (4):
  wil6210: use country specific board file upon reg domain change
  wil6210: move WMI functionality out of wil_cfg80211_mgmt_tx
  wil6210: remove unused rx_reorder members
  wil6210: rate limit wil_rx_refill error

Lazar Alexei (1):
  wil6210: Initialize reply struct of the WMI commands

Lior David (2):
  wil6210: fix call to wil6210_disconnect during unload
  wil6210: change reply_size arg to u16 in wmi_call

 drivers/net/wireless/ath/wil6210/Kconfig      |   2 +-
 drivers/net/wireless/ath/wil6210/cfg80211.c   | 216 ++++++++++---
 drivers/net/wireless/ath/wil6210/debugfs.c    |   6 +-
 drivers/net/wireless/ath/wil6210/main.c       |  39 ++-
 drivers/net/wireless/ath/wil6210/netdev.c     |   8 +-
 drivers/net/wireless/ath/wil6210/rx_reorder.c |   7 +-
 drivers/net/wireless/ath/wil6210/txrx.c       |  12 +-
 drivers/net/wireless/ath/wil6210/wil6210.h    |  23 +-
 drivers/net/wireless/ath/wil6210/wmi.c        | 177 ++++++++---
 drivers/net/wireless/ath/wil6210/wmi.h        | 420 ++++++++++++++++++++++++--
 10 files changed, 769 insertions(+), 141 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 00/10] wil6210 patches
@ 2017-07-31 16:32 Maya Erez
  0 siblings, 0 replies; 18+ messages in thread
From: Maya Erez @ 2017-07-31 16:32 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Maya Erez, linux-wireless, wil6210

The following patches incude:
- wil6210 bug fixes
- Addition of runtime PM support

Dedy Lansky (2):
  wil6210: support FW RSSI reporting
  wil6210: store FW RF calibration result

Gidon Studinski (1):
  wil6210: make debugfs compilation optional

Hamad Kadmany (3):
  wil6210: protect against invalid length of tx management frame
  wil6210: allow configuring scan timers
  wil6210: fix interface-up check

Lazar Alexei (1):
  wil6210: run-time PM when interface down

Maya Erez (3):
  wil6210: check no_fw_recovery in resume failure recovery
  wil6210: add statistics for suspend time
  wil6210: notify wiphy on wowlan support

 drivers/net/wireless/ath/wil6210/cfg80211.c |  42 ++++++++--
 drivers/net/wireless/ath/wil6210/debugfs.c  | 121 +++++++++++++++++++++++++---
 drivers/net/wireless/ath/wil6210/ethtool.c  |  15 ++++
 drivers/net/wireless/ath/wil6210/main.c     |  12 ++-
 drivers/net/wireless/ath/wil6210/netdev.c   |  18 ++++-
 drivers/net/wireless/ath/wil6210/pcie_bus.c |  38 +++++++++
 drivers/net/wireless/ath/wil6210/pm.c       |  90 ++++++++++++++++++++-
 drivers/net/wireless/ath/wil6210/txrx.c     |   6 +-
 drivers/net/wireless/ath/wil6210/wil6210.h  |  31 ++++++-
 drivers/net/wireless/ath/wil6210/wmi.c      |  14 +++-
 drivers/net/wireless/ath/wil6210/wmi.h      |   8 +-
 11 files changed, 358 insertions(+), 37 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 00/10] wil6210 patches
@ 2015-10-04  7:23 Vladimir Kondratiev
  2015-10-09  8:44 ` Kalle Valo
  0 siblings, 1 reply; 18+ messages in thread
From: Vladimir Kondratiev @ 2015-10-04  7:23 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Vladimir Kondratiev, linux-wireless, wil6210

New features:
- BlockAckReq support
- firmware crashdump using devcoredump
- capture all frames with sniffer

The rest of patches are fixes

Hamad Kadmany (1):
  wil6210: Do no schedule firmware recovery during reset flow

Vladimir Kondratiev (8):
  wil6210: fix warning in system power management code
  wil6210: Add proper handling for invalid frames on Rx
  wil6210: log firmware crash information
  wil6210: treat broadcast bssid as "disconnect all"
  wil6210: support BAR (BlockAck Req)
  wil6210: capture all frames in sniffer mode
  wil6210: ratelimit Tx error message
  wil6210: dump firmware memory when firmware crashes

Vladimir Shulman (1):
  wil6210: pmc logger bug fix

 drivers/net/wireless/ath/wil6210/Kconfig          |   1 +
 drivers/net/wireless/ath/wil6210/Makefile         |   1 +
 drivers/net/wireless/ath/wil6210/debugfs.c        |   6 ++
 drivers/net/wireless/ath/wil6210/interrupt.c      |  10 +-
 drivers/net/wireless/ath/wil6210/main.c           |  14 ++-
 drivers/net/wireless/ath/wil6210/pcie_bus.c       |   2 +-
 drivers/net/wireless/ath/wil6210/pmc.c            |   2 +-
 drivers/net/wireless/ath/wil6210/rx_reorder.c     |  26 +++++
 drivers/net/wireless/ath/wil6210/txrx.c           |  62 +++++++++---
 drivers/net/wireless/ath/wil6210/txrx.h           |   7 ++
 drivers/net/wireless/ath/wil6210/wil6210.h        |  10 ++
 drivers/net/wireless/ath/wil6210/wil_crash_dump.c | 115 ++++++++++++++++++++++
 drivers/net/wireless/ath/wil6210/wmi.c            |   2 +-
 13 files changed, 237 insertions(+), 21 deletions(-)
 create mode 100644 drivers/net/wireless/ath/wil6210/wil_crash_dump.c

-- 
2.1.4


^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 00/10] wil6210 patches
@ 2015-01-25  8:52 Vladimir Kondratiev
  0 siblings, 0 replies; 18+ messages in thread
From: Vladimir Kondratiev @ 2015-01-25  8:52 UTC (permalink / raw)
  To: Kalle Valo; +Cc: Vladimir Kondratiev, linux-wireless, wil6210

Performance tuning; some AP features; some small fixes

Dedy Lansky (2):
  wil6210: fix timing of netif_carrier_on indication
  wil6210: ignore firmware failure to gracefully stop AP

Vladimir Kondratiev (4):
  wil6210: sync WMI with firmware
  wil6210: Tx status
  wil6210: probe_client
  wil6210: move Rx reorder buffer allocation out of spinlock

Vladimir Shulman (4):
  wil6210: Add Tx queue len configuration
  wil6210: tuning rings size
  wil6210: interrupt moderation configuration update
  wil6210: remove unnecessary interrupt moderation module parameters

 drivers/net/wireless/ath/wil6210/cfg80211.c   | 112 ++++++++++++++++++++++++--
 drivers/net/wireless/ath/wil6210/main.c       |  73 ++++-------------
 drivers/net/wireless/ath/wil6210/netdev.c     |  15 ++--
 drivers/net/wireless/ath/wil6210/rx_reorder.c |   8 +-
 drivers/net/wireless/ath/wil6210/txrx.c       |  19 ++++-
 drivers/net/wireless/ath/wil6210/wil6210.h    |  25 ++++--
 drivers/net/wireless/ath/wil6210/wmi.c        |  17 ++--
 drivers/net/wireless/ath/wil6210/wmi.h        |  58 +++++++++++--
 8 files changed, 227 insertions(+), 100 deletions(-)

-- 
2.1.0


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

end of thread, other threads:[~2018-04-12  8:09 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-21 14:31 [PATCH 00/10] wil6210 patches Maya Erez
2017-02-21 14:31 ` [PATCH 01/10] wil6210: set dma mask to reflect device capability Maya Erez
2017-03-09  8:06   ` [01/10] " Kalle Valo
2017-02-21 14:32 ` [PATCH 02/10] wil6210: do not start regular scan on stopped p2p device Maya Erez
2017-02-21 14:32 ` [PATCH 03/10] wil6210: bus_request platform operation refinement Maya Erez
2017-02-21 14:32 ` [PATCH 04/10] wil6210: use print_hex_dump_debug instead of print_hex_dump_bytes Maya Erez
2017-02-21 14:32 ` [PATCH 05/10] wil6210: missing reinit_completion in HALP voting Maya Erez
2017-02-21 14:32 ` [PATCH 06/10] wil6210: store bss object and use cfg80211_connect_bss() Maya Erez
2017-02-21 14:32 ` [PATCH 07/10] wil6210: protect list of pending wmi events during flush Maya Erez
2017-02-21 14:32 ` [PATCH 08/10] wil6210: use WMI_DISCONNECT_CMDID upon connect timeout Maya Erez
2017-02-21 14:32 ` [PATCH 09/10] wil6210: correctly report locally generated disconnect in STA mode Maya Erez
2017-02-21 14:32 ` [PATCH 10/10] wil6210: add oob_mode for AP certification Maya Erez
  -- strict thread matches above, loose matches on Subject: below --
2018-04-12  8:08 [PATCH 00/10] wil6210 patches Maya Erez
2018-04-12  7:52 Maya Erez
2017-07-31 16:32 Maya Erez
2015-10-04  7:23 Vladimir Kondratiev
2015-10-09  8:44 ` Kalle Valo
2015-01-25  8:52 Vladimir Kondratiev

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