Pārlūkot izejas kodu

msm: ipa: fix aqc msi address

fix aqc msi address type to build succesfully for
msm and mdm. add gsi offset to returned address.

Change-Id: I36ed6f20daeff90837d5b022c0b51a0c3ea07dec
Signed-off-by: Amir Levy <[email protected]>
Amir Levy 4 gadi atpakaļ
vecāks
revīzija
930033d715
2 mainītis faili ar 5 papildinājumiem un 4 dzēšanām
  1. 4 3
      drivers/platform/msm/gsi/gsi.c
  2. 1 1
      drivers/platform/msm/gsi/gsi.h

+ 4 - 3
drivers/platform/msm/gsi/gsi.c

@@ -4812,7 +4812,7 @@ static union __packed gsi_channel_scratch __gsi_update_mhi_channel_scratch(
 	return scr;
 }
 
-int gsi_query_aqc_msi_addr(unsigned long chan_hdl, u32 *addr)
+int gsi_query_aqc_msi_addr(unsigned long chan_hdl, phys_addr_t *addr)
 {
 	if (!gsi_ctx) {
 		pr_err("%s:%d gsi context not allocated\n", __func__, __LINE__);
@@ -4830,8 +4830,9 @@ int gsi_query_aqc_msi_addr(unsigned long chan_hdl, u32 *addr)
 		return -GSI_STATUS_UNSUPPORTED_OP;
 	}
 
-	*addr = gsihal_get_reg_nk_ofst(GSI_EE_n_GSI_CH_k_CNTXT_8,
-		gsi_ctx->per.ee, chan_hdl);
+	*addr = (phys_addr_t)(gsi_ctx->per.phys_addr +
+		gsihal_get_reg_nk_ofst(GSI_EE_n_GSI_CH_k_CNTXT_8,
+			gsi_ctx->per.ee, chan_hdl));
 
 	return 0;
 }

+ 1 - 1
drivers/platform/msm/gsi/gsi.h

@@ -2258,7 +2258,7 @@ int gsi_enable_flow_control_ee(unsigned int chan_idx, unsigned int ee,
 *
 * @Return gsi_status
 */
-int gsi_query_aqc_msi_addr(unsigned long chan_hdl, u32 *addr);
+int gsi_query_aqc_msi_addr(unsigned long chan_hdl, phys_addr_t *addr);
 
 /**
 * gsi_dump_ch_info - channel information.