Pārlūkot izejas kodu

qcacld-3.0: Pass ol_context to all BMI API's

Remove ol_softc as argument in BMI API's and pass ol_context
as the default argument.

Change-Id: I66b5daed047c7efe9a01cac30d2d0e7427aab2cd
CRs-Fixed: 967765
Komal Seelam 9 gadi atpakaļ
vecāks
revīzija
5a6e508834

+ 2 - 2
core/bmi/inc/bmi.h

@@ -42,11 +42,11 @@ CDF_STATUS ol_cds_init(cdf_device_t cdf_dev, void *hif_ctx);
 void ol_cds_free(void);
 
 #ifdef HIF_PCI
-void bmi_cleanup(struct ol_softc *scn);
+void bmi_cleanup(struct ol_context *scn);
 CDF_STATUS bmi_done(struct ol_context *ol_ctx);
 CDF_STATUS bmi_download_firmware(struct ol_context *ol_ctx);
 #else
-static inline void bmi_cleanup(struct ol_softc *scn)
+static inline void bmi_cleanup(struct ol_context *scn)
 {
 	return;
 }

+ 35 - 28
core/bmi/src/bmi.c

@@ -39,27 +39,28 @@
 
 static CDF_STATUS
 bmi_command_test(uint32_t command, uint32_t address, uint8_t *data,
-				uint32_t length, struct ol_softc *scn)
+				uint32_t length, struct ol_context *ol_ctx)
 {
 	switch (command) {
 	case BMI_NO_COMMAND:
-		return bmi_no_command(scn);
+		return bmi_no_command(ol_ctx);
 	case BMI_WRITE_MEMORY:
-		return bmi_write_memory(address, data, length, scn);
+		return bmi_write_memory(address, data, length, ol_ctx);
 	case BMI_READ_MEMORY:
-		return bmi_read_memory(address, data, length, scn);
+		return bmi_read_memory(address, data, length, ol_ctx);
 	case BMI_EXECUTE:
-		return bmi_execute(address, (uint32_t *)data, scn);
+		return bmi_execute(address, (uint32_t *)data, ol_ctx);
 	default:
 		break;
 	}
 	return CDF_STATUS_SUCCESS;
 }
 
