ath11k: qmi clean up ce and HTC service config update
authorAnilkumar Kolli <akolli@codeaurora.org>
Wed, 27 Nov 2019 14:08:47 +0000 (14:08 +0000)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 29 Nov 2019 07:46:55 +0000 (09:46 +0200)
Copy CE and htc service configs for all pipes.

Signed-off-by: Anilkumar Kolli <akolli@codeaurora.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/ath11k/ahb.c
drivers/net/wireless/ath/ath11k/qmi.h

index f80173b..e7e3e64 100644 (file)
@@ -635,11 +635,10 @@ static void ath11k_ahb_init_qmi_ce_config(struct ath11k_base *ab)
 {
        struct ath11k_qmi_ce_cfg *cfg = &ab->qmi.ce_cfg;
 
-       cfg->tgt_ce = (u8 *)target_ce_config_wlan;
-       cfg->tgt_ce_len = sizeof(target_ce_config_wlan);
-
-       cfg->svc_to_ce_map = (u8 *)target_service_to_ce_map_wlan;
-       cfg->svc_to_ce_map_len = sizeof(target_service_to_ce_map_wlan);
+       cfg->tgt_ce_len = ARRAY_SIZE(target_ce_config_wlan) - 1;
+       cfg->tgt_ce = target_ce_config_wlan;
+       cfg->svc_to_ce_map_len = ARRAY_SIZE(target_service_to_ce_map_wlan);
+       cfg->svc_to_ce_map = target_service_to_ce_map_wlan;
 }
 
 static void ath11k_ahb_free_ext_irq(struct ath11k_base *ab)
index df06855..3f7db64 100644 (file)
@@ -66,9 +66,9 @@ struct ath11k_qmi_driver_event {
 };
 
 struct ath11k_qmi_ce_cfg {
-       const u8 *tgt_ce;
+       const struct ce_pipe_config *tgt_ce;
        int tgt_ce_len;
-       const u8 *svc_to_ce_map;
+       const struct service_to_pipe *svc_to_ce_map;
        int svc_to_ce_map_len;
        const u8 *shadow_reg;
        int shadow_reg_len;