]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: ath12k: Add direct HAL pointer in ath12k_dp
authorPavankumar Nandeshwar <quic_pnandesh@quicinc.com>
Thu, 9 Oct 2025 11:10:33 +0000 (16:40 +0530)
committerJeff Johnson <jeff.johnson@oss.qualcomm.com>
Fri, 10 Oct 2025 14:06:18 +0000 (07:06 -0700)
Add a direct pointer to the HAL context in ath12k_dp. Since ath12k_dp
is frequenctly used in the per-packet data path, this avoids the need
to access the HAL handle through the ab pointer, reducing indirection
in the per-packet data path.

Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.4.1-00199-QCAHKSWPL_SILICONZ-1
Tested-on: WCN7850 hw2.0 PCI WLAN.HMT.1.0.c5-00481-QCAHMTSWPL_V1.0_V2.0_SILICONZ-3

Signed-off-by: Pavankumar Nandeshwar <quic_pnandesh@quicinc.com>
Signed-off-by: Ripan Deuri <quic_rdeuri@quicinc.com>
Reviewed-by: Baochen Qiang <baochen.qiang@oss.qualcomm.com>
Reviewed-by: Vasanthakumar Thiagarajan <vasanthakumar.thiagarajan@oss.qualcomm.com>
Link: https://patch.msgid.link/20251009111045.1763001-7-quic_rdeuri@quicinc.com
Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
drivers/net/wireless/ath/ath12k/dp.h
drivers/net/wireless/ath/ath12k/wifi7/dp.c

index 284e89f7c4b8d2bddb52dc36ecc36fc4fe6a9396..9690e3472ab7c67e4b662d5e052e6b91a255e02c 100644 (file)
@@ -447,6 +447,7 @@ struct ath12k_dp {
        struct ath12k_reo_q_addr_lut ml_reoq_lut;
        const struct ath12k_hw_params *hw_params;
        struct device *dev;
+       struct ath12k_hal *hal;
 
        /* RCU on dp_pdevs[] provides a teardown synchronization mechanism,
         * ensuring in-flight data path readers complete before reclaim. Writers
index 4465a9e93bf85fd0a58ac79b4fa80dd280b5c345..e691d0ca0d75ce7ec948529db01d294992c136ca 100644 (file)
@@ -152,6 +152,7 @@ struct ath12k_dp *ath12k_wifi7_dp_device_alloc(struct ath12k_base *ab)
        dp->ab = ab;
        dp->dev = ab->dev;
        dp->hw_params = ab->hw_params;
+       dp->hal = &ab->hal;
 
        dp->ops = &ath12k_wifi7_dp_arch_ops;