-CDF_STATUS bmi_init(struct ol_softc *scn)
+CDF_STATUS bmi_init(struct ol_context *ol_ctx)
 {
 	struct bmi_info *info;
-	cdf_device_t cdf_dev = cds_get_context(CDF_MODULE_ID_CDF_DEVICE);
+	struct ol_softc *scn = ol_ctx->scn;
+	cdf_device_t cdf_dev = ol_ctx->cdf_dev;
 
 	if (!scn) {
 		BMI_ERR("Invalid scn Context");
@@ -102,10 +103,11 @@ end:
 	return CDF_STATUS_E_NOMEM;
 }
 
-void bmi_cleanup(struct ol_softc *scn)
+void bmi_cleanup(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	struct bmi_info *info = hif_get_bmi_ctx(scn);
-	cdf_device_t cdf_dev = cds_get_context(CDF_MODULE_ID_CDF_DEVICE);
+	cdf_device_t cdf_dev = ol_ctx->cdf_dev;
 
 	if (!cdf_dev->dev) {
 		BMI_ERR("%s: Invalid Device Pointer", __func__);
@@ -131,23 +133,24 @@ void bmi_cleanup(struct ol_softc *scn)
 CDF_STATUS bmi_done(struct ol_context *ol_ctx)
 {
 	CDF_STATUS status = CDF_STATUS_SUCCESS;
-	struct ol_softc *scn = ol_ctx->scn;
 
 	if (NO_BMI)
 		return status;
 
-	status = bmi_done_local(scn);
+	status = bmi_done_local(ol_ctx);
 
 	if (status != CDF_STATUS_SUCCESS)
 		BMI_ERR("BMI_DONE Failed status:%d", status);
+
 	return status;
 }
 
 CDF_STATUS
 bmi_get_target_info(struct bmi_target_info *targ_info,
-						struct ol_softc *scn)
+						struct ol_context *ol_ctx)
 {
 	int status = 0;
+	struct ol_softc *scn = ol_ctx->scn;
 	struct bmi_info *info = hif_get_bmi_ctx(scn);
 	uint8_t *bmi_cmd_buff = info->bmi_cmd_buff;
 	uint8_t *bmi_rsp_buff = info->bmi_rsp_buff;
@@ -214,23 +217,24 @@ CDF_STATUS bmi_download_firmware(struct ol_context *ol_ctx)
 		BMI_DBG("ret:%d writing data:%s\n", ret, data);
 		address = bmi_get_test_addr();
 
-		if (bmi_init(scn) != CDF_STATUS_SUCCESS) {
+		if (bmi_init(ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_WARN("BMI_INIT Failed; No Memory!");
 			goto end;
 		}
-		bmi_command_test(BMI_NO_COMMAND, address, data, 9, scn);
-		bmi_command_test(BMI_WRITE_MEMORY, address, data, 9, scn);
-		bmi_command_test(BMI_READ_MEMORY, address, out, 9, scn);
+		bmi_command_test(BMI_NO_COMMAND, address, data, 9, ol_ctx);
+		bmi_command_test(BMI_WRITE_MEMORY, address, data, 9, ol_ctx);
+		bmi_command_test(BMI_READ_MEMORY, address, out, 9, ol_ctx);
 		BMI_DBG("Output:%s", out);
 	}
 #endif
 end:
-	return bmi_firmware_download(scn);
+	return bmi_firmware_download(ol_ctx);
 }
 
-CDF_STATUS
-bmi_read_soc_register(uint32_t address, uint32_t *param, struct ol_softc *scn)
+CDF_STATUS bmi_read_soc_register(uint32_t address, uint32_t *param,
+						struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t offset, param_len;
@@ -272,9 +276,10 @@ bmi_read_soc_register(uint32_t address, uint32_t *param, struct ol_softc *scn)
 	return CDF_STATUS_SUCCESS;
 }
 
-CDF_STATUS
-bmi_write_soc_register(uint32_t address, uint32_t param, struct ol_softc *scn)
+CDF_STATUS bmi_write_soc_register(uint32_t address, uint32_t param,
+					struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t offset;
@@ -316,13 +321,14 @@ bmi_write_soc_register(uint32_t address, uint32_t param, struct ol_softc *scn)
 }
 
 CDF_STATUS
-bmilz_data(uint8_t *buffer, uint32_t length, struct ol_softc *scn)
+bmilz_data(uint8_t *buffer, uint32_t length, struct ol_context *ol_ctx)
 {
 	uint32_t cid;
 	int status;
 	uint32_t offset;
 	uint32_t remaining, txlen;
 	const uint32_t header = sizeof(cid) + sizeof(length);
+	struct ol_softc *scn = ol_ctx->scn;
 	struct bmi_info *info = hif_get_bmi_ctx(scn);
 	uint8_t *bmi_cmd_buff = info->bmi_cmd_buff;
 	cdf_dma_addr_t cmd = info->bmi_cmd_da;
@@ -437,11 +443,12 @@ bmi_sign_stream_start(uint32_t address,
 }
 
 CDF_STATUS
-bmilz_stream_start(uint32_t address, struct ol_softc *scn)
+bmilz_stream_start(uint32_t address, struct ol_context *ol_ctx)
 {
 	uint32_t cid;
 	int status;
 	uint32_t offset;
+	struct ol_softc *scn = ol_ctx->scn;
 	struct bmi_info *info = hif_get_bmi_ctx(scn);
 	uint8_t *bmi_cmd_buff = info->bmi_cmd_buff;
 	cdf_dma_addr_t cmd = info->bmi_cmd_da;
@@ -476,14 +483,14 @@ bmilz_stream_start(uint32_t address, struct ol_softc *scn)
 
 CDF_STATUS
 bmi_fast_download(uint32_t address, uint8_t *buffer,
-		  uint32_t length, struct ol_softc *scn)
+		  uint32_t length, struct ol_context *ol_ctx)
 {
 	CDF_STATUS status = CDF_STATUS_E_FAILURE;
 	uint32_t last_word = 0;
 	uint32_t last_word_offset = length & ~0x3;
 	uint32_t unaligned_bytes = length & 0x3;
 
-	status = bmilz_stream_start(address, scn);
+	status = bmilz_stream_start(address, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS)
 		goto end;
 
@@ -492,20 +499,20 @@ bmi_fast_download(uint32_t address, uint8_t *buffer,
 		cdf_mem_copy(&last_word, &buffer[last_word_offset],
 						unaligned_bytes);
 
-	status = bmilz_data(buffer, last_word_offset, scn);
+	status = bmilz_data(buffer, last_word_offset, ol_ctx);
 
 	if (status != CDF_STATUS_SUCCESS)
 		goto end;
 
 	if (unaligned_bytes)
-		status = bmilz_data((uint8_t *) &last_word, 4, scn);
+		status = bmilz_data((uint8_t *) &last_word, 4, ol_ctx);
 
 	if (status != CDF_STATUS_SUCCESS)
 		/*
 		 * Close compressed stream and open a new (fake) one.
 		 * This serves mainly to flush Target caches.
 		 */
-		status = bmilz_stream_start(0x00, scn);
+		status = bmilz_stream_start(0x00, ol_ctx);
 end:
 	return status;
 }

+ 17 - 13
core/bmi/src/bmi_1.c

@@ -32,8 +32,9 @@
 
 CDF_STATUS
 bmi_read_memory(uint32_t address,
-		uint8_t *buffer, uint32_t length, struct ol_softc *scn)
+		uint8_t *buffer, uint32_t length, struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t offset;
@@ -105,10 +106,10 @@ bmi_read_memory(uint32_t address,
 	return CDF_STATUS_SUCCESS;
 }
 
-CDF_STATUS
-bmi_write_memory(uint32_t address,
-		 uint8_t *buffer, uint32_t length, struct ol_softc *scn)
+CDF_STATUS bmi_write_memory(uint32_t address, uint8_t *buffer, uint32_t length,
+						struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t offset;
@@ -181,8 +182,9 @@ bmi_write_memory(uint32_t address,
 }
 
 CDF_STATUS
-bmi_execute(uint32_t address, A_UINT32 *param, struct ol_softc *scn)
+bmi_execute(uint32_t address, A_UINT32 *param, struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t offset;
@@ -236,28 +238,29 @@ bmi_execute(uint32_t address, A_UINT32 *param, struct ol_softc *scn)
 }
 
 inline CDF_STATUS
-bmi_no_command(struct ol_softc *scn)
+bmi_no_command(struct ol_context *ol_ctx)
 {
 	return CDF_STATUS_SUCCESS;
 }
 
 CDF_STATUS
-bmi_firmware_download(struct ol_softc *scn)
+bmi_firmware_download(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	CDF_STATUS status;
 	struct bmi_target_info targ_info;
 	struct hif_target_info *tgt_info = hif_get_target_info_handle(scn);
 
 	cdf_mem_zero(&targ_info, sizeof(targ_info));
 	/* Initialize BMI */
-	status = bmi_init(scn);
+	status = bmi_init(ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("BMI Initialization Failed err:%d", status);
 		return status;
 	}
 
 	/* Get target information */
-	status = bmi_get_target_info(&targ_info, scn);
+	status = bmi_get_target_info(&targ_info, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("BMI Target Info get failed: status:%d", status);
 		return status;
@@ -267,25 +270,26 @@ bmi_firmware_download(struct ol_softc *scn)
 	tgt_info->target_version = targ_info.target_ver;
 
 	/* Configure target */
-	status = ol_configure_target(scn);
+	status = ol_configure_target(ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("BMI Configure Target Failed status:%d", status);
 		return status;
 	}
 
-	status = ol_download_firmware(scn);
+	status = ol_download_firmware(ol_ctx);
 	if (status != CDF_STATUS_SUCCESS)
 		BMI_ERR("BMI Download Firmware Failed Status:%d", status);
 
 	return status;
 }
 
-CDF_STATUS bmi_done_local(struct ol_softc *scn)
+CDF_STATUS bmi_done_local(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	int status;
 	uint32_t cid;
 	struct bmi_info *info;
-	cdf_device_t cdf_dev = cds_get_context(CDF_MODULE_ID_CDF_DEVICE);
+	cdf_device_t cdf_dev = ol_ctx->cdf_dev;
 	cdf_dma_addr_t cmd, rsp;
 
 	if (!scn) {

+ 23 - 16
core/bmi/src/bmi_2.c

@@ -34,8 +34,9 @@
 #define BMI_LOAD_IMAGE              18
 
 CDF_STATUS
-bmi_no_command(struct ol_softc *scn)
+bmi_no_command(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t length;
@@ -77,8 +78,9 @@ bmi_no_command(struct ol_softc *scn)
 }
 
 CDF_STATUS
-bmi_done_local(struct ol_softc *scn)
+bmi_done_local(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t length;
@@ -86,7 +88,7 @@ bmi_done_local(struct ol_softc *scn)
 	struct bmi_info *info = hif_get_bmi_ctx(scn);
 	uint8_t *bmi_cmd_buff = info->bmi_cmd_buff;
 	uint8_t *bmi_rsp_buff = info->bmi_rsp_buff;
-	cdf_device_t cdf_dev = cds_get_context(CDF_MODULE_ID_CDF_DEVICE);
+	cdf_device_t cdf_dev = ol_ctx->cdf_dev;
 	cdf_dma_addr_t cmd = info->bmi_cmd_da;
 	cdf_dma_addr_t rsp = info->bmi_rsp_da;
 
@@ -145,7 +147,7 @@ CDF_STATUS
 bmi_write_memory(uint32_t address,
 		uint8_t *buffer,
 		uint32_t length,
-		struct ol_softc *scn)
+		struct ol_context *ol_ctx)
 {
 	uint32_t cid;
 	int status;
@@ -156,6 +158,7 @@ bmi_write_memory(uint32_t address,
 	const uint32_t header = sizeof(cid) + sizeof(address) + sizeof(length);
 	uint8_t aligned_buffer[BMI_DATASZ_MAX];
 	uint8_t *src;
+	struct ol_softc *scn = ol_ctx->scn;
 	struct bmi_info *info = hif_get_bmi_ctx(scn);
 	uint8_t *bmi_cmd_buff = info->bmi_cmd_buff;
 	uint8_t *bmi_rsp_buff = info->bmi_rsp_buff;
@@ -222,8 +225,9 @@ bmi_write_memory(uint32_t address,
 
 CDF_STATUS
 bmi_read_memory(uint32_t address, uint8_t *buffer,
-		uint32_t length, struct ol_softc *scn)
+		uint32_t length, struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint8_t ret = 0;
@@ -296,9 +300,9 @@ bmi_read_memory(uint32_t address, uint8_t *buffer,
 }
 
 CDF_STATUS
-bmi_execute(uint32_t address, uint32_t *param,
-					struct ol_softc *scn)
+bmi_execute(uint32_t address, uint32_t *param, struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t cid;
 	int status;
 	uint32_t length;
@@ -343,13 +347,14 @@ bmi_execute(uint32_t address, uint32_t *param,
 
 static CDF_STATUS
 bmi_load_image(dma_addr_t address,
-		uint32_t size, struct ol_softc *scn)
+		uint32_t size, struct ol_context *ol_ctx)
 {
 	uint32_t cid;
 	CDF_STATUS status;
 	uint32_t offset;
 	uint32_t length;
 	uint8_t ret = 0;
+	struct ol_softc *scn = ol_ctx->scn;
 	struct bmi_info *info = hif_get_bmi_ctx(scn);
 	uint8_t *bmi_cmd_buff = info->bmi_cmd_buff;
 	uint8_t *bmi_rsp_buff = info->bmi_rsp_buff;
@@ -405,8 +410,9 @@ bmi_load_image(dma_addr_t address,
 	return CDF_STATUS_SUCCESS;
 }
 
-static CDF_STATUS bmi_enable(struct ol_softc *scn)
+static CDF_STATUS bmi_enable(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	struct bmi_target_info targ_info;
 	struct image_desc_info image_desc_info;
 	CDF_STATUS status;
@@ -426,7 +432,7 @@ static CDF_STATUS bmi_enable(struct ol_softc *scn)
 		return CDF_STATUS_NOT_INITIALIZED;
 	}
 
-	status = bmi_get_target_info(&targ_info, scn);
+	status = bmi_get_target_info(&targ_info, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS)
 			return status;
 
@@ -443,7 +449,7 @@ static CDF_STATUS bmi_enable(struct ol_softc *scn)
 
 	status = bmi_load_image(image_desc_info.bdata_addr,
 				image_desc_info.bdata_size,
-				scn);
+				ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Load board data failed! status:%d", status);
 		return status;
@@ -451,27 +457,28 @@ static CDF_STATUS bmi_enable(struct ol_softc *scn)
 
 	status = bmi_load_image(image_desc_info.fw_addr,
 				image_desc_info.fw_size,
-				scn);
+				ol_ctx);
 	if (status != CDF_STATUS_SUCCESS)
 		BMI_ERR("Load fw image failed! status:%d", status);
 
 	return status;
 }
 
-CDF_STATUS bmi_firmware_download(struct ol_softc *scn)
+CDF_STATUS bmi_firmware_download(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	CDF_STATUS status;
 
 	if (NO_BMI)
 		return CDF_STATUS_SUCCESS;
 
-	status = bmi_init(scn);
+	status = bmi_init(ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("BMI_INIT Failed status:%d", status);
 		goto end;
 	}
 
-	status = bmi_enable(scn);
+	status = bmi_enable(ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("BMI_ENABLE failed status:%d\n", status);
 		goto err_bmi_enable;
@@ -479,7 +486,7 @@ CDF_STATUS bmi_firmware_download(struct ol_softc *scn)
 
 	return status;
 err_bmi_enable:
-	bmi_cleanup(scn);
+	bmi_cleanup(ol_ctx);
 end:
 	return status;
 }

+ 18 - 20
core/bmi/src/i_bmi.h

@@ -134,25 +134,23 @@ struct ol_context {
 };
 
 CDF_STATUS bmi_execute(uint32_t address, uint32_t *param,
-						struct ol_softc *scn);
-CDF_STATUS bmi_init(struct ol_softc *scn);
-CDF_STATUS bmi_no_command(struct ol_softc *scn);
-CDF_STATUS bmi_read_memory(uint32_t address,
-		uint8_t *buffer, uint32_t length, struct ol_softc *scn);
-CDF_STATUS bmi_write_memory(uint32_t address,
-		uint8_t *buffer, uint32_t length, struct ol_softc *scn);
-CDF_STATUS bmi_fast_download(uint32_t address,
-		uint8_t *buffer, uint32_t length, struct ol_softc *scn);
+				struct ol_context *ol_ctx);
+CDF_STATUS bmi_init(struct ol_context *ol_ctx);
+CDF_STATUS bmi_no_command(struct ol_context *ol_ctx);
+CDF_STATUS bmi_read_memory(uint32_t address, uint8_t *buffer, uint32_t length,
+					struct ol_context *ol_ctx);
+CDF_STATUS bmi_write_memory(uint32_t address, uint8_t *buffer, uint32_t length,
+					struct ol_context *ol_ctx);
+CDF_STATUS bmi_fast_download(uint32_t address, uint8_t *buffer, uint32_t length,
+					struct ol_context *ol_ctx);
 CDF_STATUS bmi_read_soc_register(uint32_t address,
-				uint32_t *param, struct ol_softc *scn);
-CDF_STATUS bmi_write_soc_register(uint32_t address,
-				uint32_t param, struct ol_softc *scn);
-CDF_STATUS bmi_get_target_info(
-		struct bmi_target_info *targ_info, struct ol_softc *scn);
-
-CDF_STATUS bmi_firmware_download(struct ol_softc *scn);
-CDF_STATUS bmi_done_local(struct ol_softc *scn);
-
-CDF_STATUS ol_download_firmware(struct ol_softc *scn);
-CDF_STATUS ol_configure_target(struct ol_softc *scn);
+				uint32_t *param, struct ol_context *ol_ctx);
+CDF_STATUS bmi_write_soc_register(uint32_t address, uint32_t param,
+					struct ol_context *ol_ctx);
+CDF_STATUS bmi_get_target_info(struct bmi_target_info *targ_info,
+				struct ol_context *ol_ctx);
+CDF_STATUS bmi_firmware_download(struct ol_context *ol_ctx);
+CDF_STATUS bmi_done_local(struct ol_context *ol_ctx);
+CDF_STATUS ol_download_firmware(struct ol_context *ol_ctx);
+CDF_STATUS ol_configure_target(struct ol_context *ol_ctx);
 #endif

+ 85 - 81
core/bmi/src/ol_fw.c

@@ -132,9 +132,11 @@ end:
 }
 #endif
 
-static int __ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
+static int
+__ol_transfer_bin_file(struct ol_context *ol_ctx, ATH_BIN_FILE file,
 				  uint32_t address, bool compressed)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	int status = EOK;
 	const char *filename = NULL;
 	const struct firmware *fw_entry;
@@ -324,7 +326,7 @@ static int __ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
 		/* Determine where in Target RAM to write Board Data */
 		bmi_read_memory(HOST_INTEREST_ITEM_ADDRESS(target_type,
 							   hi_board_ext_data),
-				(uint8_t *) &board_ext_address, 4, scn);
+				(uint8_t *) &board_ext_address, 4, ol_ctx);
 		BMI_INFO("Board extended Data download address: 0x%x",
 		       board_ext_address);
 
@@ -340,7 +342,7 @@ static int __ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
 			status = bmi_write_memory(board_ext_address,
 					(uint8_t *)(temp_eeprom +
 					board_data_size),
-					board_ext_data_size, scn);
+					board_ext_data_size, ol_ctx);
 
 			if (status != EOK)
 				goto end;
@@ -350,7 +352,7 @@ static int __ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
 			bmi_write_memory(
 				HOST_INTEREST_ITEM_ADDRESS(target_type,
 					hi_board_ext_data_config),
-					(uint8_t *)&param, 4, scn);
+					(uint8_t *)&param, 4, ol_ctx);
 
 			fw_entry_size = board_data_size;
 		}
@@ -397,16 +399,16 @@ static int __ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
 	if (compressed) {
 		status = bmi_fast_download(address,
 					   (uint8_t *) fw_entry->data + bin_off,
-					   bin_len, scn);
+					   bin_len, ol_ctx);
 	} else {
 		if (file == ATH_BOARD_DATA_FILE && fw_entry->data) {
 			status = bmi_write_memory(address,
 						  (uint8_t *) temp_eeprom,
-						  fw_entry_size, scn);
+						  fw_entry_size, ol_ctx);
 		} else {
 			status = bmi_write_memory(address,
 						  (uint8_t *) fw_entry->data
-						  + bin_off, bin_len, scn);
+						  + bin_off, bin_len, ol_ctx);
 		}
 	}
 
@@ -426,16 +428,16 @@ static int __ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
 	if (compressed) {
 		status = bmi_fast_download(address,
 					   (uint8_t *) fw_entry->data,
-					   fw_entry_size, scn);
+					   fw_entry_size, ol_ctx);
 	} else {
 		if (file == ATH_BOARD_DATA_FILE && fw_entry->data) {
 			status = bmi_write_memory(address,
 						  (uint8_t *) temp_eeprom,
-						  fw_entry_size, scn);
+						  fw_entry_size, ol_ctx);
 		} else {
 			status = bmi_write_memory(address,
 						  (uint8_t *) fw_entry->data,
-						  fw_entry_size, scn);
+						  fw_entry_size, ol_ctx);
 		}
 	}
 #endif /* QCA_SIGNED_SPLIT_BINARY_SUPPORT */
@@ -458,7 +460,8 @@ end:
 	return status;
 }
 
-static int ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
+static int
+ol_transfer_bin_file(struct ol_context *ol_ctx, ATH_BIN_FILE file,
 				uint32_t address, bool compressed)
 {
 	int ret;
@@ -468,7 +471,7 @@ static int ol_transfer_bin_file(struct ol_softc *scn, ATH_BIN_FILE file,
 	cnss_lock_pm_sem();
 #endif
 
-	ret = __ol_transfer_bin_file(scn, file, address, compressed);
+	ret = __ol_transfer_bin_file(ol_ctx, file, address, compressed);
 
 #ifdef CONFIG_CNSS
 	cnss_release_pm_sem();
@@ -667,13 +670,14 @@ void ol_target_failure(void *instance, CDF_STATUS status)
 	return;
 }
 
-CDF_STATUS ol_configure_target(struct ol_softc *scn)
+CDF_STATUS ol_configure_target(struct ol_context *ol_ctx)
 {
 	uint32_t param;
 #ifdef CONFIG_CNSS
 	struct cnss_platform_cap cap;
 	int ret;
 #endif
+	struct ol_softc *scn = ol_ctx->scn;
 	struct hif_target_info *tgt_info = hif_get_target_info_handle(scn);
 	struct hif_config_info *ini_cfg = hif_get_ini_handle(scn);
 	uint32_t target_type = tgt_info->target_type;
@@ -683,7 +687,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 	if (bmi_write_memory(
 		hif_hia_item_address(target_type,
 		offsetof(struct host_interest_s, hi_app_host_interest)),
-		(uint8_t *) &param, 4, scn) != CDF_STATUS_SUCCESS) {
+		(uint8_t *) &param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 		BMI_ERR("bmi_write_memory for htc version failed");
 		return CDF_STATUS_E_FAILURE;
 	}
@@ -692,7 +696,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 	{
 		if (bmi_read_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag)),
-			(uint8_t *)&param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *)&param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("bmi_read_memory for setting fwmode failed");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -714,7 +718,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 		if (bmi_write_memory(
 			hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag)),
-			(uint8_t *)&param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *)&param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("BMI WRITE for setting fwmode failed");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -725,7 +729,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 		/* set the firmware to disable CDC max perf WAR */
 		if (bmi_read_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag2)),
-			(uint8_t *) &param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *) &param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("BMI READ for setting cdc max perf failed");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -734,7 +738,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 		if (bmi_write_memory(
 			hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag2)),
-			(uint8_t *)&param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *)&param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("setting cdc max perf failed");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -750,7 +754,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 	if (!ret && cap.cap_flag & CNSS_HAS_EXTERNAL_SWREG) {
 		if (bmi_read_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag2)),
-			(uint8_t *)&param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *)&param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("bmi_read_memory for setting"
 				"external SWREG failed");
 			return CDF_STATUS_E_FAILURE;
@@ -760,7 +764,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 		if (bmi_write_memory(
 			hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag2)),
-			(uint8_t *)&param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *)&param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("BMI WRITE for setting external SWREG fail");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -771,7 +775,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 	if (ini_cfg->enable_lpass_support) {
 		if (bmi_read_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag2)),
-			(uint8_t *) &param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *) &param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("BMI READ:Setting LPASS Support failed");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -780,7 +784,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 		if (bmi_write_memory(
 			hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag2)),
-			(uint8_t *)&param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *)&param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("BMI_READ for setting LPASS Support fail");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -797,7 +801,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 		if (bmi_write_memory(
 			hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_be)),
-			(uint8_t *) &param, 4, scn) != CDF_STATUS_SUCCESS) {
+			(uint8_t *) &param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 			BMI_ERR("setting host CPU BE mode failed");
 			return CDF_STATUS_E_FAILURE;
 		}
