mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-07 16:11:43 +00:00
The registers.h file should only be included by code in the chip/ and board/ directories. Code outside those directories should not access chip-specific registers. (This change doesn't completely fix that, because common/extpower_usb.c uses STM32-specific regs, but we'll fix that in a separate CL.) BUG=chrome-os-partner:18343 BRANCH=none TEST=compile all platforms Change-Id: Ic499f56690c38663083423b0593800161a68e6e9 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/64382 Reviewed-by: Vic Yang <victoryang@chromium.org>
41 lines
1.0 KiB
C
41 lines
1.0 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 "uart.h"
|
|
#include "watchdog.h"
|
|
|
|
void 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_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();
|
|
}
|