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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [io/] [watchdog/] [v2_0/] [src/] [watchdog.cxx] - Blame information for rev 308

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
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 Red Hat, 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 version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//==========================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):    nickg
44
// Contributors: nickg
45
// Date:         1999-02-18
46
// Purpose:      Watchdog class implementation
47
//
48
//####DESCRIPTIONEND####
49
//
50
//==========================================================================
51
 
52
#include <pkgconf/system.h>             // system configuration file
53
#include <pkgconf/watchdog.h>           // configuration for this package
54
 
55
#include <cyg/infra/cyg_trac.h>         // tracing macros
56
#include <cyg/infra/cyg_ass.h>          // assertion macros
57
 
58
#include <cyg/hal/drv_api.h>            // for locking
59
 
60
#include <cyg/io/watchdog.hxx>          // watchdog API
61
 
62
// -------------------------------------------------------------------------
63
// Statics
64
 
65
// A static pointer to the single system defined watchdog device.
66
Cyg_Watchdog Cyg_Watchdog::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
// 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.