summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajesh Chauhan <rajeshc@qca.qualcomm.com>2013-11-05 14:26:13 -0800
committerMadan Mohan Koyyalamudi <mkoyyala@qca.qualcomm.com>2013-11-14 20:12:47 -0800
commit0eef8ee3a38446486098afe36e59bdc0061a7632 (patch)
treeea4b34acce93f5438dcc8fdef1d31fd1d42c6546
parent3f81f8c7e9f95a25324257524d9ade9189e6d7c3 (diff)
qcacld-2.0: Add fields in host_interest to debug dynamic memory usage
Add three fields in host_interest to debug dynamic memory usage. Change-Id: Id7a2fb80a12c902c6712898ec2baab44da7577d3 CRs-Fixed: 571505
-rw-r--r--CORE/SERVICES/COMMON/targaddrs.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/targaddrs.h b/CORE/SERVICES/COMMON/targaddrs.h
index f6722516a336..66492e75f807 100644
--- a/CORE/SERVICES/COMMON/targaddrs.h
+++ b/CORE/SERVICES/COMMON/targaddrs.h
@@ -257,7 +257,16 @@ PREPACK64 struct host_interest_s {
on the target processor.*/
/* Bit 1 -- TBD */
- A_UINT32 hi_fw_swap; /* 0x104 */
+ A_UINT32 hi_fw_swap; /* 0x104 */
+
+ /* global arenas pointer address, used by host driver debug */
+ A_UINT32 hi_dynamic_mem_arenas_addr; /* 0x108 */
+
+ /* allocated bytes of DRAM use by allocated */
+ A_UINT32 hi_dynamic_mem_allocated; /* 0x10C */
+
+ /* remaining bytes of DRAM */
+ A_UINT32 hi_dynamic_mem_remaining; /* 0x110 */
} POSTPACK64;