summaryrefslogtreecommitdiff
path: root/power
diff options
context:
space:
mode:
authorPiotr Pawliczek <pawliczek@chromium.org>2022-12-03 18:04:05 +0000
committerJonathon Murphy <jpmurphy@google.com>2022-12-03 18:12:03 +0000
commit868032324fcc03c1e1b33a4eae619a053f688a62 (patch)
treef3414c4ed2bf2a3cdd49d7a463bcc489ac646f81 /power
parentc8325ba18b9f4d5b1f3f3bc739e83d8f591308cf (diff)
downloadchrome-ec-868032324fcc03c1e1b33a4eae619a053f688a62.tar.gz
Revert "ec: Support logging system boot time info"
This reverts commit c8325ba18b9f4d5b1f3f3bc739e83d8f591308cf. Reason for revert: broke at least 9 cq builds (https://ci.chromium.org/ui/p/chromeos/builders/cq/cq-orchestrator/b8795833246203447793/overview) Original change's description: > ec: Support logging system boot time info > > This CL add support logging system boot time and hostcommand to get > boot time info. > EC logs elapsed time (in micro second) info since boot for different > signal events,that can be used to calculate system boot time in cold > boot and warm boot scenarios. > > Below are the events when EC logs time info > > ARAIL EC turns on A-RAIL > RSMRST EC releases RSMRST# > ESPIRST ESPIRST received > PLTRST_LOW PLTRST# asserted > PLTRST_HIGH PLTRST# deasserted > EC_CUR_TIME EC current time > cnt increments on every warm reboot and reset to 0 on > cold reboot > > BUG=b:249163956 > BRANCH=none > TEST='ectool boottime' AP console command is used to fetch data > 'reboot' on AP console to trigger warm reboot > 'apshutdown' on EC console to trigger cold reboot > > Signed-off-by: Rajesh Kumar <rajesh3.kumar@intel.com> > Change-Id: I15fedbde252e0452270ef0e3fd4391bf624169f1 > Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3794612 > Reviewed-by: Boris Mittelberg <bmbm@google.com> > Code-Coverage: Zoss <zoss-cl-coverage@prod.google.com> Bug: b:249163956 Change-Id: Ie83026c4a3a38c3dd24522901233f06e03430a54 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4077335 Reviewed-by: Jonathon Murphy <jpmurphy@google.com> Commit-Queue: Piotr Pawliczek <pawliczek@chromium.org> Tested-by: Piotr Pawliczek <pawliczek@chromium.org>
Diffstat (limited to 'power')
-rw-r--r--power/alderlake_slg4bd44540.c3
-rw-r--r--power/icelake.c4
-rw-r--r--power/intel_x86.c3
3 files changed, 0 insertions, 10 deletions
diff --git a/power/alderlake_slg4bd44540.c b/power/alderlake_slg4bd44540.c
index 09ba6f01e6..ccc260c289 100644
--- a/power/alderlake_slg4bd44540.c
+++ b/power/alderlake_slg4bd44540.c
@@ -16,7 +16,6 @@
#include "power.h"
#include "power/alderlake_slg4bd44540.h"
#include "power/intel_x86.h"
-#include "system_boot_time.h"
#include "timer.h"
/*
@@ -257,8 +256,6 @@ enum power_state power_handle_state(enum power_state state)
case POWER_G3S5:
GPIO_SET_LEVEL(GPIO_EN_S5_RAILS, 1);
- update_ap_boot_time(ARAIL);
-
if (power_wait_signals(IN_PGOOD_ALL_CORE))
break;
diff --git a/power/icelake.c b/power/icelake.c
index 7d60e26f40..e81a6f6942 100644
--- a/power/icelake.c
+++ b/power/icelake.c
@@ -13,7 +13,6 @@
#include "power.h"
#include "power/intel_x86.h"
#include "power_button.h"
-#include "system_boot_time.h"
#include "task.h"
#include "timer.h"
@@ -281,9 +280,6 @@ enum power_state power_handle_state(enum power_state state)
*/
/* Turn on the PP3300_DSW rail. */
GPIO_SET_LEVEL(GPIO_EN_PP3300_A, 1);
-
- update_ap_boot_time(ARAIL);
-
if (power_wait_signals(IN_PGOOD_ALL_CORE))
break;
diff --git a/power/intel_x86.c b/power/intel_x86.c
index 223942f897..4fa3aa3c8e 100644
--- a/power/intel_x86.c
+++ b/power/intel_x86.c
@@ -17,7 +17,6 @@
#include "power/intel_x86.h"
#include "power_button.h"
#include "system.h"
-#include "system_boot_time.h"
#include "task.h"
#include "util.h"
#include "vboot.h"
@@ -584,8 +583,6 @@ void common_intel_x86_handle_rsmrst(enum power_state state)
gpio_set_level(GPIO_PCH_RSMRST_L, rsmrst_in);
- update_ap_boot_time(RSMRST);
-
CPRINTS("Pass through GPIO_PG_EC_RSMRST_ODL: %d", rsmrst_in);
board_after_rsmrst(rsmrst_in);