From: Kalle Valo <kvalo@kernel.org>
To: Raj Kumar Bhagat <quic_rajkbhag@quicinc.com>
Cc: <ath11k@lists.infradead.org>, <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH v2 0/4] ath11k: factory test mode support
Date: Thu, 20 Apr 2023 15:13:09 +0300 [thread overview]
Message-ID: <87r0sevjje.fsf@kernel.org> (raw)
In-Reply-To: <825cf403-b833-beff-02d4-cf8fbab89eb0@quicinc.com> (Raj Kumar Bhagat's message of "Thu, 20 Apr 2023 17:31:25 +0530")
Raj Kumar Bhagat <quic_rajkbhag@quicinc.com> writes:
> On 4/20/2023 5:06 PM, Raj Kumar Bhagat wrote:
>
>> Device is booted in factory test mode to calibrate the board.
>> The commands are sent from a userspace application, which is
>> sent to firmware using wmi commands. Firmware will send the
>> response back to the application which stores the calibration
>> data in caldata.bin file. This file will be loaded when the
>> device boots up normally next time.
>>
>> Govindaraj Saminathan (3):
>> wifi: ath11k: remove unused function ath11k_tm_event_wmi
>> wifi: ath11k: optimize ath11k_tm_cmd_get_version
>> wifi: ath11k: factory test mode support
>>
>> Sowmiya Sree Elavalagan (1):
>> wifi: ath11k: Allow ath11k to boot without caldata in ftm mode
>>
>> ---
>> v2:
>> - added separate patch for removal of ath11k_tm_event_wmi()
>> - added separate patch for changes in ath11k_tm_cmd_get_version()
>> - removed unused cmd and updated documentation for enum ath11k_tm_cmd
>> - changed warning print to debug print
>> ---
>>
>> drivers/net/wireless/ath/ath11k/ahb.c | 3 +-
>> drivers/net/wireless/ath/ath11k/core.c | 20 +-
>> drivers/net/wireless/ath/ath11k/core.h | 15 +-
>> drivers/net/wireless/ath/ath11k/mac.c | 13 +-
>> drivers/net/wireless/ath/ath11k/pci.c | 3 +-
>> drivers/net/wireless/ath/ath11k/qmi.c | 10 +-
>> drivers/net/wireless/ath/ath11k/testmode.c | 320 ++++++++++++++++---
>> drivers/net/wireless/ath/ath11k/testmode.h | 20 +-
>> drivers/net/wireless/ath/ath11k/testmode_i.h | 16 +
>> drivers/net/wireless/ath/ath11k/wmi.c | 40 ++-
>> drivers/net/wireless/ath/ath11k/wmi.h | 20 ++
>> drivers/net/wireless/ath/ath11k/wow.c | 3 +-
>> 12 files changed, 419 insertions(+), 64 deletions(-)
>>
>>
>> base-commit: 12f167f02a1abe2c8817496a902de00758285b92
>
> Please ignore this patch series. Tested-on tag is missing for patches 1/4 and
> 2/4. Will send v3 with correct Tested-on tag.
Please wait, I need to first push back my changes to the pending so that
you can see them.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
--
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k
WARNING: multiple messages have this Message-ID (diff)
From: Kalle Valo <kvalo@kernel.org>
To: Raj Kumar Bhagat <quic_rajkbhag@quicinc.com>
Cc: <ath11k@lists.infradead.org>, <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH v2 0/4] ath11k: factory test mode support
Date: Thu, 20 Apr 2023 15:13:09 +0300 [thread overview]
Message-ID: <87r0sevjje.fsf@kernel.org> (raw)
In-Reply-To: <825cf403-b833-beff-02d4-cf8fbab89eb0@quicinc.com> (Raj Kumar Bhagat's message of "Thu, 20 Apr 2023 17:31:25 +0530")
Raj Kumar Bhagat <quic_rajkbhag@quicinc.com> writes:
> On 4/20/2023 5:06 PM, Raj Kumar Bhagat wrote:
>
>> Device is booted in factory test mode to calibrate the board.
>> The commands are sent from a userspace application, which is
>> sent to firmware using wmi commands. Firmware will send the
>> response back to the application which stores the calibration
>> data in caldata.bin file. This file will be loaded when the
>> device boots up normally next time.
>>
>> Govindaraj Saminathan (3):
>> wifi: ath11k: remove unused function ath11k_tm_event_wmi
>> wifi: ath11k: optimize ath11k_tm_cmd_get_version
>> wifi: ath11k: factory test mode support
>>
>> Sowmiya Sree Elavalagan (1):
>> wifi: ath11k: Allow ath11k to boot without caldata in ftm mode
>>
>> ---
>> v2:
>> - added separate patch for removal of ath11k_tm_event_wmi()
>> - added separate patch for changes in ath11k_tm_cmd_get_version()
>> - removed unused cmd and updated documentation for enum ath11k_tm_cmd
>> - changed warning print to debug print
>> ---
>>
>> drivers/net/wireless/ath/ath11k/ahb.c | 3 +-
>> drivers/net/wireless/ath/ath11k/core.c | 20 +-
>> drivers/net/wireless/ath/ath11k/core.h | 15 +-
>> drivers/net/wireless/ath/ath11k/mac.c | 13 +-
>> drivers/net/wireless/ath/ath11k/pci.c | 3 +-
>> drivers/net/wireless/ath/ath11k/qmi.c | 10 +-
>> drivers/net/wireless/ath/ath11k/testmode.c | 320 ++++++++++++++++---
>> drivers/net/wireless/ath/ath11k/testmode.h | 20 +-
>> drivers/net/wireless/ath/ath11k/testmode_i.h | 16 +
>> drivers/net/wireless/ath/ath11k/wmi.c | 40 ++-
>> drivers/net/wireless/ath/ath11k/wmi.h | 20 ++
>> drivers/net/wireless/ath/ath11k/wow.c | 3 +-
>> 12 files changed, 419 insertions(+), 64 deletions(-)
>>
>>
>> base-commit: 12f167f02a1abe2c8817496a902de00758285b92
>
> Please ignore this patch series. Tested-on tag is missing for patches 1/4 and
> 2/4. Will send v3 with correct Tested-on tag.
Please wait, I need to first push back my changes to the pending so that
you can see them.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
next prev parent reply other threads:[~2023-04-20 12:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-20 11:36 [PATCH v2 0/4] ath11k: factory test mode support Raj Kumar Bhagat
2023-04-20 11:36 ` Raj Kumar Bhagat
2023-04-20 11:36 ` [PATCH v2 1/4] wifi: ath11k: remove unused function ath11k_tm_event_wmi Raj Kumar Bhagat
2023-04-20 11:36 ` Raj Kumar Bhagat
2023-04-20 11:36 ` [PATCH v2 2/4] wifi: ath11k: optimize ath11k_tm_cmd_get_version Raj Kumar Bhagat
2023-04-20 11:36 ` Raj Kumar Bhagat
2023-04-20 11:36 ` [PATCH v2 3/4] wifi: ath11k: factory test mode support Raj Kumar Bhagat
2023-04-20 11:36 ` Raj Kumar Bhagat
2023-04-20 11:36 ` [PATCH v2 4/4] wifi: ath11k: Allow ath11k to boot without caldata in ftm mode Raj Kumar Bhagat
2023-04-20 11:36 ` Raj Kumar Bhagat
2023-04-20 12:01 ` [PATCH v2 0/4] ath11k: factory test mode support Raj Kumar Bhagat
2023-04-20 12:01 ` Raj Kumar Bhagat
2023-04-20 12:13 ` Kalle Valo [this message]
2023-04-20 12:13 ` 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=87r0sevjje.fsf@kernel.org \
--to=kvalo@kernel.org \
--cc=ath11k@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=quic_rajkbhag@quicinc.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 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.