Files
OpenCellular/include/watchdog.h
Jeff Andersen 9e7fdc239c Include <stdint.h> in include/watchdog.h.
Previously, the int types used in the watchdog_trace() function
signature were not being included properly.

BUG=none
BRANCH=none
TEST=make buildall -j

Change-Id: Ib4666285c314cbdb101e3ba602e4f27540a1346c
Reviewed-on: https://chromium-review.googlesource.com/448345
Commit-Ready: Jeff Andersen <jeffandersen@google.com>
Tested-by: Jeff Andersen <jeffandersen@google.com>
Reviewed-by: Carl Hamilton <carlh@chromium.org>
Reviewed-by: Vadim Bendebury <vbendeb@chromium.org>
2017-03-02 22:02:23 -08:00

47 lines
1.2 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 driver */
#ifndef __CROS_EC_WATCHDOG_H
#define __CROS_EC_WATCHDOG_H
#include <stdint.h>
/**
* Initialize the watchdog.
*
* This will cause the CPU to reboot if it has been more than 2 watchdog
* periods since watchdog_reload() has been called.
*/
int watchdog_init(void);
/**
* Display a trace with information about an expired watchdog timer
*
* This shows the location in the code where the expiration happened.
* Usually this helps locate a loop which is blocking execution of the
* watchdog task.
*
* @param excep_lr Value of lr to indicate caller return
* @param excep_sp Value of sp to indicate caller task id
*/
void watchdog_trace(uint32_t excep_lr, uint32_t excep_sp);
/**
* Watchdog has not been tickled recently warning. This function should be
* called when the watchdog is close to firing.
*/
void watchdog_warning_irq(void);
/* Reload the watchdog counter */
#ifdef CONFIG_WATCHDOG
void watchdog_reload(void);
#else
static inline void watchdog_reload(void) { }
#endif
#endif /* __CROS_EC_WATCHDOG_H */