1 |
786 |
skrzyp |
/*==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// timer_pit.c
|
4 |
|
|
//
|
5 |
|
|
// HAL timer code using the Periodic Interval Timer
|
6 |
|
|
//
|
7 |
|
|
//==========================================================================
|
8 |
|
|
// ####ECOSGPLCOPYRIGHTBEGIN####
|
9 |
|
|
// -------------------------------------------
|
10 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
11 |
|
|
// Copyright (C) 2006 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): asl, Oliver Munz
|
43 |
|
|
// Contributors: asl, Oliver Munz
|
44 |
|
|
// Date: 2009-06-03
|
45 |
|
|
// Purpose: Clock support using the PIT
|
46 |
|
|
// Description:
|
47 |
|
|
//
|
48 |
|
|
//####DESCRIPTIONEND####
|
49 |
|
|
//
|
50 |
|
|
//========================================================================*/
|
51 |
|
|
|
52 |
|
|
#include <pkgconf/hal.h>
|
53 |
|
|
|
54 |
|
|
#include <cyg/infra/cyg_type.h> // base types
|
55 |
|
|
#include <cyg/infra/cyg_ass.h> // assertion macros
|
56 |
|
|
|
57 |
|
|
#include <cyg/hal/hal_io.h> // IO macros
|
58 |
|
|
#include <cyg/hal/hal_platform_ints.h>
|
59 |
|
|
// -------------------------------------------------------------------------
|
60 |
|
|
// Use system clock
|
61 |
|
|
void
|
62 |
|
|
hal_clock_initialize(cyg_uint32 period){
|
63 |
|
|
|
64 |
|
|
cyg_uint32 ir;
|
65 |
|
|
cyg_uint32 pimr;
|
66 |
|
|
|
67 |
|
|
CYG_ASSERT(CYGNUM_HAL_INTERRUPT_RTC == CYGNUM_HAL_INTERRUPT_PITC,
|
68 |
|
|
"Invalid timer interrupt");
|
69 |
|
|
CYG_ASSERT(period <= AT91_PITC_VALUE_MASK,
|
70 |
|
|
"Invalid timer period");
|
71 |
|
|
|
72 |
|
|
pimr = (period - 1); /* This is what we want */
|
73 |
|
|
HAL_READ_UINT32(AT91_PITC + AT91_PITC_PIIR, ir); /* Counter */
|
74 |
|
|
ir = ir & AT91_PITC_VALUE_MASK; /* The current count */
|
75 |
|
|
|
76 |
|
|
do { /* Test if the new PITC-Modulus is overrun by the counter */
|
77 |
|
|
if (ir > pimr){ /* If the counter is already too high */
|
78 |
|
|
|
79 |
|
|
pimr = (ir + 100) & AT91_PITC_VALUE_MASK; /* Set the comparator ahead */
|
80 |
|
|
HAL_WRITE_UINT32((AT91_PITC + AT91_PITC_PIMR),
|
81 |
|
|
pimr | AT91_PITC_PIMR_PITEN);
|
82 |
|
|
}
|
83 |
|
|
if (ir < (period - 1)){ /* If we can try it */
|
84 |
|
|
pimr = (period - 1); /* This is what we want */
|
85 |
|
|
/* Set the real Period Interval timer */
|
86 |
|
|
HAL_WRITE_UINT32((AT91_PITC + AT91_PITC_PIMR),
|
87 |
|
|
pimr | AT91_PITC_PIMR_PITEN);
|
88 |
|
|
}
|
89 |
|
|
HAL_READ_UINT32(AT91_PITC + AT91_PITC_PIMR, pimr); /* The real value */
|
90 |
|
|
pimr = pimr & AT91_PITC_VALUE_MASK; /* Value */
|
91 |
|
|
HAL_READ_UINT32(AT91_PITC + AT91_PITC_PIIR, ir); /* Counter */
|
92 |
|
|
ir = ir & AT91_PITC_VALUE_MASK; /* The current counts */
|
93 |
|
|
|
94 |
|
|
} while (ir > (period - 1) || pimr != (period - 1)); // Is it correct?
|
95 |
|
|
|
96 |
|
|
/* Enable interrupt */
|
97 |
|
|
HAL_WRITE_UINT32((AT91_PITC + AT91_PITC_PIMR), (period - 1) |
|
98 |
|
|
AT91_PITC_PIMR_PITEN | AT91_PITC_PIMR_PITIEN);
|
99 |
|
|
|
100 |
|
|
/* Read the status register to clear any pending interrupt */
|
101 |
|
|
HAL_READ_UINT32(AT91_PITC + AT91_PITC_PISR, ir);
|
102 |
|
|
}
|
103 |
|
|
|
104 |
|
|
// This routine is called during a clock interrupt.
|
105 |
|
|
void
|
106 |
|
|
hal_clock_reset(cyg_uint32 vector, cyg_uint32 period)
|
107 |
|
|
{
|
108 |
|
|
cyg_uint32 reg;
|
109 |
|
|
cyg_uint32 pimr;
|
110 |
|
|
|
111 |
|
|
CYG_ASSERT(period < AT91_PITC_VALUE_MASK, "Invalid HAL clock configuration");
|
112 |
|
|
|
113 |
|
|
// Check that the PIT has the right period.
|
114 |
|
|
HAL_READ_UINT32((AT91_PITC + AT91_PITC_PIMR), pimr);
|
115 |
|
|
if ((pimr & AT91_PITC_VALUE_MASK) != (period - 1)) {
|
116 |
|
|
HAL_WRITE_UINT32((AT91_PITC + AT91_PITC_PIMR),
|
117 |
|
|
(period - 1) |
|
118 |
|
|
AT91_PITC_PIMR_PITEN |
|
119 |
|
|
AT91_PITC_PIMR_PITIEN);
|
120 |
|
|
}
|
121 |
|
|
|
122 |
|
|
/* Read the value register so that we clear the interrupt */
|
123 |
|
|
HAL_READ_UINT32(AT91_PITC + AT91_PITC_PIVR, reg);
|
124 |
|
|
}
|
125 |
|
|
|
126 |
|
|
// Read the current value of the clock, returning the number of hardware
|
127 |
|
|
// "ticks" that have occurred (i.e. how far away the current value is from
|
128 |
|
|
// the start)
|
129 |
|
|
void
|
130 |
|
|
hal_clock_read(cyg_uint32 *pvalue)
|
131 |
|
|
{
|
132 |
|
|
cyg_uint32 ir;
|
133 |
|
|
cyg_uint32 pimr;
|
134 |
|
|
|
135 |
|
|
// Check that the PIT is running. If not start it.
|
136 |
|
|
HAL_READ_UINT32((AT91_PITC + AT91_PITC_PIMR),pimr);
|
137 |
|
|
if (!(pimr & AT91_PITC_PIMR_PITEN)) {
|
138 |
|
|
HAL_WRITE_UINT32((AT91_PITC + AT91_PITC_PIMR),
|
139 |
|
|
AT91_PITC_VALUE_MASK | AT91_PITC_PIMR_PITEN);
|
140 |
|
|
}
|
141 |
|
|
|
142 |
|
|
HAL_READ_UINT32(AT91_PITC + AT91_PITC_PIIR, ir);
|
143 |
|
|
*pvalue = ir & AT91_PITC_VALUE_MASK;
|
144 |
|
|
}
|
145 |
|
|
|
146 |
|
|
// -------------------------------------------------------------------------
|
147 |
|
|
//
|
148 |
|
|
// Delay for some number of micro-seconds
|
149 |
|
|
// PIT is clocked at MCLK / 16
|
150 |
|
|
//
|
151 |
|
|
void hal_delay_us(cyg_int32 usecs)
|
152 |
|
|
{
|
153 |
|
|
cyg_int64 ticks;
|
154 |
|
|
cyg_uint32 val1, val2;
|
155 |
|
|
cyg_uint32 piv;
|
156 |
|
|
|
157 |
|
|
// Calculate how many PIT ticks the required number of microseconds
|
158 |
|
|
// equate to. We do this calculation in 64 bit arithmetic to avoid
|
159 |
|
|
// overflow.
|
160 |
|
|
ticks = (((cyg_uint64)usecs) *
|
161 |
|
|
((cyg_uint64)CYGNUM_HAL_ARM_AT91_CLOCK_SPEED))/16/1000000LL;
|
162 |
|
|
|
163 |
|
|
// Calculate the wrap around period.
|
164 |
|
|
HAL_READ_UINT32(AT91_PITC + AT91_PITC_PIMR, piv);
|
165 |
|
|
piv = (piv & AT91_PITC_VALUE_MASK) - 1;
|
166 |
|
|
|
167 |
|
|
hal_clock_read(&val1);
|
168 |
|
|
while (ticks > 0) {
|
169 |
|
|
hal_clock_read(&val2);
|
170 |
|
|
if (val2 < val1)
|
171 |
|
|
ticks -= ((piv + val2) - val1); //overflow occurred
|
172 |
|
|
else
|
173 |
|
|
ticks -= (val2 - val1);
|
174 |
|
|
val1 = val2;
|
175 |
|
|
}
|
176 |
|
|
}
|
177 |
|
|
|
178 |
|
|
// timer_pit.c
|