|
@@ -838,6 +838,25 @@ QDF_STATUS cds_open(struct wlan_objmgr_psoc *psoc)
|
|
|
goto err_soc_detach;
|
|
|
}
|
|
|
hdd_ctx->is_wifi3_0_target = true;
|
|
|
+ } else if (hdd_ctx->target_type == TARGET_TYPE_WCN6450) {
|
|
|
+ gp_cds_context->dp_soc =
|
|
|
+ cdp_soc_attach(RHINE_DP,
|
|
|
+ gp_cds_context->hif_context,
|
|
|
+ htcInfo.target_psoc,
|
|
|
+ gp_cds_context->htc_ctx,
|
|
|
+ gp_cds_context->qdf_ctx,
|
|
|
+ &dp_ol_if_ops);
|
|
|
+ if (gp_cds_context->dp_soc)
|
|
|
+ if (!cdp_soc_init(gp_cds_context->dp_soc, RHINE_DP,
|
|
|
+ gp_cds_context->hif_context,
|
|
|
+ htcInfo.target_psoc,
|
|
|
+ gp_cds_context->htc_ctx,
|
|
|
+ gp_cds_context->qdf_ctx,
|
|
|
+ &dp_ol_if_ops)) {
|
|
|
+ status = QDF_STATUS_E_FAILURE;
|
|
|
+ goto err_soc_detach;
|
|
|
+ }
|
|
|
+ hdd_ctx->is_wifi3_0_target = true;
|
|
|
} else {
|
|
|
gp_cds_context->dp_soc = cdp_soc_attach(MOB_DRV_LEGACY_DP,
|
|
|
gp_cds_context->hif_context, htcInfo.target_psoc,
|
|
@@ -968,7 +987,8 @@ QDF_STATUS cds_dp_open(struct wlan_objmgr_psoc *psoc)
|
|
|
hdd_ctx->target_type == TARGET_TYPE_QCA6750 ||
|
|
|
hdd_ctx->target_type == TARGET_TYPE_KIWI ||
|
|
|
hdd_ctx->target_type == TARGET_TYPE_MANGO ||
|
|
|
- hdd_ctx->target_type == TARGET_TYPE_PEACH) {
|
|
|
+ hdd_ctx->target_type == TARGET_TYPE_PEACH ||
|
|
|
+ hdd_ctx->target_type == TARGET_TYPE_WCN6450) {
|
|
|
qdf_status = cdp_pdev_init(cds_get_context(QDF_MODULE_ID_SOC),
|
|
|
gp_cds_context->htc_ctx,
|
|
|
gp_cds_context->qdf_ctx, 0);
|