[PATCH v3 06/12] wifi: ath11k: add QRTR endpoint ID hif feature

From: Juha-Matti Tilli

Date: Tue Sep 08 2026 - 06:19:12 EST


From: Mihai Moldovan <ionic@xxxxxxxx>

This will allow fetching the QRTR endpoint ID via hardware-specific
means.

Signed-off-by: Mihai Moldovan <ionic@xxxxxxxx>
Signed-off-by: Juha-Matti Tilli <juha-matti.tilli@xxxxxx>
---
drivers/net/wireless/ath/ath11k/hif.h | 9 +++++++++
1 file changed, 9 insertions(+)

diff --git a/drivers/net/wireless/ath/ath11k/hif.h b/drivers/net/wireless/ath/ath11k/hif.h
index 017fed1b4bd15..2f1634bb9b181 100644
--- a/drivers/net/wireless/ath/ath11k/hif.h
+++ b/drivers/net/wireless/ath/ath11k/hif.h
@@ -32,6 +32,7 @@ struct ath11k_hif_ops {
void (*ce_irq_disable)(struct ath11k_base *ab);
void (*get_ce_msi_idx)(struct ath11k_base *ab, u32 ce_id, u32 *msi_idx);
void (*coredump_download)(struct ath11k_base *ab);
+ int (*set_qrtr_endpoint_id)(struct ath11k_base *ab);
};

static inline void ath11k_hif_ce_irq_enable(struct ath11k_base *ab)
@@ -159,4 +160,12 @@ static inline void ath11k_hif_coredump_download(struct ath11k_base *ab)
ab->hif.ops->coredump_download(ab);
}

+static inline int ath11k_set_qrtr_endpoint_id(struct ath11k_base *ab)
+{
+ if (!ab->hif.ops->set_qrtr_endpoint_id)
+ return -EOPNOTSUPP;
+ else
+ return ab->hif.ops->set_qrtr_endpoint_id(ab);
+}
+
#endif /* _HIF_H_ */
--
2.34.1