ATH11K Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Vasanthakumar Thiagarajan <vasanthakumar.thiagarajan@oss.qualcomm.com>
To: "Yu Zhang(Yuriy)" <yu.zhang@oss.qualcomm.com>, jjohnson@kernel.org
Cc: linux-kernel@vger.kernel.org, linux-wireless@vger.kernel.org,
	ath11k@lists.infradead.org
Subject: Re: [PATCH ath-next 0/6] wifi: ath11k: Add single shot/periodic CFR capture support
Date: Thu, 30 Oct 2025 23:47:08 +0530	[thread overview]
Message-ID: <3a06ddc1-39ad-1192-e44b-0dbaa1352f76@oss.qualcomm.com> (raw)
In-Reply-To: <20251030043150.3905086-1-yu.zhang@oss.qualcomm.com>



On 10/30/2025 10:01 AM, Yu Zhang(Yuriy) wrote:
> To enable/disable cfr feature use command,
> 
> echo <val> > /sys/kernel/debug/ieee80211/phyX/ath11k/enable_cfr
> 
> where, val: 0 to disable CFR and 1 to enable CFR.
> 
> To enable CFR capture for associated peers,
> 
> echo "<val> <bw> <periodicity> <method>"
>   >
> /sys/kernel/debug/ieee80211/phyX/netdev\:wlanx/stations/<mac>/cfr_capture
> 
> val: 0 - stop CFR capture
>       1 - start CFR capture
> bw: CFR capture bandwidth
>       0 - 20MHZ
>       1 - 40MHZ
>       2 - 80MHZ
> Periodicity: Periodicity at which hardware is expceted to collect CFR
> dump.
>       0 - single shot capture.
>       non zero - for Periodic captures (value should be multiple of 10
> ms)
> method: Method used by hardware to collect the CFR dump.
>       0 - from the ACKs of QOS NULL packets.
> 
> To enable CFR capture for unassociated clients,
> 
> echo “<mac address> <val> <periodicity>”
>   > /sys/kernel/debug/ieee80211/phyX/ath11k/cfr_unassoc
> 
> Mac address: mac address of the client.
> Val: 0 - start CFR capture
>       1 – stop CFR capture
> Periodicity: Periodicity at which hardware is expceted to collect CFR
> dump.
>       0 - single shot capture.
>       non zero - for Periodic captures (value should be multiple of 10
> ms)
> 
> To collect the cfr dump,
> cat /sys/kernel/debug/ieee80211/phy0/ath11k/cfr_capture0 > /tmp/cfr.bin
> 
> Previous link:
> https://lore.kernel.org/all/1645005922-7252-1-git-send-email-quic_vnaralas@quicinc.com/
> 
> Signed-off-by: Yu Zhang(Yuriy) <yu.zhang@oss.qualcomm.com>
> ---
> Venkateswara Naralasetty (6):
>    wifi: ath11k: Add initialization and deinitialization sequence for CFR
>      module
>    wifi: ath11k: Register debugfs for CFR configuration
>    wifi: ath11k: Add support unassociated client CFR
>    wifi: ath11k: Register relayfs entries for CFR dump
>    wifi: ath11k: Register DBR event handler for CFR data
>    wifi: ath11k: Register handler for CFR capture event
> 
>   drivers/net/wireless/ath/ath11k/Kconfig       |  11 +
>   drivers/net/wireless/ath/ath11k/Makefile      |   1 +
>   drivers/net/wireless/ath/ath11k/cfr.c         | 991 ++++++++++++++++++
>   drivers/net/wireless/ath/ath11k/cfr.h         | 301 ++++++
>   drivers/net/wireless/ath/ath11k/core.c        |  41 +-
>   drivers/net/wireless/ath/ath11k/core.h        |  19 +-
>   drivers/net/wireless/ath/ath11k/dbring.c      |  50 +-
>   drivers/net/wireless/ath/ath11k/dbring.h      |   8 +-
>   drivers/net/wireless/ath/ath11k/debug.h       |   8 +-
>   drivers/net/wireless/ath/ath11k/debugfs_sta.c | 143 ++-
>   drivers/net/wireless/ath/ath11k/hal.c         |   3 +-
>   drivers/net/wireless/ath/ath11k/hw.h          |   5 +-
>   drivers/net/wireless/ath/ath11k/mac.c         |  17 +-
>   drivers/net/wireless/ath/ath11k/wmi.c         | 147 ++-
>   drivers/net/wireless/ath/ath11k/wmi.h         |  97 +-
>   15 files changed, 1816 insertions(+), 26 deletions(-)
>   create mode 100644 drivers/net/wireless/ath/ath11k/cfr.c
>   create mode 100644 drivers/net/wireless/ath/ath11k/cfr.h
> 

Reviewed-by: Vasanthakumar Thiagarajan <vasanthakumar.thiagarajan@oss.qualcomm.com>


      parent reply	other threads:[~2025-10-30 18:17 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-30  4:31 [PATCH ath-next 0/6] wifi: ath11k: Add single shot/periodic CFR capture support Yu Zhang(Yuriy)
2025-10-30  4:31 ` [PATCH ath-next 1/6] wifi: ath11k: Add initialization and deinitialization sequence for CFR module Yu Zhang(Yuriy)
2025-10-31  2:42   ` Baochen Qiang
2025-10-30  4:31 ` [PATCH ath-next 2/6] wifi: ath11k: Register debugfs for CFR configuration Yu Zhang(Yuriy)
2025-10-31  2:43   ` Baochen Qiang
2025-11-02  9:21     ` Yu Zhang(Yuriy)
2025-11-03  3:14       ` Baochen Qiang
2025-11-03  7:37         ` Yu Zhang(Yuriy)
2025-10-30  4:31 ` [PATCH ath-next 3/6] wifi: ath11k: Add support unassociated client CFR Yu Zhang(Yuriy)
2025-10-30  4:31 ` [PATCH ath-next 4/6] wifi: ath11k: Register relayfs entries for CFR dump Yu Zhang(Yuriy)
2025-10-30  4:31 ` [PATCH ath-next 5/6] wifi: ath11k: Register DBR event handler for CFR data Yu Zhang(Yuriy)
2025-10-31  2:59   ` Baochen Qiang
2025-10-30  4:31 ` [PATCH ath-next 6/6] wifi: ath11k: Register handler for CFR capture event Yu Zhang(Yuriy)
2025-10-31  3:05   ` Baochen Qiang
2025-10-30 18:17 ` Vasanthakumar Thiagarajan [this message]

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=3a06ddc1-39ad-1192-e44b-0dbaa1352f76@oss.qualcomm.com \
    --to=vasanthakumar.thiagarajan@oss.qualcomm.com \
    --cc=ath11k@lists.infradead.org \
    --cc=jjohnson@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=yu.zhang@oss.qualcomm.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