mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-27 16:50:40 +07:00
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:
parent
e8da398657
commit
d6af906d83
@ -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)
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user