From: Kalle Valo <kvalo@kernel.org>
To: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
Cc: Aditya Kumar Singh <quic_adisi@quicinc.com>,
Aaradhana Sahu <quic_aarasahu@quicinc.com>,
ath12k@lists.infradead.org, linux-wireless@vger.kernel.org
Subject: Re: [PATCH v5 0/4] wifi: ath12k: Factory test mode support
Date: Thu, 09 Jan 2025 14:54:50 +0200 [thread overview]
Message-ID: <87tta8du5h.fsf@kernel.org> (raw)
In-Reply-To: <5f05898c-cc5c-4c31-891e-9d5cb9cf5bfa@oss.qualcomm.com> (Jeff Johnson's message of "Wed, 8 Jan 2025 21:29:27 -0800")
Jeff Johnson <jeff.johnson@oss.qualcomm.com> writes:
> On 1/8/2025 8:55 PM, Aditya Kumar Singh wrote:
>
>> On 1/9/25 10:13, Aaradhana Sahu wrote:
>>>
>>>
>>> On 6/24/2024 3:23 PM, Aaradhana Sahu wrote:
>>>> Device is booted in factory test mode for calibration.
>>>> The commands are sent from userspace application, which
>>>> is sent to firmware using wmi commands. Firmware sends
>>>> the response to driver as wmi events and driver sends
>>>> these events to the application via netlink message.
>>>>
>>>> Also added changes related to correct pdev id access for
>>>> fw test cmd.
>>>>
>>>> Aaradhana Sahu (3):
>>>> wifi: ath: create common testmode_i.h file for ath drivers
>>>> wifi: ath12k: export ath12k_wmi_tlv_hdr for testmode
>>>> wifi: ath12k: add factory test mode support
>>>>
>>>> Rajat Soni (1):
>>>> wifi: ath12k: Fill pdev id for fw test cmd
>>>>
>>>> ---
>>>> v5:
>>>> -Updated copyright
>>>> -Fixed line length within 90 char
>>>> v4:
>>>> -Rebased on latest ToT
>>>> v3:
>>>> -Rebased on latest ToT
>>>> -Updated Tested-on Tag
>>>> -Removed second parameter of ath12k_core_start()
>>>> -Updated copyright
>>>> v2:
>>>> -Rebased on latest ath ToT
>>>> ---
>>>>
>>>> drivers/net/wireless/ath/ath11k/testmode.c | 78 ++--
>>>> drivers/net/wireless/ath/ath12k/Makefile | 1 +
>>>> drivers/net/wireless/ath/ath12k/core.c | 22 +-
>>>> drivers/net/wireless/ath/ath12k/core.h | 13 +
>>>> drivers/net/wireless/ath/ath12k/debug.h | 1 +
>>>> drivers/net/wireless/ath/ath12k/dp.c | 3 +
>>>> drivers/net/wireless/ath/ath12k/mac.c | 15 +-
>>>> drivers/net/wireless/ath/ath12k/pci.c | 1 +
>>>> drivers/net/wireless/ath/ath12k/testmode.c | 423 ++++++++++++++++++
>>>> drivers/net/wireless/ath/ath12k/testmode.h | 40 ++
>>>> drivers/net/wireless/ath/ath12k/wmi.c | 39 +-
>>>> drivers/net/wireless/ath/ath12k/wmi.h | 21 +
>>>> .../wireless/ath/{ath11k => }/testmode_i.h | 54 +--
>>>> 13 files changed, 636 insertions(+), 75 deletions(-)
>>>> create mode 100644 drivers/net/wireless/ath/ath12k/testmode.c
>>>> create mode 100644 drivers/net/wireless/ath/ath12k/testmode.h
>>>> rename drivers/net/wireless/ath/{ath11k => }/testmode_i.h (50%)
>>>>
>>>>
>>>> base-commit: cac9bfd02678adbcca9a7dce770609b9f7434d37
>>>
>>> Hi Kalle,
>>>
>>> Please let me know, if any thing is pending from the developer side, to merge this series into ath.git tree.
>>
>> This series does not apply cleanly on latest tip. And base commit is
>> around 6 months old. So may be you would want to rebase and send a new
>> version?
>>
>> Applying: wifi: ath: create common testmode_i.h file for ath drivers
>> Applying: wifi: ath12k: export ath12k_wmi_tlv_hdr for testmode
>> Applying: wifi: ath12k: add factory test mode support
>> error: patch failed: drivers/net/wireless/ath/ath12k/Makefile:26
>> error: drivers/net/wireless/ath/ath12k/Makefile: patch does not apply
>> error: patch failed: drivers/net/wireless/ath/ath12k/core.c:42
>> error: drivers/net/wireless/ath/ath12k/core.c: patch does not apply
>> error: patch failed: drivers/net/wireless/ath/ath12k/core.h:209
>> error: drivers/net/wireless/ath/ath12k/core.h: patch does not apply
>> error: patch failed: drivers/net/wireless/ath/ath12k/debug.h:33
>> error: drivers/net/wireless/ath/ath12k/debug.h: patch does not apply
>> error: patch failed: drivers/net/wireless/ath/ath12k/mac.c:13
>> error: drivers/net/wireless/ath/ath12k/mac.c: patch does not apply
>> error: patch failed: drivers/net/wireless/ath/ath12k/wmi.c:7150
>> error: drivers/net/wireless/ath/ath12k/wmi.c: patch does not apply
>> Patch failed at 0003 wifi: ath12k: add factory test mode support
>> hint: Use 'git am --show-current-patch=diff' to see the failed patch
>> When you have resolved this problem, run "git am --continue".
>> If you prefer to skip this patch, run "git am --skip" instead.
>> To restore the original branch and stop patching, run "git am --abort".
>>
>> And since you'll be submitting in 2025, don't forget to update
>> copyrights.
>>
>>
>
> Make sure to review all the changes that Kalle made locally to the pending
> version and incorporate those.
BTW my changes are available in tag ath-pending-202407031443 and these
are the commit ids:
194fb8d58727 wifi: ath12k: Fill pdev id for fw test cmd
0ca2ecc31b40 wifi: ath12k: add factory test mode support
df17f461e7c3 wifi: ath12k: export ath12k_wmi_tlv_hdr for testmode
593b976359bf wifi: ath: create common testmode_i.h file for ath drivers
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
next prev parent reply other threads:[~2025-01-09 12:54 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-24 9:53 [PATCH v5 0/4] wifi: ath12k: Factory test mode support Aaradhana Sahu
2024-06-24 9:53 ` [PATCH v5 1/4] wifi: ath: create common testmode_i.h file for ath drivers Aaradhana Sahu
2024-06-25 18:43 ` Jeff Johnson
2024-06-24 9:53 ` [PATCH v5 2/4] wifi: ath12k: export ath12k_wmi_tlv_hdr for testmode Aaradhana Sahu
2024-06-25 18:43 ` Jeff Johnson
2024-06-24 9:53 ` [PATCH v5 3/4] wifi: ath12k: add factory test mode support Aaradhana Sahu
2024-06-25 18:44 ` Jeff Johnson
2024-06-27 17:43 ` Kalle Valo
2024-06-27 18:29 ` Jeff Johnson
2024-06-28 3:19 ` Aaradhana Sahu
2024-07-02 10:18 ` Kalle Valo
2024-07-02 13:49 ` Kalle Valo
2024-06-24 9:53 ` [PATCH v5 4/4] wifi: ath12k: Fill pdev id for fw test cmd Aaradhana Sahu
2024-06-25 18:44 ` Jeff Johnson
2025-01-09 4:43 ` [PATCH v5 0/4] wifi: ath12k: Factory test mode support Aaradhana Sahu
2025-01-09 4:55 ` Aditya Kumar Singh
2025-01-09 5:29 ` Jeff Johnson
2025-01-09 12:54 ` Kalle Valo [this message]
2025-01-09 13:15 ` Aaradhana Sahu
2025-01-09 20:53 ` Jeff Johnson
2025-01-09 13:14 ` Aaradhana Sahu
2025-01-09 13:13 ` Aaradhana Sahu
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=87tta8du5h.fsf@kernel.org \
--to=kvalo@kernel.org \
--cc=ath12k@lists.infradead.org \
--cc=jeff.johnson@oss.qualcomm.com \
--cc=linux-wireless@vger.kernel.org \
--cc=quic_aarasahu@quicinc.com \
--cc=quic_adisi@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox