|
@@ -20246,6 +20246,27 @@ static void hdd_populate_runtime_cfg(struct hdd_context *hdd_ctx,
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifdef FEATURE_ENABLE_CE_DP_IRQ_AFFINE
|
|
|
+/**
|
|
|
+ * hdd_populate_ce_dp_irq_affine_cfg() - populate ce irq affine configuration
|
|
|
+ * @hdd_ctx: hdd context
|
|
|
+ * @cfg: pointer to the configuration memory being populated
|
|
|
+ *
|
|
|
+ * Return: void
|
|
|
+ */
|
|
|
+static void hdd_populate_ce_dp_irq_affine_cfg(struct hdd_context *hdd_ctx,
|
|
|
+ struct hif_config_info *cfg)
|
|
|
+{
|
|
|
+ cfg->enable_ce_dp_irq_affine = cfg_get(hdd_ctx->psoc,
|
|
|
+ CFG_ENABLE_CE_DP_IRQ_AFFINE);
|
|
|
+}
|
|
|
+#else
|
|
|
+static void hdd_populate_ce_dp_irq_affine_cfg(struct hdd_context *hdd_ctx,
|
|
|
+ struct hif_config_info *cfg)
|
|
|
+{
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
/**
|
|
|
* hdd_update_hif_config - API to update HIF configuration parameters
|
|
|
* @hdd_ctx: HDD Context
|
|
@@ -20276,6 +20297,7 @@ static void hdd_update_hif_config(struct hdd_context *hdd_ctx)
|
|
|
hdd_populate_runtime_cfg(hdd_ctx, &cfg);
|
|
|
cfg.rx_softirq_max_yield_duration_ns =
|
|
|
ucfg_dp_get_rx_softirq_yield_duration(hdd_ctx->psoc);
|
|
|
+ hdd_populate_ce_dp_irq_affine_cfg(hdd_ctx, &cfg);
|
|
|
|
|
|
hif_init_ini_config(scn, &cfg);
|
|
|
hif_set_enable_rpm(scn);
|