@@ -808,7 +812,7 @@ CDF_STATUS ol_configure_target(struct ol_softc *scn)
 	if (bmi_write_memory(
 		hif_hia_item_address(target_type,
 		offsetof(struct host_interest_s, hi_fw_swap)),
-		(uint8_t *) &param, 4, scn) != CDF_STATUS_SUCCESS) {
+		(uint8_t *) &param, 4, ol_ctx) != CDF_STATUS_SUCCESS) {
 		BMI_ERR("BMI WRITE failed setting FW data/desc swap flags");
 		return CDF_STATUS_E_FAILURE;
 	}
@@ -888,8 +892,9 @@ CDF_STATUS ol_fw_populate_clk_settings(A_refclk_speed_t refclk,
 	return CDF_STATUS_SUCCESS;
 }
 
-CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
+CDF_STATUS ol_patch_pll_switch(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	CDF_STATUS status = CDF_STATUS_SUCCESS;
 	uint32_t addr = 0;
 	uint32_t reg_val = 0;
@@ -926,7 +931,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	}
 
 	addr = (RTC_SOC_BASE_ADDRESS | EFUSE_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read EFUSE Addr");
 		goto end;
@@ -943,7 +948,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 1---- */
 	reg_val = 0;
 	addr = (RTC_SOC_BASE_ADDRESS | BB_PLL_CONFIG_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read PLL_CONFIG Addr");
 		goto end;
@@ -953,14 +958,14 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	reg_val &= ~(BB_PLL_CONFIG_FRAC_MASK | BB_PLL_CONFIG_OUTDIV_MASK);
 	reg_val |= (BB_PLL_CONFIG_FRAC_SET(clock_s.wlan_pll.rnfrac) |
 		    BB_PLL_CONFIG_OUTDIV_SET(clock_s.wlan_pll.outdiv));
-	status = bmi_write_soc_register(addr, reg_val, scn);
+	status = bmi_write_soc_register(addr, reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write PLL_CONFIG Addr");
 		goto end;
 	}
 
 	reg_val = 0;
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read back PLL_CONFIG Addr");
 		goto end;
@@ -970,7 +975,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 2---- */
 	reg_val = 0;
 	addr = (RTC_WMAC_BASE_ADDRESS | WLAN_PLL_SETTLE_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read PLL_SETTLE Addr");
 		goto end;
@@ -979,14 +984,14 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 
 	reg_val &= ~WLAN_PLL_SETTLE_TIME_MASK;
 	reg_val |= WLAN_PLL_SETTLE_TIME_SET(clock_s.pll_settling_time);
-	status = bmi_write_soc_register(addr, reg_val, scn);
+	status = bmi_write_soc_register(addr, reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write PLL_SETTLE Addr");
 		goto end;
 	}
 
 	reg_val = 0;
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read back PLL_SETTLE Addr");
 		goto end;
@@ -996,7 +1001,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 3---- */
 	reg_val = 0;
 	addr = (RTC_SOC_BASE_ADDRESS | SOC_CORE_CLK_CTRL_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read CLK_CTRL Addr");
 		goto end;
@@ -1005,14 +1010,14 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 
 	reg_val &= ~SOC_CORE_CLK_CTRL_DIV_MASK;
 	reg_val |= SOC_CORE_CLK_CTRL_DIV_SET(1);
-	status = bmi_write_soc_register(addr, reg_val, scn);
+	status = bmi_write_soc_register(addr, reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write CLK_CTRL Addr");
 		goto end;
 	}
 
 	reg_val = 0;
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read back CLK_CTRL Addr");
 		goto end;
@@ -1022,7 +1027,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 4----- */
 	mem_val = 1;
 	status = bmi_write_memory(cmnos_core_clk_div_addr,
-				  (uint8_t *) &mem_val, 4, scn);
+				  (uint8_t *) &mem_val, 4, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write CLK_DIV Addr");
 		goto end;
@@ -1031,7 +1036,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 5----- */
 	reg_val = 0;
 	addr = (RTC_WMAC_BASE_ADDRESS | WLAN_PLL_CONTROL_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read PLL_CTRL Addr");
 		goto end;
@@ -1043,14 +1048,14 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	reg_val |= (WLAN_PLL_CONTROL_REFDIV_SET(clock_s.wlan_pll.refdiv) |
 		    WLAN_PLL_CONTROL_DIV_SET(clock_s.wlan_pll.div) |
 		    WLAN_PLL_CONTROL_NOPWD_SET(1));
-	status = bmi_write_soc_register(addr, reg_val, scn);
+	status = bmi_write_soc_register(addr, reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write PLL_CTRL Addr");
 		goto end;
 	}
 
 	reg_val = 0;
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read back PLL_CTRL Addr");
 		goto end;
@@ -1062,7 +1067,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	do {
 		reg_val = 0;
 		status = bmi_read_soc_register((RTC_WMAC_BASE_ADDRESS |
-				RTC_SYNC_STATUS_OFFSET), &reg_val, scn);
+				RTC_SYNC_STATUS_OFFSET), &reg_val, ol_ctx);
 		if (status != CDF_STATUS_SUCCESS) {
 			BMI_ERR("Failed to read RTC_SYNC_STATUS Addr");
 			goto end;
@@ -1072,7 +1077,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 7------- */
 	reg_val = 0;
 	addr = (RTC_WMAC_BASE_ADDRESS | WLAN_PLL_CONTROL_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read PLL_CTRL Addr for CTRL_BYPASS");
 		goto end;
@@ -1081,14 +1086,14 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 
 	reg_val &= ~WLAN_PLL_CONTROL_BYPASS_MASK;
 	reg_val |= WLAN_PLL_CONTROL_BYPASS_SET(0);
-	status = bmi_write_soc_register(addr, reg_val, scn);
+	status = bmi_write_soc_register(addr, reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write PLL_CTRL Addr for CTRL_BYPASS");
 		goto end;
 	}
 
 	reg_val = 0;
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read back PLL_CTRL Addr for CTRL_BYPASS");
 		goto end;
@@ -1099,7 +1104,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	do {
 		reg_val = 0;
 		status = bmi_read_soc_register((RTC_WMAC_BASE_ADDRESS |
-				RTC_SYNC_STATUS_OFFSET), &reg_val, scn);
+				RTC_SYNC_STATUS_OFFSET), &reg_val, ol_ctx);
 		if (status != CDF_STATUS_SUCCESS) {
 			BMI_ERR("Failed to read SYNC_STATUS Addr");
 			goto end;
@@ -1109,7 +1114,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 9-------- */
 	reg_val = 0;
 	addr = (RTC_SOC_BASE_ADDRESS | SOC_CPU_CLOCK_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read CPU_CLK Addr");
 		goto end;
@@ -1118,14 +1123,14 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 
 	reg_val &= ~SOC_CPU_CLOCK_STANDARD_MASK;
 	reg_val |= SOC_CPU_CLOCK_STANDARD_SET(1);
-	status = bmi_write_soc_register(addr, reg_val, scn);
+	status = bmi_write_soc_register(addr, reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write CPU_CLK Addr");
 		goto end;
 	}
 
 	reg_val = 0;
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read back CPU_CLK Addr");
 		goto end;
@@ -1135,7 +1140,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 10------- */
 	reg_val = 0;
 	addr = (RTC_WMAC_BASE_ADDRESS | WLAN_PLL_CONTROL_OFFSET);
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read PLL_CTRL Addr for NOPWD");
 		goto end;
@@ -1143,13 +1148,13 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	BMI_DBG("Step 10a: %8X", reg_val);
 
 	reg_val &= ~WLAN_PLL_CONTROL_NOPWD_MASK;
-	status = bmi_write_soc_register(addr, reg_val, scn);
+	status = bmi_write_soc_register(addr, reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write PLL_CTRL Addr for NOPWD");
 		goto end;
 	}
 	reg_val = 0;
-	status = bmi_read_soc_register(addr, &reg_val, scn);
+	status = bmi_read_soc_register(addr, &reg_val, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to read back PLL_CTRL Addr for NOPWD");
 		goto end;
@@ -1159,7 +1164,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 	/* ------Step 11------- */
 	mem_val = 1;
 	status = bmi_write_memory(cmnos_cpu_pll_init_done_addr,
-				  (uint8_t *) &mem_val, 4, scn);
+				  (uint8_t *) &mem_val, 4, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write PLL_INIT Addr");
 		goto end;
@@ -1167,7 +1172,7 @@ CDF_STATUS ol_patch_pll_switch(struct ol_softc *scn)
 
 	mem_val = TARGET_CPU_FREQ;
 	status = bmi_write_memory(cmnos_cpu_speed_addr,
-				  (uint8_t *) &mem_val, 4, scn);
+				  (uint8_t *) &mem_val, 4, ol_ctx);
 	if (status != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to write CPU_SPEED Addr");
 		goto end;
@@ -1181,15 +1186,11 @@ end:
 /* AXI Start Address */
 #define TARGET_ADDR (0xa0000)
 
-void ol_transfer_codeswap_struct(struct ol_softc *scn)
+void ol_transfer_codeswap_struct(struct ol_context *ol_ctx)
 {
 	struct codeswap_codeseg_info wlan_codeswap;
 	CDF_STATUS rv;
 
-	if (!scn) {
-		BMI_ERR("%s: ol_softc is null", __func__);
-		return;
-	}
 	if (cnss_get_codeswap_struct(&wlan_codeswap)) {
 		BMI_ERR("%s: failed to get codeswap structure", __func__);
 		return;
@@ -1197,7 +1198,7 @@ void ol_transfer_codeswap_struct(struct ol_softc *scn)
 
 	rv = bmi_write_memory(TARGET_ADDR,
 			      (uint8_t *) &wlan_codeswap, sizeof(wlan_codeswap),
-			      scn);
+			      ol_ctx);
 
 	if (rv != CDF_STATUS_SUCCESS) {
 		BMI_ERR("Failed to Write 0xa0000 to Target");
@@ -1207,8 +1208,9 @@ void ol_transfer_codeswap_struct(struct ol_softc *scn)
 }
 #endif
 
-CDF_STATUS ol_download_firmware(struct ol_softc *scn)
+CDF_STATUS ol_download_firmware(struct ol_context *ol_ctx)
 {
+	struct ol_softc *scn = ol_ctx->scn;
 	uint32_t param, address = 0;
 	int status = !EOK;
 	CDF_STATUS ret;
@@ -1230,14 +1232,16 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 	/* Determine where in Target RAM to write Board Data */
 	bmi_read_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_board_data)),
-			(uint8_t *)&address, 4, scn);
+			(uint8_t *)&address, 4, ol_ctx);
 
 	if (!address) {
 		address = AR6004_REV5_BOARD_DATA_ADDRESS;
 		BMI_DBG("%s: Target address not known! Using 0x%x",
 						__func__, address);
 	}
-	ret = ol_patch_pll_switch(scn);
+
+	ret = ol_patch_pll_switch(ol_ctx);
+
 	if (ret != CDF_STATUS_SUCCESS) {
 		BMI_ERR("pll switch failed. status %d", ret);
 		return ret;
@@ -1245,7 +1249,7 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 
 	if (bmi_ctx->cal_in_flash) {
 		/* Write EEPROM or Flash data to Target RAM */
-		status = ol_transfer_bin_file(scn, ATH_FLASH_FILE,
+		status = ol_transfer_bin_file(ol_ctx, ATH_FLASH_FILE,
 						address, false);
 	}
 
@@ -1256,11 +1260,11 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 			hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s,
 				hi_board_data_initialized)),
-				(uint8_t *) &param, 4, scn);
+				(uint8_t *) &param, 4, ol_ctx);
 	} else {
 		/* Flash is either not available or invalid */
-		if (ol_transfer_bin_file
-			    (scn, ATH_BOARD_DATA_FILE, address, false) != EOK) {
+		if (ol_transfer_bin_file(ol_ctx, ATH_BOARD_DATA_FILE, address,
+							false) != EOK) {
 			return -1;
 		}
 
@@ -1270,7 +1274,7 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 			hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s,
 				hi_board_data_initialized)),
-				(uint8_t *) &param, 4, scn);
+				(uint8_t *) &param, 4, ol_ctx);
 
 		/* Transfer One Time Programmable data */
 		address = BMI_SEGMENTED_WRITE_ADDR;
@@ -1278,26 +1282,26 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 				__func__, address);
 
 #ifdef CONFIG_CNSS
