summaryrefslogtreecommitdiffstats
path: root/src/occ/timer/timer.h
blob: b1bcd14fd998105de3489aa92456dee2cf336103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/******************************************************************************
// @file timer.h
// @brief OCC watchdog timer functions and defines.
*/
/******************************************************************************
 *
 *       @page ChangeLogs Change Logs
 *       @section timer.h TIMER.H
 *       @verbatim
 *
 *   Flag    Def/Fea    Userid    Date        Description
 *   ------- ---------- --------  ----------  ----------------------------------
 *   @pb007             pbavari   09/27/2011  Created
 *   @pb008             pbavari   10/04/2011  Combined watchdog reset tasks
 *   @rc003             rickylie  02/03/2012  Verify & Clean Up OCC Headers & Comments
 *   @th022             thallet   10/03/2012  Moved task flags to RTLS files
 *   @sb002  908891     sbroyles  12/09/2013  FFDC updates
 *   @sb022  910404     sbroyles  01/06/2014  Extend watchdog timeout
 *
 *  @endverbatim
 *
 *///*************************************************************************/

#ifndef _timer_h
#define _timer_h

//*************************************************************************
// Includes
//*************************************************************************
#include <common_types.h>        // defines for uint8_t,uint3_t..etc
#include <rtls.h>                // For RTL task
#include <errl.h>                // For errlHndl_t
#include <ssx_app_cfg.h>

//*************************************************************************
// Externs
//*************************************************************************

//*************************************************************************
// Macros
//*************************************************************************
// @sb022 Macro to switch watchdog on and off
#define ENABLE_WDOG G_wdog_enabled = TRUE
#define DISABLE_WDOG G_wdog_enabled = FALSE
#define WDOG_ENABLED (G_wdog_enabled)

//*************************************************************************
// Defines/Enums
//*************************************************************************

//*************************************************************************
// Structures
//*************************************************************************

//*************************************************************************
// Globals
//*************************************************************************
// @sb022 Variable to switch watchdog on and off
extern bool G_wdog_enabled;

//*************************************************************************
// Function Prototypes
//*************************************************************************
// Initialize watchdog timers
void initWatchdogTimers() INIT_SECTION;

// Task to reset PPC405 watchdog timer and reset OCB timer
void task_poke_watchdogs( struct task * i_self );

//*************************************************************************
// Functions
//*************************************************************************

#endif // _timer_h


OpenPOWER on IntegriCloud