diff options
author | Furquan Shaikh <furquan@google.com> | 2016-07-25 17:00:07 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2016-07-28 00:40:03 +0200 |
commit | 0d9cd92efb8b1bf2f9ef75d241040fb6955f4930 (patch) | |
tree | a3091130c04a9231bb0852cae48f5b8dfd3fc986 /src/mainboard/google/veyron | |
parent | c66a02634c1d4b0f7929cb9f4c510fff56db0ca6 (diff) |
chromeos: Clean up elog handling
1. Currenty, boot reason is being added to elog only for some
ARM32/ARM64 platforms. Change this so that boot reason is logged by
default in elog for all devices which have CHROMEOS selected.
2. Add a new option to select ELOG_WATCHDOG_RESET for the devices that
want to add details about watchdog reset in elog. This requires a
special region WATCHDOG to be present in the memlayout.
3. Remove calls to elog add boot reason and watchdog reset from
mainboards.
BUG=chrome-os-partner:55639
Change-Id: I91ff5b158cfd2a0749e7fefc498d8659f7e6aa91
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/15897
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/mainboard/google/veyron')
-rw-r--r-- | src/mainboard/google/veyron/mainboard.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mainboard/google/veyron/mainboard.c b/src/mainboard/google/veyron/mainboard.c index cbc82e932d..a6bbf881e3 100644 --- a/src/mainboard/google/veyron/mainboard.c +++ b/src/mainboard/google/veyron/mainboard.c @@ -108,10 +108,6 @@ static void mainboard_init(device_t dev) configure_emmc(); configure_codec(); configure_vop(); - - elog_init(); - elog_add_watchdog_reset(); - elog_add_boot_reason(); } static void mainboard_enable(device_t dev) |