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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [devs/] [watchdog/] [h8300/] [h8300h/] [current/] [src/] [watchdog_h8300h.cxx] - Blame information for rev 847

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

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//      devs/watchdog/h8300/h83000/watchdog_h8300.cxx
4
//
5
//      Watchdog implementation for Hitachi H8/300H CPUs
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 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):    yoshinori sato
43
// Contributors: yoshinori sato
44
// Date:         2002-04-29
45
// Purpose:      Watchdog class implementation
46
// Description:  Contains an implementation of the Watchdog class for use
47
//               with the Hitachi H8/300H watchdog timer.
48
//
49
//####DESCRIPTIONEND####
50
//
51
//==========================================================================
52
 
53
#include <pkgconf/system.h>             // system configuration file
54
#include <pkgconf/watchdog.h>           // configuration for this package
55
 
56
#include <cyg/infra/cyg_trac.h>         // tracing macros
57
 
58
#include <cyg/hal/hal_arch.h>
59
#include <cyg/hal/hal_io.h>             // IO register access
60
#include <cyg/hal/mod_regs_wdt.h>       // watchdog register definitions
61
 
62
#include <cyg/io/watchdog.hxx>          // watchdog API
63
 
64
// -------------------------------------------------------------------------
65
// Constructor
66
 
67
void
68
Cyg_Watchdog::init_hw(void)
69
{
70
    CYG_REPORT_FUNCTION();
71
 
72
    // No hardware init needed.
73
 
74
    resolution          = CYGARC_WDT_PERIOD;
75
 
76
    CYG_REPORT_RETURN();
77
}
78
 
79
// -------------------------------------------------------------------------
80
// Start the watchdog running.
81
 
82
void
83
Cyg_Watchdog::start()
84
{
85
    CYG_REPORT_FUNCTION();
86
 
87
    //Stop WDT
88
    HAL_WRITE_UINT16(CYGARC_TCSR,CYGARC_TCSR_MAGIC);
89
    //Clear WDT Count
90
    HAL_WRITE_UINT16(CYGARC_TCSR,CYGARC_TCNT_MAGIC);
91
    //Start WDT
92
    HAL_WRITE_UINT16(CYGARC_TCSR,CYGARC_TCSR_MAGIC|
93
                     CYGARC_WDT_WT|CYGARC_WDT_TME|CYGARC_WDT_CKS);
94
    CYG_REPORT_RETURN();
95
}
96
 
97
// -------------------------------------------------------------------------
98
// Reset watchdog timer. This needs to be called regularly to prevent
99
// the watchdog firing.
100
 
101
void
102
Cyg_Watchdog::reset()
103
{
104
    CYG_REPORT_FUNCTION();
105
 
106
    HAL_WRITE_UINT16(CYGARC_TCSR,CYGARC_TCNT_MAGIC);
107
 
108
    CYG_REPORT_RETURN();
109
}
110
 
111
// -------------------------------------------------------------------------
112
// EOF watchdog_h8300.cxx

powered by: WebSVN 2.1.0

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