summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/m68k/mcf5272/clock/ckinit.c
blob: 3b7b25067c8ddabac58a704948a70b60fcadd725 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 *  Clock Driver for MCF5272 CPU
 *
 *  This driver initailizes timer1 on the MCF5272 as the
 *  main system clock
 */

/*
 *  Copyright 2004 Cogent Computer Systems
 *  Author: Jay Monkman <jtm@lopingdog.com>
 *
 *  Based on MCF5206 clock driver by
 *    Victor V. Vengerov <vvv@oktet.ru>
 *
 *  Based on work:
 *    David Fiddes, D.J@fiddes.surfaid.org
 *    http://www.calm.hw.ac.uk/davidf/coldfire/
 *
 *  COPYRIGHT (c) 1989-1998.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#include <stdlib.h>
#include <bsp.h>
#include <rtems/libio.h>
#include <mcf5272/mcf5272.h>
#include <rtems/clockdrv.h>

/*
 * Clock_driver_ticks is a monotonically increasing counter of the
 * number of clock ticks since the driver was initialized.
 */
volatile uint32_t Clock_driver_ticks;

rtems_isr (*rtems_clock_hook)(rtems_vector_number) = NULL;

static rtems_isr
Clock_isr (rtems_vector_number vector)
{
  /* Clear pending interrupt... */
  g_timer_regs->ter1 = MCF5272_TER_REF | MCF5272_TER_CAP;

  /* Announce the clock tick */
  Clock_driver_ticks++;
  rtems_clock_tick();
  if (rtems_clock_hook != NULL) {
      rtems_clock_hook(vector);
  }
}

void
Clock_exit(void)
{
  uint32_t icr;

  /* disable all timer1 interrupts */
  icr = g_intctrl_regs->icr1;
  icr = icr & ~(MCF5272_ICR1_TMR1_MASK | MCF5272_ICR1_TMR1_PI);
  icr |= (MCF5272_ICR1_TMR1_IPL(0) | MCF5272_ICR1_TMR1_PI);
  g_intctrl_regs->icr1 = icr;

  /* reset timer1 */
  g_timer_regs->tmr1 = MCF5272_TMR_CLK_STOP;

  /* clear pending */
  g_timer_regs->ter1 = MCF5272_TER_REF | MCF5272_TER_CAP;
}

static void
Install_clock(rtems_isr_entry clock_isr)
{
  uint32_t icr;

  Clock_driver_ticks = 0;

  /* Register the interrupt handler */
  set_vector(clock_isr, BSP_INTVEC_TMR1, 1);

  /* Reset timer 1 */
  g_timer_regs->tmr1 = MCF5272_TMR_RST;
  g_timer_regs->tmr1 = MCF5272_TMR_CLK_STOP;
  g_timer_regs->tmr1 = MCF5272_TMR_RST;
  g_timer_regs->tcn1 = 0;  /* reset counter */
  g_timer_regs->ter1 = MCF5272_TER_REF | MCF5272_TER_CAP;

  /* Set Timer 1 prescaler so that it counts in microseconds */
  g_timer_regs->tmr1 = (
      ((((BSP_SYSTEM_FREQUENCY / 1000000) - 1) << MCF5272_TMR_PS_SHIFT) |
       MCF5272_TMR_CE_DISABLE                                      |
       MCF5272_TMR_ORI                                             |
       MCF5272_TMR_FRR                                             |
       MCF5272_TMR_CLK_MSTR                                        |
       MCF5272_TMR_RST));

  /* Set the timer timeout value from the BSP config */
  g_timer_regs->trr1 = rtems_configuration_get_microseconds_per_tick() - 1;

  /* Feed system frequency to the timer */
  g_timer_regs->tmr1 |= MCF5272_TMR_CLK_MSTR;

  /* Configure timer1 interrupts */
  icr = g_intctrl_regs->icr1;
  icr = icr & ~(MCF5272_ICR1_TMR1_MASK | MCF5272_ICR1_TMR1_PI);
  icr |= (MCF5272_ICR1_TMR1_IPL(BSP_INTLVL_TMR1) | MCF5272_ICR1_TMR1_PI);
  g_intctrl_regs->icr1 = icr;

  /* Register the driver exit procedure so we can shutdown */
  atexit(Clock_exit);
}

rtems_device_driver
Clock_initialize(
  rtems_device_major_number major,
  rtems_device_minor_number minor,
  void *pargp
)
{
  Install_clock (Clock_isr);

  return RTEMS_SUCCESSFUL;
}