1 |
786 |
skrzyp |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// devs/watchdog/powerpc/mpc5xx/watchdog_mpc5xx.cxx
|
4 |
|
|
//
|
5 |
|
|
// Watchdog implementation for MPC5XX
|
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): Bob Koninckx
|
43 |
|
|
// Contributors: Bob Koninckx
|
44 |
|
|
// Date: 2003-05-18
|
45 |
|
|
// Purpose: Watchdog class implementation
|
46 |
|
|
// Description: Contains an implementation of the Watchdog class for use
|
47 |
|
|
// with the mpc5xx 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_io.h> // IO register access
|
59 |
|
|
#include <cyg/hal/hal_arch.h> // Register definitions
|
60 |
|
|
|
61 |
|
|
#include <cyg/io/watchdog.hxx> // watchdog API
|
62 |
|
|
|
63 |
|
|
// -------------------------------------------------------------------------
|
64 |
|
|
// MPC5xx SYPCR register bit definitions
|
65 |
|
|
#define MPC5XX_SYPCR_SWTC 0xffff0000
|
66 |
|
|
#define MPC5XX_SYPCR_SWP 0x00000001
|
67 |
|
|
#define MPC5XX_SYPCR_SWRI 0x00000002
|
68 |
|
|
#define MPC5XX_SYPCR_SWE 0x00000004
|
69 |
|
|
#define MPC5XX_SYPCR_SWF 0x00000008
|
70 |
|
|
|
71 |
|
|
// -------------------------------------------------------------------------
|
72 |
|
|
// Constructor
|
73 |
|
|
|
74 |
|
|
void
|
75 |
|
|
Cyg_Watchdog::init_hw(void)
|
76 |
|
|
{
|
77 |
|
|
CYG_REPORT_FUNCTION();
|
78 |
|
|
|
79 |
|
|
cyg_uint32 sypcr;
|
80 |
|
|
HAL_READ_UINT32(CYGARC_REG_IMM_SYPCR, sypcr);
|
81 |
|
|
|
82 |
|
|
resolution = (sypcr & MPC5XX_SYPCR_SWTC) >> 16;
|
83 |
|
|
if(sypcr & MPC5XX_SYPCR_SWP)
|
84 |
|
|
resolution *= 2048;
|
85 |
|
|
|
86 |
|
|
// Now we have it in ticks, convert to nanoseconds
|
87 |
|
|
// This holds for a system clock of 40 Mhz (25 nanosecond ticks) which is normal
|
88 |
|
|
// for the MPC5xx
|
89 |
|
|
resolution *= 25;
|
90 |
|
|
|
91 |
|
|
CYG_REPORT_RETURN();
|
92 |
|
|
}
|
93 |
|
|
|
94 |
|
|
// -------------------------------------------------------------------------
|
95 |
|
|
// Start the watchdog running.
|
96 |
|
|
// On powerpc, the watchdog is enabled by default. If the watchdog package
|
97 |
|
|
// is present, board setup does not disable it, so, nothing special to be
|
98 |
|
|
// done here.
|
99 |
|
|
void
|
100 |
|
|
Cyg_Watchdog::start(void)
|
101 |
|
|
{
|
102 |
|
|
CYG_REPORT_FUNCTION();
|
103 |
|
|
|
104 |
|
|
CYG_REPORT_RETURN();
|
105 |
|
|
}
|
106 |
|
|
|
107 |
|
|
// -------------------------------------------------------------------------
|
108 |
|
|
// Reset watchdog timer. This needs to be called regularly to prevent
|
109 |
|
|
// the watchdog firing.
|
110 |
|
|
|
111 |
|
|
void
|
112 |
|
|
Cyg_Watchdog::reset()
|
113 |
|
|
{
|
114 |
|
|
CYG_REPORT_FUNCTION();
|
115 |
|
|
|
116 |
|
|
cyg_uint16 swsr;
|
117 |
|
|
swsr = 0x556c;
|
118 |
|
|
HAL_WRITE_UINT16(CYGARC_REG_IMM_SWSR, swsr);
|
119 |
|
|
swsr = 0xaa39;
|
120 |
|
|
HAL_WRITE_UINT16(CYGARC_REG_IMM_SWSR, swsr);
|
121 |
|
|
|
122 |
|
|
CYG_REPORT_RETURN();
|
123 |
|
|
}
|
124 |
|
|
|
125 |
|
|
// -------------------------------------------------------------------------
|
126 |
|
|
// EOF watchdog_mpc5xx.cxx
|