From: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
To: Raj Kumar Bhagat <quic_rajkbhag@quicinc.com>, ath12k@lists.infradead.org
Cc: Johannes Berg <johannes@sipsolutions.net>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Jeff Johnson <jjohnson@kernel.org>,
linux-wireless@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Balamurugan S <quic_bselvara@quicinc.com>,
P Praneesh <quic_ppranees@quicinc.com>
Subject: Re: [PATCH ath-next v9 13/13] wifi: ath12k: enable ath12k AHB support
Date: Thu, 13 Mar 2025 16:59:57 -0700 [thread overview]
Message-ID: <17e98c93-77a4-4caa-9378-bfa22b077f3a@oss.qualcomm.com> (raw)
In-Reply-To: <20250305185501.2400888-14-quic_rajkbhag@quicinc.com>
On 3/5/2025 10:55 AM, Raj Kumar Bhagat wrote:
> From: Balamurugan S <quic_bselvara@quicinc.com>
>
> Currently only PCI devices are supported in Ath12k driver. Refactor
> Ath12k module_init and module_exit to include Ath12k AHB support.
>
> Add Ath12k AHB support in Kconfig with dependency on Remoteproc
> driver. Ath12k AHB support relies on remoteproc driver for firmware
> download, power up/down etc.
>
> Tested-on: IPQ5332 hw1.0 AHB WLAN.WBE.1.3.1-00130-QCAHKSWPL_SILICONZ-1
> Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.1.1-00210-QCAHKSWPL_SILICONZ-1
>
> Signed-off-by: Balamurugan S <quic_bselvara@quicinc.com>
> Co-developed-by: P Praneesh <quic_ppranees@quicinc.com>
> Signed-off-by: P Praneesh <quic_ppranees@quicinc.com>
> Signed-off-by: Raj Kumar Bhagat <quic_rajkbhag@quicinc.com>
> ---
> drivers/net/wireless/ath/ath12k/Kconfig | 6 ++++
> drivers/net/wireless/ath/ath12k/Makefile | 1 +
> drivers/net/wireless/ath/ath12k/ahb.h | 11 ++++++++
> drivers/net/wireless/ath/ath12k/core.c | 35 ++++++++++++++++++++++--
> drivers/net/wireless/ath/ath12k/pci.c | 10 ++-----
> drivers/net/wireless/ath/ath12k/pci.h | 4 ++-
> 6 files changed, 55 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/ath12k/Kconfig b/drivers/net/wireless/ath/ath12k/Kconfig
> index 52a1bb19e3da..b2bfcaca00b3 100644
> --- a/drivers/net/wireless/ath/ath12k/Kconfig
> +++ b/drivers/net/wireless/ath/ath12k/Kconfig
> @@ -15,6 +15,12 @@ config ATH12K
>
> If you choose to build a module, it'll be called ath12k.
>
> +config ATH12K_AHB
> + bool "QTI ath12k AHB support"
> + depends on ATH12K && REMOTEPROC && QCOM_Q6V5_WCSS_SEC
Just to state publicly what I said to you privately, I cannot accept this
series since I cannot enable the feature, even to do a sanity build, since the
patchset that introduces QCOM_Q6V5_WCSS_SEC is not yet accepted.
So moving this to deferred in patchwork. Let me know when QCOM_Q6V5_WCSS_SEC
is accepted.
/jeff
prev parent reply other threads:[~2025-03-14 0:00 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-05 18:54 [PATCH ath-next v9 00/13] wifi: ath12k: add Ath12k AHB driver support for IPQ5332 Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 01/13] dt-bindings: net: wireless: describe the ath12k AHB module " Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 02/13] wifi: ath12k: fix incorrect CE addresses Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 03/13] wifi: ath12k: refactor ath12k_hw_regs structure Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 04/13] wifi: ath12k: add ath12k_hw_params for IPQ5332 Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 05/13] wifi: ath12k: avoid m3 firmware download in AHB device IPQ5332 Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 06/13] wifi: ath12k: Add hw_params to remap CE register space for IPQ5332 Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 07/13] wifi: ath12k: add support for fixed QMI firmware memory Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 08/13] wifi: ath12k: add AHB driver support for IPQ5332 Raj Kumar Bhagat
2025-03-06 3:51 ` Vasanthakumar Thiagarajan
2025-03-05 18:54 ` [PATCH ath-next v9 09/13] wifi: ath12k: Power up root PD Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 10/13] wifi: ath12k: Register various userPD interrupts and save SMEM entries Raj Kumar Bhagat
2025-03-05 18:54 ` [PATCH ath-next v9 11/13] wifi: ath12k: Power up userPD Raj Kumar Bhagat
2025-03-05 18:55 ` [PATCH ath-next v9 12/13] wifi: ath12k: Power down userPD Raj Kumar Bhagat
2025-03-05 18:55 ` [PATCH ath-next v9 13/13] wifi: ath12k: enable ath12k AHB support Raj Kumar Bhagat
2025-03-06 3:54 ` Vasanthakumar Thiagarajan
2025-03-13 23:59 ` Jeff Johnson [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=17e98c93-77a4-4caa-9378-bfa22b077f3a@oss.qualcomm.com \
--to=jeff.johnson@oss.qualcomm.com \
--cc=ath12k@lists.infradead.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jjohnson@kernel.org \
--cc=johannes@sipsolutions.net \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=quic_bselvara@quicinc.com \
--cc=quic_ppranees@quicinc.com \
--cc=quic_rajkbhag@quicinc.com \
--cc=robh@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox