ath11k: qmi clean up ce and HTC service config update

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>
This commit is contained in:
Anilkumar Kolli 2019-11-27 14:08:47 +00:00 committed by Kalle Valo
parent e8da398657
commit d6af906d83
2 changed files with 6 additions and 7 deletions

View 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)

View 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;