All of lore.kernel.org
 help / color / mirror / Atom feed
From: Carl Huang <quic_cjhuang@quicinc.com>
To: <ath11k@lists.infradead.org>
Cc: <linux-wireless@vger.kernel.org>
Subject: [PATCH v3 0/6] ath11k: support WoW functionalities
Date: Tue, 8 Feb 2022 16:13:20 +0800	[thread overview]
Message-ID: <1644308006-22784-1-git-send-email-quic_cjhuang@quicinc.com> (raw)

Ath11k WoW basic funtionalities are merged from ath10k such
as magic-pattern, PNO, disconnect and patterns.

Hw data filter and pktlog purge are required for ath11k.

ARP and NS offload, GTK rekey offload are new WoW features
implemented on ath11k.

v3:
	- rebased to 76680d49b5e0e661bc4abcdaf13fb7e124b4ca08
          (tag ath-202202030905)

v2:
        - fixed minor style issues commented by Kalle
        - fixed endianness
        - rebased to ath-202112161538
 
Carl Huang (6):
  ath11k: Add basic WoW functionalities
  ath11k: Add WoW net-detect functionality
  ath11k: implement hardware data filter
  ath11k: purge rx pktlog when entering WoW
  ath11k: support ARP and NS offload
  ath11k: support GTK rekey offload

 drivers/net/wireless/ath/ath11k/core.c  |  36 +-
 drivers/net/wireless/ath/ath11k/core.h  |  31 +
 drivers/net/wireless/ath/ath11k/dp_rx.c |   1 -
 drivers/net/wireless/ath/ath11k/htc.c   |   6 +
 drivers/net/wireless/ath/ath11k/htc.h   |   1 +
 drivers/net/wireless/ath/ath11k/mac.c   | 217 ++++++-
 drivers/net/wireless/ath/ath11k/mac.h   |   1 +
 drivers/net/wireless/ath/ath11k/wmi.c   | 612 +++++++++++++++++++
 drivers/net/wireless/ath/ath11k/wmi.h   | 353 ++++++++++-
 drivers/net/wireless/ath/ath11k/wow.c   | 759 ++++++++++++++++++++++++
 drivers/net/wireless/ath/ath11k/wow.h   |  36 ++
 11 files changed, 2034 insertions(+), 19 deletions(-)


base-commit: 76680d49b5e0e661bc4abcdaf13fb7e124b4ca08
-- 
2.32.0


-- 
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k

WARNING: multiple messages have this Message-ID (diff)
From: Carl Huang <quic_cjhuang@quicinc.com>
To: <ath11k@lists.infradead.org>
Cc: <linux-wireless@vger.kernel.org>
Subject: [PATCH v3 0/6] ath11k: support WoW functionalities
Date: Tue, 8 Feb 2022 16:13:20 +0800	[thread overview]
Message-ID: <1644308006-22784-1-git-send-email-quic_cjhuang@quicinc.com> (raw)

Ath11k WoW basic funtionalities are merged from ath10k such
as magic-pattern, PNO, disconnect and patterns.

Hw data filter and pktlog purge are required for ath11k.

ARP and NS offload, GTK rekey offload are new WoW features
implemented on ath11k.

v3:
	- rebased to 76680d49b5e0e661bc4abcdaf13fb7e124b4ca08
          (tag ath-202202030905)

v2:
        - fixed minor style issues commented by Kalle
        - fixed endianness
        - rebased to ath-202112161538
 
Carl Huang (6):
  ath11k: Add basic WoW functionalities
  ath11k: Add WoW net-detect functionality
  ath11k: implement hardware data filter
  ath11k: purge rx pktlog when entering WoW
  ath11k: support ARP and NS offload
  ath11k: support GTK rekey offload

 drivers/net/wireless/ath/ath11k/core.c  |  36 +-
 drivers/net/wireless/ath/ath11k/core.h  |  31 +
 drivers/net/wireless/ath/ath11k/dp_rx.c |   1 -
 drivers/net/wireless/ath/ath11k/htc.c   |   6 +
 drivers/net/wireless/ath/ath11k/htc.h   |   1 +
 drivers/net/wireless/ath/ath11k/mac.c   | 217 ++++++-
 drivers/net/wireless/ath/ath11k/mac.h   |   1 +
 drivers/net/wireless/ath/ath11k/wmi.c   | 612 +++++++++++++++++++
 drivers/net/wireless/ath/ath11k/wmi.h   | 353 ++++++++++-
 drivers/net/wireless/ath/ath11k/wow.c   | 759 ++++++++++++++++++++++++
 drivers/net/wireless/ath/ath11k/wow.h   |  36 ++
 11 files changed, 2034 insertions(+), 19 deletions(-)


base-commit: 76680d49b5e0e661bc4abcdaf13fb7e124b4ca08
-- 
2.32.0


             reply	other threads:[~2022-02-08  8:13 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-08  8:13 Carl Huang [this message]
2022-02-08  8:13 ` [PATCH v3 0/6] ath11k: support WoW functionalities Carl Huang
2022-02-08  8:13 ` [PATCH v3 1/6] ath11k: Add basic " Carl Huang
2022-02-08  8:13   ` Carl Huang
2022-02-08 10:55   ` kernel test robot
2022-02-08 12:15   ` kernel test robot
2022-02-08 20:55   ` Jeff Johnson
2022-02-08 20:55     ` Jeff Johnson
2022-02-10  6:43     ` Kalle Valo
2022-02-10  6:43       ` Kalle Valo
2022-02-10 11:39   ` Kalle Valo
2022-02-10 11:39     ` Kalle Valo
2022-02-22 12:54   ` Kalle Valo
2022-02-22 12:54     ` Kalle Valo
2022-02-22 13:59     ` Kalle Valo
2022-02-22 13:59       ` Kalle Valo
2022-02-22 14:28       ` Kalle Valo
2022-02-22 14:28         ` Kalle Valo
2022-02-24 16:09   ` Kalle Valo
2022-02-24 16:09     ` Kalle Valo
2022-03-18 15:37   ` Kalle Valo
2022-03-18 15:37     ` Kalle Valo
2022-02-08  8:13 ` [PATCH v3 2/6] ath11k: Add WoW net-detect functionality Carl Huang
2022-02-08  8:13   ` Carl Huang
2022-02-08  8:13 ` [PATCH v3 3/6] ath11k: implement hardware data filter Carl Huang
2022-02-08  8:13   ` Carl Huang
2022-02-08  8:13 ` [PATCH v3 4/6] ath11k: purge rx pktlog when entering WoW Carl Huang
2022-02-08  8:13   ` Carl Huang
2022-02-08  8:13 ` [PATCH v3 5/6] ath11k: support ARP and NS offload Carl Huang
2022-02-08  8:13   ` Carl Huang
2022-02-08  8:13 ` [PATCH v3 6/6] ath11k: support GTK rekey offload Carl Huang
2022-02-08  8:13   ` Carl Huang
2022-02-22 13:54   ` Kalle Valo
2022-02-22 13:54     ` Kalle Valo

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=1644308006-22784-1-git-send-email-quic_cjhuang@quicinc.com \
    --to=quic_cjhuang@quicinc.com \
    --cc=ath11k@lists.infradead.org \
    --cc=linux-wireless@vger.kernel.org \
    /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 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.