Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c9cc3b5e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa3: change FnR prints to low"

parents df9a07e8 512417ee
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -823,13 +823,13 @@ int __ipa_commit_rt_v3(enum ipa_ip_type ip)
	IPA_DUMP_BUFF(nhash_hdr.base, nhash_hdr.phys_base, nhash_hdr.size);

	if (hash_bdy.size) {
		IPADBG("Hashable BODY\n");
		IPADBG_LOW("Hashable BODY\n");
		IPA_DUMP_BUFF(hash_bdy.base,
			hash_bdy.phys_base, hash_bdy.size);
	}

	if (nhash_bdy.size) {
		IPADBG("Non-Hashable BODY\n");
		IPADBG_LOW("Non-Hashable BODY\n");
		IPA_DUMP_BUFF(nhash_bdy.base,
			nhash_bdy.phys_base, nhash_bdy.size);
	}
@@ -1849,7 +1849,7 @@ int ipa3_rt_read_tbl_from_hw(u32 tbl_idx,
	u8 rule_size;
	void *ipa_sram_mmio;

	IPADBG("tbl_idx=%d ip_type=%d hashable=%d\n",
	IPADBG_LOW("tbl_idx=%d ip_type=%d hashable=%d\n",
		tbl_idx, ip_type, hashable);

	if (ip_type == IPA_IP_v4 && tbl_idx >= IPA_MEM_PART(v4_rt_num_index)) {
@@ -1899,7 +1899,7 @@ int ipa3_rt_read_tbl_from_hw(u32 tbl_idx,
				tbl_idx * IPA_HW_TBL_HDR_WIDTH;
	}

	IPADBG("tbl_entry_in_hdr_ofst=0x%llx\n", tbl_entry_in_hdr_ofst);
	IPADBG_LOW("tbl_entry_in_hdr_ofst=0x%llx\n", tbl_entry_in_hdr_ofst);

	tbl_entry_in_hdr = ipa_sram_mmio + tbl_entry_in_hdr_ofst;

@@ -1932,7 +1932,7 @@ int ipa3_rt_read_tbl_from_hw(u32 tbl_idx,

	rule_idx = 0;
	while (rule_idx < *num_entry) {
		IPADBG("*((u64 *)hdr)=0x%llx\n", *((u64 *)hdr));
		IPADBG_LOW("*((u64 *)hdr)=0x%llx\n", *((u64 *)hdr));
		if (*((u64 *)hdr) == 0)
			break;

@@ -1949,9 +1949,9 @@ int ipa3_rt_read_tbl_from_hw(u32 tbl_idx,

		ipa3_generate_eq_from_hw_rule(&entry[rule_idx].eq_attrib, buf,
			&rule_size);
		IPADBG("rule_size=%d\n", rule_size);
		IPADBG_LOW("rule_size=%d\n", rule_size);
		hdr = (void *)(buf + rule_size);
		IPADBG("hdr=0x%p\n", hdr);
		IPADBG_LOW("hdr=0x%p\n", hdr);
		rule_idx++;
	}