OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [io/] [watchdog/] [current/] [src/] [watchdog.cxx] - Blame information for rev 786

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//      io/watchdog/watchdog.cxx
4
//
5
//      Watchdog common code
6
//
7
//==========================================================================
8
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
9
// -------------------------------------------                              
10
// This file is part of eCos, the Embedded Configurable Operating System.   
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2009 Free Software Foundation, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under    
14
// the terms of the GNU General Public License as published by the Free     
15
// Software Foundation; either version 2 or (at your option) any later      
16
// version.                                                                 
17
//
18
// eCos is distributed in the hope that it will be useful, but WITHOUT      
19
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or    
20
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License    
21
// for more details.                                                        
22
//
23
// You should have received a copy of the GNU General Public License        
24
// along with eCos; if not, write to the Free Software Foundation, Inc.,    
25
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.            
26
//
27
// As a special exception, if other files instantiate templates or use      
28
// macros or inline functions from this file, or you compile this file      
29
// and link it with other works to produce a work based on this file,       
30
// this file does not by itself cause the resulting work to be covered by   
31
// the GNU General Public License. However the source code for this file    
32
// must still be made available in accordance with section (3) of the GNU   
33
// General Public License v2.                                               
34
//
35
// This exception does not invalidate any other reasons why a work based    
36
// on this file might be covered by the GNU General Public License.         
37
// -------------------------------------------                              
38
// ####ECOSGPLCOPYRIGHTEND####                                              
39
//==========================================================================
40
//#####DESCRIPTIONBEGIN####
41
//
42
// Author(s):    nickg
43
// Contributors: nickg
44
// Date:         1999-02-18
45
// Purpose:      Watchdog class implementation
46
//
47
//####DESCRIPTIONEND####
48
//
49
//==========================================================================
50
 
51
#include <pkgconf/system.h>             // system configuration file
52
#include <pkgconf/watchdog.h>           // configuration for this package
53
 
54
#include <cyg/infra/cyg_trac.h>         // tracing macros
55
#include <cyg/infra/cyg_ass.h>          // assertion macros
56
 
57
#include <cyg/hal/drv_api.h>            // for locking
58
 
59
#include <cyg/io/watchdog.hxx>          // watchdog API
60
#include <cyg/io/watchdog.h>            // watchdog c-api
61
 
62
// -------------------------------------------------------------------------
63
// Statics
64
 
65
// A static pointer to the single system defined watchdog device.
66
Cyg_Watchdog Cyg_Watchdog::watchdog CYGBLD_ATTRIB_INIT_PRI( CYG_INIT_DEV_WATCHDOG );
67
 
68
// -------------------------------------------------------------------------
69
// Constructor
70
 
71
 
72
Cyg_Watchdog::Cyg_Watchdog()
73
{
74
    CYG_REPORT_FUNCTION();
75
 
76
#ifndef CYGSEM_WATCHDOG_RESETS_ON_TIMEOUT    
77
    action_list         = 0;
78
#endif
79
 
80
    // HW driver initialization. This must set the watchdog resolution.
81
    init_hw();
82
 
83
    CYG_REPORT_RETURN();
84
}
85
 
86
// -------------------------------------------------------------------------
87
// Return reset resolution
88
 
89
cyg_uint64
90
Cyg_Watchdog::get_resolution()
91
{
92
    return resolution;
93
}
94
 
95
#ifndef CYGSEM_WATCHDOG_RESETS_ON_TIMEOUT
96
// -------------------------------------------------------------------------
97
// Trigger the watchdog as if the timer had expired. This should be called
98
// from the driver's ISR.
99
 
100
void
101
Cyg_Watchdog::trigger()
102
{
103
    CYG_REPORT_FUNCTION();
104
 
105
    cyg_drv_dsr_lock();
106
 
107
    Cyg_Watchdog_Action *act = action_list;
108
 
109
    while( 0 != act )
110
    {
111
        act->action( act->data );
112
 
113
        act = act->next;
114
    }
115
 
116
    cyg_drv_dsr_unlock();
117
 
118
    CYG_REPORT_RETURN();
119
}
120
 
121
// -------------------------------------------------------------------------
122
// Register an action routine that will be called when the timer
123
// triggers.
124
 
125
void
126
Cyg_Watchdog::install_action( Cyg_Watchdog_Action *action )
127
{
128
    CYG_REPORT_FUNCTION();
129
 
130
    cyg_drv_dsr_lock();
131
 
132
    action->next = action_list;
133
    action_list = action;
134
 
135
    cyg_drv_dsr_unlock();
136
 
137
    CYG_REPORT_RETURN();
138
}
139
 
140
// -------------------------------------------------------------------------
141
// Deregister a previously registered action routine.
142
 
143
void
144
Cyg_Watchdog::uninstall_action( Cyg_Watchdog_Action *action )
145
{
146
    CYG_REPORT_FUNCTION();
147
 
148
    cyg_drv_dsr_lock();
149
 
150
    Cyg_Watchdog_Action **act_ptr = &action_list;
151
 
152
    while( 0 != *act_ptr )
153
    {
154
        Cyg_Watchdog_Action *a = *act_ptr;
155
 
156
        if( a == action )
157
        {
158
            *act_ptr = a->next;
159
            break;
160
        }
161
        act_ptr = &a->next;
162
    }
163
 
164
    cyg_drv_dsr_unlock();
165
 
166
    CYG_REPORT_RETURN();
167
}
168
 
169
#endif // CYGSEM_WATCHDOG_RESETS_ON_TIMEOUT
170
 
171
// -------------------------------------------------------------------------
172
// Implementation of the C-api
173
 
174
externC void
175
watchdog_start(void)
176
{
177
  Cyg_Watchdog::watchdog.start();
178
}
179
 
180
externC void
181
watchdog_reset(void)
182
{
183
  Cyg_Watchdog::watchdog.reset();
184
}
185
 
186
externC cyg_uint64
187
watchdog_get_resolution(void)
188
{
189
  return Cyg_Watchdog::watchdog.get_resolution();
190
}
191
 
192
// -------------------------------------------------------------------------
193
// EOF io/watchdog/watchdog.cxx

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.