summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyungwoo Yang <hyungwoo.yang@intel.com>2018-10-17 20:39:32 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2018-11-21 21:05:11 +0000
commit8fbae8e3bfb0358be7c3de0c0a09e3ee52b9f5a4 (patch)
tree9c235ed652a00b5031dd49750a1bffacd96d4b8a
parenta21d1842310e7adbdb2148f9fb76f1bc6b6e0355 (diff)
downloadchrome-ec-8fbae8e3bfb0358be7c3de0c0a09e3ee52b9f5a4.tar.gz
ISH: remove sending MNG_HC_FW_READY
remove sending MNG_HC_FW_READY from task. the sending MNG_HC_FW_READY should be done by IPC task that supports Host Command. BUG=b:79676054 BRANCH=none TEST=tested on Atlas board Change-Id: Iea2d2864c67763c8c8e18b520c5a776b5ce469fb Reviewed-on: https://chromium-review.googlesource.com/c/1347016 Reviewed-by: Caveh Jalali <caveh@google.com> Commit-Queue: Caveh Jalali <caveh@google.com> Tested-by: Caveh Jalali <caveh@google.com>
-rw-r--r--core/minute-ia/task.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/core/minute-ia/task.c b/core/minute-ia/task.c
index c96bde706f..f094b2ec56 100644
--- a/core/minute-ia/task.c
+++ b/core/minute-ia/task.c
@@ -15,7 +15,6 @@
#include "util.h"
#include "task_defs.h"
#include "interrupts.h"
-#include "ipc.h"
#include "hpet.h"
/* Console output macros */
@@ -438,14 +437,6 @@ void task_enable_all_tasks(void)
/* BUG: task_start() was likely already called */
start_called = 1;
- /* The host OS driver should wait till the FW completes all hook inits.
- * Otherwise, FW may fail to respond to host commands or crash when
- * not fully initialized. This MNG (management) type IPC message sent
- * asynchronously from the FW indicates completion of initialization.
- */
- CPUTS("*** MNG FW ready ****\n");
- REG32(IPC_ISH2HOST_DOORBELL) = IPC_BUILD_MNG_MSG(0x8, 1);
-
interrupt_enable();
/* Reschedule the highest priority task. */
__schedule(0, 0);