source: rtems/c/src/lib/libbsp/powerpc/gen5200/clock/clock.c @ 1af911b8

4.104.114.84.95
Last change on this file since 1af911b8 was 1af911b8, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/17/06 at 02:40:57

Convert to utf-8.

  • Property mode set to 100644
File size: 13.7 KB
Line 
1/*===============================================================*\
2| Project: RTEMS generic MPC5200 BSP                              |
3+-----------------------------------------------------------------+
4| Partially based on the code references which are named below.   |
5| Adaptions, modifications, enhancements and any recent parts of  |
6| the code are:                                                   |
7|                    Copyright (c) 2005                           |
8|                    Embedded Brains GmbH                         |
9|                    Obere Lagerstr. 30                           |
10|                    D-82178 Puchheim                             |
11|                    Germany                                      |
12|                    rtems@embedded-brains.de                     |
13+-----------------------------------------------------------------+
14| The license and distribution terms for this file may be         |
15| found in the file LICENSE in this distribution or at            |
16|                                                                 |
17| http://www.rtems.com/license/LICENSE.                           |
18|                                                                 |
19+-----------------------------------------------------------------+
20| this file contains the clock driver functions                   |
21\*===============================================================*/
22/***********************************************************************/
23/*                                                                     */
24/*   Module:       clock.c                                             */
25/*   Date:         07/17/2003                                          */
26/*   Purpose:      RTEMS MPC5x00 clock driver                          */
27/*                                                                     */
28/*---------------------------------------------------------------------*/
29/*                                                                     */
30/*   Description:  Use one of the GPTs for time base generation        */
31/*                 instead of the decrementer. The routine initializes */
32/*                 the General Purpose Timer GPT6 on the MPC5x00.      */
33/*                 The tick frequency is specified by the bsp.         */
34/*                                                                     */
35/*---------------------------------------------------------------------*/
36/*                                                                     */
37/*   Code                                                              */
38/*   References:   Clock driver for PPC403                             */
39/*   Module:       clock.c                                             */
40/*   Project:      RTEMS 4.6.0pre1 / PPC403 BSP                        */
41/*   Version       1.16                                                */
42/*   Date:         2002/11/01                                          */
43/*   Author(s) / Copyright(s):                                         */
44/*                                                                     */
45/*   Author: Jay Monkman (jmonkman@frasca.com)                         */
46/*   Copyright (C) 1998 by Frasca International, Inc.                  */
47/*                                                                     */
48/*   Derived from c/src/lib/libcpu/ppc/ppc403/clock/clock.c:           */
49/*                                                                     */
50/*   Author: Andrew Bray <andy@i-cubed.co.uk>                          */
51/*                                                                     */
52/*   COPYRIGHT (c) 1995 by i-cubed ltd.                                */
53/*                                                                     */
54/*   To anyone who acknowledges that this file is provided "AS IS"     */
55/*   without any express or implied warranty:                          */
56/*      permission to use, copy, modify, and distribute this file      */
57/*      for any purpose is hereby granted without fee, provided that   */
58/*      the above copyright notice and this notice appears in all      */
59/*      copies, and that the name of i-cubed limited not be used in    */
60/*      advertising or publicity pertaining to distribution of the     */
61/*      software without specific, written prior permission.           */
62/*      i-cubed limited makes no representations about the suitability */
63/*      of this software for any purpose.                              */
64/*                                                                     */
65/*   Derived from c/src/lib/libcpu/hppa1.1/clock/clock.c:              */
66/*                                                                     */
67/*   Modifications for deriving timer clock from cpu system clock by   */
68/*              Thomas Doerfler <td@imd.m.isar.de>                     */
69/*   for these modifications:                                          */
70/*   COPYRIGHT (c) 1997 by IMD, Puchheim, Germany.                     */
71/*                                                                     */
72/*   COPYRIGHT (c) 1989-1999.                                          */
73/*   On-Line Applications Research Corporation (OAR).                  */
74/*                                                                     */
75/*   The license and distribution terms for this file may be           */
76/*   found in the file LICENSE in this distribution or at              */
77/*   http://www.OARcorp.com/rtems/license.html.                        */
78/*                                                                     */
79/*   Modifications for PPC405GP by Dennis Ehlin                        */
80/*---------------------------------------------------------------------*/
81/*                                                                     */
82/*   Partially based on the code references which are named above.     */
83/*   Adaptions, modifications, enhancements and any recent parts of    */
84/*   the code are under the right of                                   */
85/*                                                                     */
86/*         IPR Engineering, Dachauer Straße 38, D-80335 MÃŒnchen        */
87/*                        Copyright(C) 2003                            */
88/*                                                                     */
89/*---------------------------------------------------------------------*/
90/*                                                                     */
91/*   IPR Engineering makes no representation or warranties with        */
92/*   respect to the performance of this computer program, and          */
93/*   specifically disclaims any responsibility for any damages,        */
94/*   special or consequential, connected with the use of this program. */
95/*                                                                     */
96/*---------------------------------------------------------------------*/
97/*                                                                     */
98/*   Version history:  1.0                                             */
99/*                                                                     */
100/***********************************************************************/
101
102#include <bsp.h>
103#include <rtems/bspIo.h>
104#include "../irq/irq.h"
105
106#include <rtems.h>
107#include <rtems/clockdrv.h>
108#include <rtems/libio.h>
109
110#include <stdlib.h>                     /* for atexit() */
111#include "../include/mpc5200.h"
112
113volatile uint32_t Clock_driver_ticks;
114
115void Clock_exit(void);
116
117uint32_t counter_value;
118
119volatile int ClockInitialized = 0;
120
121
122/*
123 * These are set by clock driver during its init
124 */
125rtems_device_major_number rtems_clock_major = ~0;
126rtems_device_minor_number rtems_clock_minor;
127
128
129/*
130 *  ISR Handlers
131 */
132void mpc5200_gpt_clock_isr(rtems_irq_hdl_param handle)
133  {
134  uint32_t status;
135  struct mpc5200_gpt *gpt = (struct mpc5200_gpt *)handle;
136
137  status = gpt->status;
138
139
140  if(ClockInitialized  && (status & GPT_STATUS_TEXP))
141    {
142
143    gpt->status |= GPT_STATUS_TEXP;
144
145
146    Clock_driver_ticks++;
147    rtems_clock_tick();
148
149    }
150
151  }
152
153
154/*
155 *  Initialize MPC5x00 GPT
156 */
157void mpc5200_init_gpt(uint32_t gpt_no)
158  {
159  struct mpc5200_gpt *gpt = (struct mpc5200_gpt *)(&mpc5200.gpt[gpt_no]);
160
161  gpt->status = GPT_STATUS_RESET;
162  gpt->emsel  = GPT_EMSEL_CE | GPT_EMSEL_ST_CONT | GPT_EMSEL_INTEN | GPT_EMSEL_GPIO_OUT_HIGH | GPT_EMSEL_TIMER_MS_GPIO;
163
164  }
165
166
167/*
168 *  Set MPC5x00 GPT counter
169 */
170void mpc5200_set_gpt_count(uint32_t counter_value, uint32_t gpt_no)
171  {
172  uint32_t prescaler_value = 1;
173  struct mpc5200_gpt *gpt = (struct mpc5200_gpt *)(&mpc5200.gpt[gpt_no]);
174
175  /* Calculate counter/prescaler value, e.g. IPB_Clock=33MHz -> Int. every 0,3 nsecs. - 130 secs.*/
176  while((counter_value >= (1 << 16)) && (prescaler_value < (1 << 16)))
177    {
178
179    prescaler_value++;
180        counter_value /= prescaler_value;
181
182    }
183
184  counter_value = (uint16_t)counter_value;
185
186  gpt->count_in = (prescaler_value << 16) + counter_value;
187
188  }
189
190
191/*
192 *  Enable MPC5x00 GPT interrupt
193 */
194void mpc5200_enable_gpt_int(uint32_t gpt_no)
195  {
196  struct mpc5200_gpt *gpt = (struct mpc5200_gpt *)(&mpc5200.gpt[gpt_no]);
197
198  gpt->emsel |= GPT_EMSEL_CE | GPT_EMSEL_INTEN;
199
200  }
201
202
203/*
204 *  Disable MPC5x00 GPT interrupt
205 */
206void mpc5200_disable_gpt_int(uint32_t gpt_no)
207  {
208  struct mpc5200_gpt *gpt = (struct mpc5200_gpt *)(&mpc5200.gpt[gpt_no]);
209
210  gpt->emsel &= ~(GPT_EMSEL_CE | GPT_EMSEL_INTEN);
211
212  }
213
214
215/*
216 *  Check MPC5x00 GPT status
217 */
218uint32_t mpc5200_check_gpt_status(uint32_t gpt_no)
219  {
220  struct mpc5200_gpt *gpt = (struct mpc5200_gpt *)(&mpc5200.gpt[gpt_no]);
221
222  return ((gpt->emsel) & (GPT_EMSEL_CE | GPT_EMSEL_INTEN));
223
224  }
225
226
227void clockOn(const rtems_irq_connect_data* irq)
228  {
229  uint32_t gpt_no;
230
231
232  gpt_no = BSP_SIU_IRQ_TMR0 - (irq->name);
233
234  counter_value = rtems_configuration_get_microseconds_per_tick() *
235                      rtems_cpu_configuration_get_clicks_per_usec();
236
237  mpc5200_set_gpt_count(counter_value, (uint32_t)gpt_no);
238  mpc5200_enable_gpt_int((uint32_t)gpt_no);
239
240  Clock_driver_ticks = 0;
241  ClockInitialized = 1;
242
243  }
244
245
246void clockOff(const rtems_irq_connect_data* irq)
247  {
248  uint32_t gpt_no;
249
250  gpt_no = BSP_SIU_IRQ_TMR0 - (irq->name);
251
252  mpc5200_disable_gpt_int((uint32_t)gpt_no);
253
254  ClockInitialized = 0;
255
256  }
257
258
259int clockIsOn(const rtems_irq_connect_data* irq)
260  {
261  uint32_t gpt_no;
262
263  gpt_no = BSP_SIU_IRQ_TMR0 - (irq->name);
264
265  if(mpc5200_check_gpt_status(gpt_no) && ClockInitialized)
266    return ClockInitialized;
267  else
268    return 0;
269  }
270
271
272int BSP_get_clock_irq_level()
273  {
274
275  /*
276   * Caution : if you change this, you must change the
277   * definition of BSP_PERIODIC_TIMER accordingly
278    */
279  return BSP_PERIODIC_TIMER;
280  }
281
282
283int BSP_disconnect_clock_handler (void)
284  {
285  rtems_irq_connect_data clockIrqData;
286  clockIrqData.name   = BSP_PERIODIC_TIMER;
287
288
289  if (!BSP_get_current_rtems_irq_handler(&clockIrqData))
290    {
291
292    printk("Unable to stop system clock\n");
293    rtems_fatal_error_occurred(1);
294
295    }
296
297  return BSP_remove_rtems_irq_handler (&clockIrqData);
298
299  }
300
301
302int BSP_connect_clock_handler (uint32_t gpt_no)
303  {
304
305  rtems_irq_hdl hdl = 0;
306  rtems_irq_connect_data clockIrqData;
307
308
309  /*
310   * Reinit structure
311   */
312
313  clockIrqData.name   = BSP_PERIODIC_TIMER;
314
315  if(!BSP_get_current_rtems_irq_handler(&clockIrqData))
316    {
317
318    printk("Unable to get system clock handler\n");
319    rtems_fatal_error_occurred(1);
320
321    }
322
323  if(!BSP_remove_rtems_irq_handler (&clockIrqData))
324    {
325
326    printk("Unable to remove current system clock handler\n");
327    rtems_fatal_error_occurred(1);
328
329    }
330
331  if ((gpt_no >= GPT0) ||
332      (gpt_no <= GPT7)) {
333    hdl = (rtems_irq_hdl_param )&mpc5200.gpt[gpt_no];
334  }
335  else {
336    printk("Unable to set system clock handler\n");
337    rtems_fatal_error_occurred(1);
338  }
339
340  clockIrqData.hdl    = mpc5200_gpt_clock_isr;
341  clockIrqData.handle = (rtems_irq_hdl_param) hdl;
342  clockIrqData.on     = clockOn;
343  clockIrqData.off    = clockOff;
344  clockIrqData.isOn   = clockIsOn;
345
346  return BSP_install_rtems_irq_handler (&clockIrqData);
347
348  }
349
350
351/*
352 * Called via atexit()
353 * Remove the clock interrupt handler by setting handler to NULL
354 */
355void Clock_exit(void)
356  {
357
358  (void) BSP_disconnect_clock_handler ();
359
360  }
361
362
363void Install_clock(rtems_device_minor_number gpt_no)
364  {
365
366  Clock_driver_ticks = 0;
367
368  counter_value = rtems_configuration_get_microseconds_per_tick() *
369                      rtems_cpu_configuration_get_clicks_per_usec();
370
371  mpc5200_init_gpt((uint32_t)gpt_no);
372  mpc5200_set_gpt_count(counter_value, (uint32_t)gpt_no);
373
374
375  BSP_connect_clock_handler(gpt_no);
376
377  ClockInitialized = 1;
378
379  atexit(Clock_exit);
380
381  }
382
383void ReInstall_clock(uint32_t gpt_no)
384  {
385
386  BSP_connect_clock_handler(gpt_no);
387
388  }
389
390
391rtems_device_driver Clock_initialize
392  (
393  rtems_device_major_number major,
394  rtems_device_minor_number minor,
395  void *pargp
396  )
397  {
398  /* force minor according to definitions in irq.h */
399  minor = BSP_PERIODIC_TIMER - BSP_SIU_IRQ_TMR0;
400
401  Install_clock((uint32_t)minor);
402
403  /*
404   * make major/minor avail to others such as shared memory driver
405   */
406  rtems_clock_major = major;
407  rtems_clock_minor = minor;
408
409  return RTEMS_SUCCESSFUL;
410
411  }
412
413rtems_device_driver Clock_control
414  (
415  rtems_device_major_number major,
416  rtems_device_minor_number minor,
417  void *pargp
418  )  {
419
420  rtems_libio_ioctl_args_t *args = pargp;
421
422  /* forec minor according to definitions in irq.h */
423  minor = BSP_PERIODIC_TIMER - BSP_SIU_IRQ_TMR0;
424
425  if(args != 0) {
426    /*
427     * This is hokey, but until we get a defined interface
428     * to do this, it will just be this simple...
429     */
430    if(args->command == rtems_build_name('I', 'S', 'R', ' ')) {
431      if ((minor >= GPT0) ||
432          (minor <= GPT7)) {
433        mpc5200_gpt_clock_isr((rtems_irq_hdl_param )&mpc5200.gpt[minor]);
434      }
435      else {
436        printk("Unable to call system clock handler\n");
437        rtems_fatal_error_occurred(1);
438      }
439    }
440    else if(args->command == rtems_build_name('N', 'E', 'W', ' ')) {
441      ReInstall_clock((uint32_t)minor);
442    }
443  }
444  return RTEMS_SUCCESSFUL;
445
446}
Note: See TracBrowser for help on using the repository browser.