浏览代码

ipa: test: Fixes for Olympic

Various fixes to get the in-kernel tests running and pass
on Olympic.

Change-Id: I6850a35c488321fd216ef5ac8024d2c70a6c51d1
Signed-off-by: Ilia Lin <[email protected]>
Ilia Lin 4 年之前
父节点
当前提交
591e1c6870
共有 1 个文件被更改,包括 6 次插入4 次删除
  1. 6 4
      drivers/platform/msm/ipa/test/ipa_test_mhi.c

+ 6 - 4
drivers/platform/msm/ipa/test/ipa_test_mhi.c

@@ -1783,7 +1783,7 @@ static int ipa_mhi_test_create_aggr_open_frame(void)
 	struct sk_buff *skb;
 	int rc;
 	int i;
-	u32 aggr_state_active;
+	u64 aggr_state_active;
 	enum ipa_hw_type ipa_ver;
 
 	IPA_UT_LOG("Entry\n");
@@ -1844,11 +1844,13 @@ static int ipa_mhi_test_create_aggr_open_frame(void)
 	ipa_ver = ipa_get_hw_type();
 	if (ipa_ver >= IPA_HW_v5_0) {
 		aggr_state_active =
-			ipahal_read_ep_reg(IPA_STATE_AGGR_ACTIVE_n,
-				test_mhi_ctx->cons_hdl);
+			(u64)ipahal_read_ep_reg_n(IPA_STATE_AGGR_ACTIVE_n, 0,
+						test_mhi_ctx->cons_hdl) |
+			(((u64)ipahal_read_ep_reg_n(IPA_STATE_AGGR_ACTIVE_n, 1,
+						test_mhi_ctx->cons_hdl)) << 32);
 	} else {
 		aggr_state_active =
-			ipahal_read_reg(IPA_STATE_AGGR_ACTIVE);
+			(u64)ipahal_read_reg(IPA_STATE_AGGR_ACTIVE);
 	}
 
 	IPA_UT_LOG("IPA_STATE_AGGR_ACTIVE  0x%x\n", aggr_state_active);