Blame view

RIOT/cpu/stm32_common/periph/timer.c 3.57 KB
a752c7ab   elopes   add first test an...
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  /*
   * Copyright (C) 2014-2016 Freie Universitรคt Berlin
   *
   * This file is subject to the terms and conditions of the GNU Lesser General
   * Public License v2.1. See the file LICENSE in the top level directory for more
   * details.
   */
  
  /**
   * @ingroup     cpu_stm32_common
   * @ingroup     drivers_periph_timer
   * @{
   *
   * @file
   * @brief       Low-level timer driver implementation
   *
   * @author      Hauke Petersen <hauke.petersen@fu-berlin.de>
   * @author      Thomas Eichinger <thomas.eichinger@fu-berlin.de>
   *
   * @}
   */
  
  #include "cpu.h"
  #include "periph/timer.h"
  
  /**
   * @brief   Timer specific additional bus clock presacler
   *
   * This prescale factor is dependent on the actual APBx bus clock divider, if
   * the APBx presacler is != 1, it is set to 2, if the APBx prescaler is == 1, it
   * is set to 1.
   *
   * See reference manuals section 'reset and clock control'.
   */
  static const uint8_t apbmul[] = {
  #if (CLOCK_APB1 < CLOCK_CORECLOCK)
      [APB1] = 2,
  #else
      [APB1] = 1,
  #endif
  #if (CLOCK_APB2 < CLOCK_CORECLOCK)
      [APB2] = 2
  #else
      [APB2] = 1
  #endif
  };
  
  /**
   * @brief   Interrupt context for each configured timer
   */
  static timer_isr_ctx_t isr_ctx[TIMER_NUMOF];
  
  /**
   * @brief   Get the timer device
   */
  static inline TIM_TypeDef *dev(tim_t tim)
  {
      return timer_config[tim].dev;
  }
  
  int timer_init(tim_t tim, unsigned long freq, timer_cb_t cb, void *arg)
  {
      /* check if device is valid */
      if (tim >= TIMER_NUMOF) {
          return -1;
      }
  
      /* remember the interrupt context */
      isr_ctx[tim].cb = cb;
      isr_ctx[tim].arg = arg;
  
      /* enable the peripheral clock */
      periph_clk_en(timer_config[tim].bus, timer_config[tim].rcc_mask);
  
      /* configure the timer as upcounter in continuous mode */
      dev(tim)->CR1  = 0;
      dev(tim)->CR2  = 0;
      dev(tim)->ARR  = timer_config[tim].max;
  
      /* set prescaler */
      dev(tim)->PSC = (((periph_apb_clk(timer_config[tim].bus) *
                         apbmul[timer_config[tim].bus]) / freq) - 1);
      /* generate an update event to apply our configuration */
      dev(tim)->EGR = TIM_EGR_UG;
  
      /* enable the timer's interrupt */
      NVIC_EnableIRQ(timer_config[tim].irqn);
      /* reset the counter and start the timer */
      timer_start(tim);
  
      return 0;
  }
  
  int timer_set_absolute(tim_t tim, int channel, unsigned int value)
  {
      if (channel >= TIMER_CHAN) {
          return -1;
      }
  
      dev(tim)->CCR[channel] = (value & timer_config[tim].max);
      dev(tim)->SR &= ~(TIM_SR_CC1IF << channel);
      dev(tim)->DIER |= (TIM_DIER_CC1IE << channel);
  
      return 0;
  }
  
  int timer_clear(tim_t tim, int channel)
  {
      if (channel >= TIMER_CHAN) {
          return -1;
      }
  
      dev(tim)->DIER &= ~(TIM_DIER_CC1IE << channel);
      return 0;
  }
  
  unsigned int timer_read(tim_t tim)
  {
      return (unsigned int)dev(tim)->CNT;
  }
  
  void timer_start(tim_t tim)
  {
      dev(tim)->CR1 |= TIM_CR1_CEN;
  }
  
  void timer_stop(tim_t tim)
  {
      dev(tim)->CR1 &= ~(TIM_CR1_CEN);
  }
  
  static inline void irq_handler(tim_t tim)
  {
      uint32_t status = (dev(tim)->SR & dev(tim)->DIER);
  
      for (unsigned int i = 0; i < TIMER_CHAN; i++) {
          if (status & (TIM_SR_CC1IF << i)) {
              dev(tim)->DIER &= ~(TIM_DIER_CC1IE << i);
              isr_ctx[tim].cb(isr_ctx[tim].arg, i);
          }
      }
      cortexm_isr_end();
  }
  
  #ifdef TIMER_0_ISR
  void TIMER_0_ISR(void)
  {
      irq_handler(0);
  }
  #endif
  
  #ifdef TIMER_1_ISR
  void TIMER_1_ISR(void)
  {
      irq_handler(1);
  }
  #endif
  
  #ifdef TIMER_2_ISR
  void TIMER_2_ISR(void)
  {
      irq_handler(2);
  }
  #endif
  
  #ifdef TIMER_3_ISR
  void TIMER_3_ISR(void)
  {
      irq_handler(3);
  }
  #endif
  
  #ifdef TIMER_4_ISR
  void TIMER_4_ISR(void)
  {
      irq_handler(4);
  }
  #endif