mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-11 10:25:20 +00:00
For debug, in common code let's log the watchdog PC and task id as our SW panic params. BUG=chromium:790006 BRANCH=none TEST=manually test scarlet rev2 from a1-a3, b1-b2: (a1) Add 'while(1);' in button ISR (a2) Boot and press the button (a3) When watchdog is triggeried, check with 'panicinfo' that saved R5 is the PC for button ISR. (b1) 'crash watchdog' in EC console (b2) Check with 'panicinfo' that CONSOLE task id is saved in EXCEPTION and PC is saved in R5. Change-Id: I64d2fcf594dd24b0951e002ab8e80ebcac2d1def Signed-off-by: Philip Chen <philipchen@google.com> Reviewed-on: https://chromium-review.googlesource.com/803618 Commit-Ready: Philip Chen <philipchen@chromium.org> Tested-by: Philip Chen <philipchen@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Watchdog common code */
|
|
|
|
#include "common.h"
|
|
#include "panic.h"
|
|
#include "task.h"
|
|
#include "timer.h"
|
|
#include "watchdog.h"
|
|
|
|
void __keep watchdog_trace(uint32_t excep_lr, uint32_t excep_sp)
|
|
{
|
|
uint32_t psp;
|
|
uint32_t *stack;
|
|
|
|
asm("mrs %0, psp" : "=r"(psp));
|
|
if ((excep_lr & 0xf) == 1) {
|
|
/* we were already in exception context */
|
|
stack = (uint32_t *)excep_sp;
|
|
} else {
|
|
/* we were in task context */
|
|
stack = (uint32_t *)psp;
|
|
}
|
|
|
|
panic_set_reason(PANIC_SW_WATCHDOG, stack[6],
|
|
(excep_lr & 0xf) == 1 ? 0xff : task_get_current());
|
|
|
|
panic_printf("### WATCHDOG PC=%08x / LR=%08x / pSP=%08x ",
|
|
stack[6], stack[5], psp);
|
|
if ((excep_lr & 0xf) == 1)
|
|
panic_puts("(exc) ###\n");
|
|
else
|
|
panic_printf("(task %d) ###\n", task_get_current());
|
|
|
|
/* If we are blocked in a high priority IT handler, the following debug
|
|
* messages might not appear but they are useless in that situation. */
|
|
timer_print_info();
|
|
task_print_list();
|
|
}
|