source: rtems/c/src/lib/libcpu/sh/sh7032/clock/ckinit.c @ 99f6793

4.104.114.95
Last change on this file since 99f6793 was 99f6793, checked in by Joel Sherrill <joel.sherrill@…>, on 11/26/07 at 23:02:03

2007-11-26 Joel Sherrill <joel.sherrill@…>

  • sh7032/clock/ckinit.c, sh7032/delay/delay.c, sh7032/timer/timer.c, sh7045/clock/ckinit.c, sh7045/timer/timer.c, sh7750/clock/ckinit.c, sh7750/timer/timer.c: Eliminate the clicks_per_microsecond field in the SuperH CPU Table and define another mechanism for drivers to obtain this information.
  • Property mode set to 100644
File size: 8.3 KB
Line 
1/*
2 *  This file contains the clock driver the Hitachi SH 703X
3 *
4 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
5 *           Bernd Becker (becker@faw.uni-ulm.de)
6 *
7 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
8 *
9 *  This program is distributed in the hope that it will be useful,
10 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 *
13 *
14 *  COPYRIGHT (c) 1998.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.rtems.com/license/LICENSE.
20 *
21 *  $Id$
22 */
23
24#include <rtems.h>
25
26#include <stdlib.h>
27
28#include <rtems/libio.h>
29#include <rtems/score/sh_io.h>
30#include <rtems/score/sh.h>
31#include <rtems/score/ispsh7032.h>
32#include <rtems/score/iosh7032.h>
33
34extern uint32_t bsp_clicks_per_second;
35
36#ifndef CLOCKPRIO
37#define CLOCKPRIO 10
38#endif
39
40#define I_CLK_PHI_1     0
41#define I_CLK_PHI_2     1
42#define I_CLK_PHI_4     2
43#define I_CLK_PHI_8     3
44
45/*
46 * Set I_CLK_PHI to one of the I_CLK_PHI_X values from above to choose
47 * a PHI/X clock rate.
48 */
49
50#define I_CLK_PHI       I_CLK_PHI_4
51#define CLOCK_SCALE     (1<<I_CLK_PHI)
52
53#define ITU0_STARTMASK  0xfe
54#define ITU0_SYNCMASK   0xfe
55#define ITU0_MODEMASK   0xfe
56#define ITU0_TCRMASK    (0x20 | I_CLK_PHI)
57#define ITU_STAT_MASK   0xf8
58#define ITU0_IRQMASK    0xfe
59#define ITU0_TIERMASK   0x01
60#define IPRC_ITU0_MASK  0xff0f
61#define ITU0_TIORVAL    0x08
62
63/*
64 * clicks_per_tick := clicks_per_sec * usec_per_tick
65 *
66 * This is a very expensive function ;-)
67 *
68 * Below are two variants:
69 * 1. A variant applying integer arithmetics, only.
70 * 2. A variant applying floating point arithmetics
71 *
72 * The floating point variant pulls in the fmath routines when linking,
73 * resulting in slightly larger executables for applications that do not
74 * apply fmath otherwise. However, the imath variant is significantly slower
75 * than the fmath variant and more complex.
76 *
77 * Assuming that most applications will not use fmath, but are critical
78 * in memory size constraints, we apply the integer variant.
79 *
80 * To the sake of simplicity, we might abandon one of both variants in
81 * future.
82 */
83static unsigned int sh_clicks_per_tick(
84  unsigned int clicks_per_sec,
85  unsigned int usec_per_tick
86)
87{
88#if 1
89  unsigned int clicks_per_tick = 0 ;
90
91  unsigned int b = clicks_per_sec ;
92  unsigned int c = 1000000 ;
93  unsigned int d = 1 ;
94  unsigned int a = ( ( b / c ) * usec_per_tick ) / d;
95
96  clicks_per_tick += a ;
97
98  while ( ( b %= c ) > 0 )
99  {
100    c /= 10 ;
101    d *= 10 ;
102    a = ( ( b / c ) * usec_per_tick ) / d ;
103    clicks_per_tick += a ;
104  }
105  return clicks_per_tick ;
106#else
107  double fclicks_per_tick =
108    ((double) clicks_per_sec * (double) usec_per_tick) / 1000000.0 ;
109  return (uint32_t) fclicks_per_tick ;
110#endif
111}
112
113/*
114 *  The interrupt vector number associated with the clock tick device
115 *  driver.
116 */
117
118#define CLOCK_VECTOR IMIA0_ISP_V
119
120/*
121 *  Clock_driver_ticks is a monotonically increasing counter of the
122 *  number of clock ticks since the driver was initialized.
123 */
124
125volatile uint32_t   Clock_driver_ticks;
126
127static void Clock_exit( void );
128static rtems_isr Clock_isr( rtems_vector_number vector );
129
130/*
131 *  Clock_isrs is the number of clock ISRs until the next invocation of
132 *  the RTEMS clock tick routine.  The clock tick device driver
133 *  gets an interrupt once a millisecond and counts down until the
134 *  length of time between the user configured microseconds per tick
135 *  has passed.
136 */
137
138uint32_t   Clock_isrs;              /* ISRs until next tick */
139static uint32_t   Clock_isrs_const;        /* only calculated once */
140
141/*
142 * These are set by clock driver during its init
143 */
144
145rtems_device_major_number rtems_clock_major = ~0;
146rtems_device_minor_number rtems_clock_minor;
147
148/*
149 *  The previous ISR on this clock tick interrupt vector.
150 */
151
152rtems_isr_entry  Old_ticker;
153
154/*
155 *  Isr Handler
156 */
157
158rtems_isr Clock_isr(
159  rtems_vector_number vector
160)
161{
162  /*
163   * bump the number of clock driver ticks since initialization
164   *
165   * determine if it is time to announce the passing of tick as configured
166   * to RTEMS through the rtems_clock_tick directive
167   *
168   * perform any timer dependent tasks
169   */
170  uint8_t   temp;
171
172  /* reset the flags of the status register */
173  temp = read8( ITU_TSR0) & ITU_STAT_MASK;
174  write8( temp, ITU_TSR0);
175
176  Clock_driver_ticks++ ;
177
178  if( Clock_isrs == 1)
179    {
180      rtems_clock_tick();
181      Clock_isrs = Clock_isrs_const;
182    }
183  else
184    {
185      Clock_isrs-- ;
186    }
187}
188
189/*
190 *  Install_clock
191 *
192 *  Install a clock tick handler and reprograms the chip.  This
193 *  is used to initially establish the clock tick.
194 */
195
196void Install_clock(
197  rtems_isr_entry clock_isr
198)
199{
200  uint8_t   temp8 = 0;
201  uint32_t   microseconds_per_tick;
202  uint32_t   cclicks_per_tick;
203  uint16_t   Clock_limit;
204
205  /*
206   *  Initialize the clock tick device driver variables
207   */
208
209  Clock_driver_ticks = 0;
210
211  if ( rtems_configuration_get_microseconds_per_tick() != 0 )
212    microseconds_per_tick = rtems_configuration_get_microseconds_per_tick() ;
213  else
214    microseconds_per_tick = 10000 ; /* 10000 us */
215
216  /* clock clicks per tick */
217  cclicks_per_tick = sh_clicks_per_tick(
218     bsp_clicks_per_second / CLOCK_SCALE, microseconds_per_tick );
219
220  Clock_isrs_const = cclicks_per_tick >> 16 ;
221  if ( ( cclicks_per_tick | 0xffff ) > 0 )
222    Clock_isrs_const++ ;
223  Clock_limit = cclicks_per_tick / Clock_isrs_const ;
224  Clock_isrs = Clock_isrs_const;
225
226  rtems_interrupt_catch( Clock_isr, CLOCK_VECTOR, &Old_ticker );
227  /*
228   *  Hardware specific initialize goes here
229   */
230
231  /* stop Timer 0 */
232  temp8 = read8( ITU_TSTR) & ITU0_STARTMASK;
233  write8( temp8, ITU_TSTR);
234
235  /* set initial counter value to 0 */
236  write16( 0, ITU_TCNT0);
237
238  /* Timer 0 runs independent */
239  temp8 = read8( ITU_TSNC) & ITU0_SYNCMASK;
240  write8( temp8, ITU_TSNC);
241
242  /* Timer 0 normal mode */
243  temp8 = read8( ITU_TMDR) & ITU0_MODEMASK;
244  write8( temp8, ITU_TMDR);
245
246  /* TCNT is cleared by GRA ; internal clock /4 */
247  write8( ITU0_TCRMASK , ITU_TCR0);
248
249  /* use GRA without I/O - pins  */
250  write8( ITU0_TIORVAL, ITU_TIOR0);
251
252  /* reset flags of the status register */
253  temp8 = read8( ITU_TSR0) & ITU_STAT_MASK;
254  write8( temp8, ITU_TSR0);
255
256  /* Irq if is equal GRA */
257  temp8 = read8( ITU_TIER0) | ITU0_TIERMASK;
258  write8( temp8, ITU_TIER0);
259
260  /* set interrupt priority */
261  if( sh_set_irq_priority( CLOCK_VECTOR, CLOCKPRIO ) != RTEMS_SUCCESSFUL)
262    rtems_fatal_error_occurred( RTEMS_NOT_CONFIGURED);
263
264  /* set counter limits */
265  write16( Clock_limit, ITU_GRA0);
266
267  /* start counter */
268  temp8 = read8( ITU_TSTR) |~ITU0_STARTMASK;
269  write8( temp8, ITU_TSTR);
270
271  /*
272   *  Schedule the clock cleanup routine to execute if the application exits.
273   */
274
275  atexit( Clock_exit );
276}
277
278/*
279 *  Clean up before the application exits
280 */
281
282void Clock_exit( void )
283{
284  uint8_t   temp8 = 0;
285
286  /* turn off the timer interrupts */
287  /* set interrupt priority to 0 */
288  if( sh_set_irq_priority( CLOCK_VECTOR, 0 ) != RTEMS_SUCCESSFUL)
289    rtems_fatal_error_occurred( RTEMS_UNSATISFIED);
290
291/*
292 *   temp16 = read16( ITU_TIER0) & IPRC_ITU0_IRQMASK;
293 *   write16( temp16, ITU_TIER0);
294 */
295
296  /* stop counter */
297  temp8 = read8( ITU_TSTR) & ITU0_STARTMASK;
298  write8( temp8, ITU_TSTR);
299
300  /* old vector shall not be installed */
301}
302
303/*
304 *  Clock_initialize
305 *
306 *  Device driver entry point for clock tick driver initialization.
307 */
308
309rtems_device_driver Clock_initialize(
310  rtems_device_major_number major,
311  rtems_device_minor_number minor,
312  void *pargp
313)
314{
315  Install_clock( Clock_isr );
316
317  /*
318   * make major/minor avail to others such as shared memory driver
319   */
320
321  rtems_clock_major = major;
322  rtems_clock_minor = minor;
323
324  return RTEMS_SUCCESSFUL;
325}
326
327rtems_device_driver Clock_control(
328  rtems_device_major_number major,
329  rtems_device_minor_number minor,
330  void *pargp
331)
332{
333  uint32_t   isrlevel;
334  rtems_libio_ioctl_args_t *args = pargp;
335
336  if (args != 0)
337    {
338      /*
339       * This is hokey, but until we get a defined interface
340       * to do this, it will just be this simple...
341       */
342
343      if (args->command == rtems_build_name('I', 'S', 'R', ' '))
344        {
345          Clock_isr(CLOCK_VECTOR);
346        }
347      else if (args->command == rtems_build_name('N', 'E', 'W', ' '))
348        {
349          rtems_isr_entry       ignored ;
350          rtems_interrupt_disable( isrlevel );
351          rtems_interrupt_catch( args->buffer, CLOCK_VECTOR, &ignored );
352
353          rtems_interrupt_enable( isrlevel );
354        }
355    }
356  return RTEMS_SUCCESSFUL;
357}
Note: See TracBrowser for help on using the repository browser.