-		ol_transfer_codeswap_struct(scn);
+		ol_transfer_codeswap_struct(ol_ctx);
 #endif
-		status = ol_transfer_bin_file(scn, ATH_OTP_FILE,
+		status = ol_transfer_bin_file(ol_ctx, ATH_OTP_FILE,
 						address, true);
 		/* Execute the OTP code only if entry found and downloaded */
 		if (status == EOK) {
 			param = 0;
 #ifndef FEATURE_BMI_2
-			bmi_execute(address, &param, scn);
+			bmi_execute(address, &param, ol_ctx);
 #endif
 		} else if (status < 0) {
 			return status;
 		}
 	}
 
-	if (ol_transfer_bin_file(scn, ATH_SETUP_FILE,
+	if (ol_transfer_bin_file(ol_ctx, ATH_SETUP_FILE,
 		BMI_SEGMENTED_WRITE_ADDR, true) == EOK) {
 		param = 0;
 #ifndef FEATURE_BMI_2
-		bmi_execute(address, &param, scn);
+		bmi_execute(address, &param, ol_ctx);
 #endif
 	}
 
@@ -1305,20 +1309,20 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 	 * TODO point to target specific files in runtime
 	 */
 	address = BMI_SEGMENTED_WRITE_ADDR;
-	if (ol_transfer_bin_file(scn, ATH_FIRMWARE_FILE,
+	if (ol_transfer_bin_file(ol_ctx, ATH_FIRMWARE_FILE,
 				address, true) != EOK) {
 		return -1;
 	}
 
 	/* Apply the patches */
 	if (ol_check_dataset_patch(scn, &address)) {
-		if ((ol_transfer_bin_file(scn, ATH_PATCH_FILE, address, false))
+		if ((ol_transfer_bin_file(ol_ctx, ATH_PATCH_FILE, address, false))
 		    != EOK) {
 			return -1;
 		}
 		bmi_write_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_dset_list_head)),
-			(uint8_t *) &address, 4, scn);
+			(uint8_t *) &address, 4, ol_ctx);
 	}
 
 	if (ini_cfg->enable_uart_print ||
@@ -1343,11 +1347,11 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 
 		bmi_write_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_dbg_uart_txpin)),
