source: rtems/c/src/lib/libbsp/arm/shared/arm-a9mpcore-clock-config.c @ 0afac6a

4.115
Last change on this file since 0afac6a was 75acd9e, checked in by Alexander Krutwig <alexander.krutwig@…>, on 04/01/15 at 13:33:25

bsps: Convert clock drivers to use a timecounter

Update #2271.

  • Property mode set to 100644
File size: 4.0 KB
Line 
1/*
2 * Copyright (c) 2013-2015 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <info@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#include <bsp.h>
16#include <bsp/fatal.h>
17#include <bsp/irq.h>
18#include <bsp/arm-a9mpcore-regs.h>
19#include <bsp/arm-a9mpcore-clock.h>
20#include <rtems/timecounter.h>
21
22#define A9MPCORE_GT ((volatile a9mpcore_gt *) BSP_ARM_A9MPCORE_GT_BASE)
23
24static struct timecounter a9mpcore_tc;
25
26/* This is defined in clockdrv_shell.h */
27void Clock_isr(rtems_irq_hdl_param arg);
28
29__attribute__ ((weak)) uint32_t a9mpcore_clock_periphclk(void)
30{
31  /* default to the BSP option. */
32  return BSP_ARM_A9MPCORE_PERIPHCLK;
33}
34
35static void a9mpcore_clock_at_tick(void)
36{
37  volatile a9mpcore_gt *gt = A9MPCORE_GT;
38
39  gt->irqst = A9MPCORE_GT_IRQST_EFLG;
40}
41
42static void a9mpcore_clock_handler_install(void)
43{
44  rtems_status_code sc;
45
46  sc = rtems_interrupt_handler_install(
47    A9MPCORE_IRQ_GT,
48    "Clock",
49    RTEMS_INTERRUPT_UNIQUE,
50    (rtems_interrupt_handler) Clock_isr,
51    NULL
52  );
53  if (sc != RTEMS_SUCCESSFUL) {
54    bsp_fatal(BSP_ARM_A9MPCORE_FATAL_CLOCK_IRQ_INSTALL);
55  }
56}
57
58static uint64_t a9mpcore_clock_get_counter(volatile a9mpcore_gt *gt)
59{
60  uint32_t cl;
61  uint32_t cu1;
62  uint32_t cu2;
63
64  do {
65    cu1 = gt->cntrupper;
66    cl = gt->cntrlower;
67    cu2 = gt->cntrupper;
68  } while (cu1 != cu2);
69
70  return ((uint64_t) cu2 << 32) | cl;
71}
72
73static uint32_t a9mpcore_clock_get_timecount(struct timecounter *tc)
74{
75  volatile a9mpcore_gt *gt = A9MPCORE_GT;
76
77  return gt->cntrlower;
78}
79
80static void a9mpcore_clock_initialize(void)
81{
82  volatile a9mpcore_gt *gt = A9MPCORE_GT;
83  uint64_t periphclk = a9mpcore_clock_periphclk();
84  uint64_t us_per_tick = rtems_configuration_get_microseconds_per_tick();
85  uint32_t interval = (uint32_t) ((periphclk * us_per_tick) / 1000000);
86  uint64_t cmpval;
87
88  gt->ctrl &= A9MPCORE_GT_CTRL_TMR_EN;
89  gt->irqst = A9MPCORE_GT_IRQST_EFLG;
90
91  cmpval = a9mpcore_clock_get_counter(gt);
92  cmpval += interval;
93
94  gt->cmpvallower = (uint32_t) cmpval;
95  gt->cmpvalupper = (uint32_t) (cmpval >> 32);
96  gt->autoinc = interval;
97
98  gt->ctrl = A9MPCORE_GT_CTRL_AUTOINC_EN
99    | A9MPCORE_GT_CTRL_IRQ_EN
100    | A9MPCORE_GT_CTRL_COMP_EN
101    | A9MPCORE_GT_CTRL_TMR_EN;
102
103  a9mpcore_tc.tc_get_timecount = a9mpcore_clock_get_timecount;
104  a9mpcore_tc.tc_counter_mask = 0xffffffff;
105  a9mpcore_tc.tc_frequency = periphclk;
106  a9mpcore_tc.tc_quality = RTEMS_TIMECOUNTER_QUALITY_CLOCK_DRIVER;
107  rtems_timecounter_install(&a9mpcore_tc);
108}
109
110CPU_Counter_ticks _CPU_Counter_read(void)
111{
112  volatile a9mpcore_gt *gt = A9MPCORE_GT;
113
114  return gt->cntrlower;
115}
116
117static void a9mpcore_clock_cleanup_isr(void *arg)
118{
119  volatile a9mpcore_gt *gt = A9MPCORE_GT;
120
121  (void) arg;
122
123  gt->ctrl &= A9MPCORE_GT_CTRL_TMR_EN;
124  gt->irqst = A9MPCORE_GT_IRQST_EFLG;
125}
126
127static void a9mpcore_clock_cleanup(void)
128{
129  rtems_status_code sc;
130
131  /*
132   * The relevant registers / bits of the global timer are banked and chances
133   * are on an SPM system, that we are executing on the wrong CPU to reset
134   * them. Thus we will have the actual cleanup done with the next clock tick.
135   * The ISR will execute on the right CPU for the cleanup.
136   */
137  sc = rtems_interrupt_handler_install(
138    A9MPCORE_IRQ_GT,
139    "Clock",
140    RTEMS_INTERRUPT_REPLACE,
141    a9mpcore_clock_cleanup_isr,
142    NULL
143  );
144  if (sc != RTEMS_SUCCESSFUL) {
145    bsp_fatal(BSP_ARM_A9MPCORE_FATAL_CLOCK_IRQ_REMOVE);
146  }
147}
148
149#define Clock_driver_support_at_tick() \
150  a9mpcore_clock_at_tick()
151
152#define Clock_driver_support_initialize_hardware() \
153  a9mpcore_clock_initialize()
154
155#define Clock_driver_support_install_isr(isr, old_isr) \
156  do { \
157    a9mpcore_clock_handler_install(); \
158    old_isr = NULL; \
159  } while (0)
160
161#define Clock_driver_support_shutdown_hardware() \
162  a9mpcore_clock_cleanup()
163
164/* Include shared source clock driver code */
165#include "../../shared/clockdrv_shell.h"
Note: See TracBrowser for help on using the repository browser.