summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVisweswara Tanuku <vtanuku@codeaurora.org>2018-11-27 14:55:51 +0530
committerVisweswara Tanuku <vtanuku@codeaurora.org>2018-11-27 14:59:25 +0530
commitb961a20640d2c13177372a4eba6160373b057dce (patch)
tree0c7934729000f63846bc879e7737f0b4b5365522
parente31bab2e5361296c9e5a04ed1fb4283dc73e31a8 (diff)
qcacld-2.0: CL 5955889 - Update fw common interface files
Add host interest SDIO_CRASH_DUMP_ENHANCEMENT_[HOST,FW] flags CRs-fixed: 865207 Change-Id: I6bc22bed81dd92511a71a24b777e4004b46386ff
-rw-r--r--CORE/SERVICES/COMMON/targaddrs.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/targaddrs.h b/CORE/SERVICES/COMMON/targaddrs.h
index d40192c8de62..bcb3b911b93d 100644
--- a/CORE/SERVICES/COMMON/targaddrs.h
+++ b/CORE/SERVICES/COMMON/targaddrs.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012-2015 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2015, 2018 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -371,6 +371,14 @@ PREPACK64 struct host_interest_s {
#define HI_OPTION_DBUART_SUPPORT 0x80 /* Enable uart debug support */
#define HT_OPTION_GPIO_WAKEUP_SUPPORT 0x200 /* GPIO wake up support */
+/*
+ * If both SDIO_CRASH_DUMP_ENHANCEMENT_HOST and SDIO_CRASH_DUMP_ENHANCEMENT_FW
+ * flags are set, then crashdump upload will be done using the BMI host/target
+ * communication channel.
+ */
+#define HI_OPTION_SDIO_CRASH_DUMP_ENHANCEMENT_HOST 0x400 /* HOST to support using BMI dump FW memory when hit assert */
+#define HI_OPTION_SDIO_CRASH_DUMP_ENHANCEMENT_FW 0x800 /* FW to support using BMI dump FW memory when hit assert */
+
#define GPIO_WAKEUP_ENABLED() \
(HOST_INTEREST->hi_option_flag2 & HT_OPTION_GPIO_WAKEUP_SUPPORT)