summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyungwoo Yang <hyungwoo.yang@intel.com>2018-10-17 20:39:32 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-11-21 22:49:04 -0800
commit9901ce650c6121e8badcb04ebbd65be0fe8c4570 (patch)
treec4a4c732d5aaf9b22c2a0bdb8646d16a6e76ff00
parentd0571edba7a64f6a229cbec5218735a6f1d602b9 (diff)
downloadchrome-ec-9901ce650c6121e8badcb04ebbd65be0fe8c4570.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/1288032 Commit-Ready: Caveh Jalali <caveh@google.com> Tested-by: Hyungwoo Yang <hyungwoo.yang@intel.com> Reviewed-by: Caveh Jalali <caveh@google.com> Reviewed-by: Hyungwoo Yang <hyungwoo.yang@intel.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);