-			(uint8_t *)&param, 4, scn);
+			(uint8_t *)&param, 4, ol_ctx);
 		param = 1;
 		bmi_write_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_serial_enable)),
-			(uint8_t *)&param, 4, scn);
+			(uint8_t *)&param, 4, ol_ctx);
 	} else {
 		/*
 		 * Explicitly setting UART prints to zero as target turns it on
@@ -1356,18 +1360,18 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 		param = 0;
 		bmi_write_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_serial_enable)),
-			(uint8_t *)&param, 4, scn);
+			(uint8_t *)&param, 4, ol_ctx);
 	}
 
 	if (ini_cfg->enable_fw_log) {
 		bmi_read_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag)),
-			(uint8_t *)&param, 4, scn);
+			(uint8_t *)&param, 4, ol_ctx);
 
 		param &= ~(HI_OPTION_DISABLE_DBGLOG);
 		bmi_write_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag)),
-			(uint8_t *)&param, 4, scn);
+			(uint8_t *)&param, 4, ol_ctx);
 	} else {
 		/*
 		 * Explicitly setting fwlog prints to zero as target turns it on
@@ -1375,12 +1379,12 @@ CDF_STATUS ol_download_firmware(struct ol_softc *scn)
 		 */
 		bmi_read_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag)),
-			(uint8_t *)&param, 4, scn);
+			(uint8_t *)&param, 4, ol_ctx);
 
 		param |= HI_OPTION_DISABLE_DBGLOG;
 		bmi_write_memory(hif_hia_item_address(target_type,
 			offsetof(struct host_interest_s, hi_option_flag)),
-			(uint8_t *) &param, 4, scn);
+			(uint8_t *) &param, 4, ol_ctx);
 	}
 
 	return status;

+ 1 - 1
core/cds/src/cds_api.c

@@ -461,7 +461,7 @@ err_htc_close:
 	}
 
 err_bmi_close:
-	bmi_cleanup(scn);
+	bmi_cleanup(ol_ctx);
 
 err_sched_close:
 	cds_sched_close(gp_cds_context);

+ 1 - 1
core/hdd/src/wlan_hdd_ftm.c

@@ -382,7 +382,7 @@ err_htc_close:
 	}
 
 err_bmi_close:
-	bmi_cleanup(pHifContext);
+	bmi_cleanup(ol_ctx);
 #endif /* QCA_WIFI_FTM */
 
 err_sched_close:

+ 3 - 3
core/utils/epping/src/epping_main.c

@@ -232,7 +232,7 @@ int epping_enable(struct device *parent_dev)
 	if (bmi_download_firmware(ol_ctx)) {
 		CDF_TRACE(CDF_MODULE_ID_CDF, CDF_TRACE_LEVEL_FATAL,
 			  "%s: BMI failed to download target", __func__);
-		bmi_cleanup(scn);
+		bmi_cleanup(ol_ctx);
 		return -1;
 	}
 #endif
@@ -249,7 +249,7 @@ int epping_enable(struct device *parent_dev)
 	if (!p_cds_context->htc_ctx) {
 		CDF_TRACE(CDF_MODULE_ID_CDF, CDF_TRACE_LEVEL_FATAL,
 			  "%s: Failed to Create HTC", __func__);
-		bmi_cleanup(scn);
+		bmi_cleanup(ol_ctx);
 		return -1;
 	}
 	pEpping_ctx->HTCHandle =
@@ -306,6 +306,6 @@ int epping_enable(struct device *parent_dev)
 error_end:
 	htc_destroy(p_cds_context->htc_ctx);
 	p_cds_context->htc_ctx = NULL;
-	bmi_cleanup(scn);
+	bmi_cleanup(ol_ctx);
 	return -1;
 }