Blame view

RIOT/sys/xtimer/xtimer.c 7.24 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
  /*
   * Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
   * Copyright (C) 2016 Eistec AB
   *
   * 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 xtimer
   * @{
   * @file
   * @brief xtimer convenience functionality
   * @author Kaspar Schleiser <kaspar@schleiser.de>
   * @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
   * @}
   */
  
  #include <assert.h>
  #include <stdint.h>
  #include <string.h>
  
  #include "xtimer.h"
  #include "mutex.h"
  #include "thread.h"
  #include "irq.h"
  #include "div.h"
  #include "list.h"
  
  #include "timex.h"
  
  #ifdef MODULE_CORE_THREAD_FLAGS
  #include "thread_flags.h"
  #endif
  
  #define ENABLE_DEBUG 0
  #include "debug.h"
  
  typedef struct {
      mutex_t *mutex;
      thread_t *thread;
      int timeout;
  } mutex_thread_t;
  
  static void _callback_unlock_mutex(void* arg)
  {
      mutex_t *mutex = (mutex_t *) arg;
      mutex_unlock(mutex);
  }
  
  void _xtimer_tsleep(uint32_t offset, uint32_t long_offset)
  {
      if (irq_is_in()) {
          assert(!long_offset);
          _xtimer_spin(offset);
          return;
      }
  
      xtimer_t timer;
      mutex_t mutex = MUTEX_INIT;
  
      timer.callback = _callback_unlock_mutex;
      timer.arg = (void*) &mutex;
      timer.target = timer.long_target = 0;
  
      mutex_lock(&mutex);
      _xtimer_set64(&timer, offset, long_offset);
      mutex_lock(&mutex);
  }
  
  void _xtimer_periodic_wakeup(uint32_t *last_wakeup, uint32_t period) {
      xtimer_t timer;
      mutex_t mutex = MUTEX_INIT;
  
      timer.callback = _callback_unlock_mutex;
      timer.arg = (void*) &mutex;
  
      uint32_t target = (*last_wakeup) + period;
      uint32_t now = _xtimer_now();
      /* make sure we're not setting a value in the past */
      if (now < (*last_wakeup)) {
          /* base timer overflowed between last_wakeup and now */
          if (!((now < target) && (target < (*last_wakeup)))) {
              /* target time has already passed */
              goto out;
          }
      }
      else {
          /* base timer did not overflow */
          if ((((*last_wakeup) <= target) && (target <= now))) {
              /* target time has already passed */
              goto out;
          }
      }
  
      /*
       * For large offsets, set an absolute target time.
       * As that might cause an underflow, for small offsets, set a relative
       * target time.
       * For very small offsets, spin.
       */
      /*
       * Note: last_wakeup _must never_ specify a time in the future after
       * _xtimer_periodic_sleep returns.
       * If this happens, last_wakeup may specify a time in the future when the
       * next call to _xtimer_periodic_sleep is made, which in turn will trigger
       * the overflow logic above and make the next timer fire too early, causing
       * last_wakeup to point even further into the future, leading to a chain
       * reaction.
       *
       * tl;dr Don't return too early!
       */
      uint32_t offset = target - now;
      DEBUG("xps, now: %9" PRIu32 ", tgt: %9" PRIu32 ", off: %9" PRIu32 "\n", now, target, offset);
      if (offset < XTIMER_PERIODIC_SPIN) {
          _xtimer_spin(offset);
      }
      else {
          if (offset < XTIMER_PERIODIC_RELATIVE) {
              /* NB: This will overshoot the target by the amount of time it took
               * to get here from the beginning of xtimer_periodic_wakeup()
               *
               * Since interrupts are normally enabled inside this function, this time may
               * be undeterministic. */
              target = _xtimer_now() + offset;
          }
          mutex_lock(&mutex);
          DEBUG("xps, abs: %" PRIu32 "\n", target);
          _xtimer_set_absolute(&timer, target);
          mutex_lock(&mutex);
      }
  out:
      *last_wakeup = target;
  }
  
  static void _callback_msg(void* arg)
  {
      msg_t *msg = (msg_t*)arg;
      msg_send_int(msg, msg->sender_pid);
  }
  
  static inline void _setup_msg(xtimer_t *timer, msg_t *msg, kernel_pid_t target_pid)
  {
      timer->callback = _callback_msg;
      timer->arg = (void*) msg;
  
      /* use sender_pid field to get target_pid into callback function */
      msg->sender_pid = target_pid;
  }
  
  void _xtimer_set_msg(xtimer_t *timer, uint32_t offset, msg_t *msg, kernel_pid_t target_pid)
  {
      _setup_msg(timer, msg, target_pid);
      _xtimer_set(timer, offset);
  }
  
  void _xtimer_set_msg64(xtimer_t *timer, uint64_t offset, msg_t *msg, kernel_pid_t target_pid)
  {
      _setup_msg(timer, msg, target_pid);
      _xtimer_set64(timer, offset, offset >> 32);
  }
  
  static void _callback_wakeup(void* arg)
  {
      thread_wakeup((kernel_pid_t)((intptr_t)arg));
  }
  
  void _xtimer_set_wakeup(xtimer_t *timer, uint32_t offset, kernel_pid_t pid)
  {
      timer->callback = _callback_wakeup;
      timer->arg = (void*) ((intptr_t)pid);
  
      _xtimer_set(timer, offset);
  }
  
  void _xtimer_set_wakeup64(xtimer_t *timer, uint64_t offset, kernel_pid_t pid)
  {
      timer->callback = _callback_wakeup;
      timer->arg = (void*) ((intptr_t)pid);
  
      _xtimer_set64(timer, offset, offset >> 32);
  }
  
  void xtimer_now_timex(timex_t *out)
  {
      uint64_t now = xtimer_usec_from_ticks64(xtimer_now64());
  
      out->seconds = div_u64_by_1000000(now);
      out->microseconds = now - (out->seconds * US_PER_SEC);
  }
  
  /* Prepares the message to trigger the timeout.
   * Additionally, the xtimer_t struct gets initialized.
   */
  static void _setup_timer_msg(msg_t *m, xtimer_t *t)
  {
      m->type = MSG_XTIMER;
      m->content.ptr = m;
  
      t->target = t->long_target = 0;
  }
  
  /* Waits for incoming message or timeout. */
  static int _msg_wait(msg_t *m, msg_t *tmsg, xtimer_t *t)
  {
      msg_receive(m);
      if (m->type == MSG_XTIMER && m->content.ptr == tmsg) {
          /* we hit the timeout */
          return -1;
      }
      else {
          xtimer_remove(t);
          return 1;
      }
  }
  
  int _xtimer_msg_receive_timeout64(msg_t *m, uint64_t timeout_ticks) {
      msg_t tmsg;
      xtimer_t t;
      _setup_timer_msg(&tmsg, &t);
      _xtimer_set_msg64(&t, timeout_ticks, &tmsg, sched_active_pid);
      return _msg_wait(m, &tmsg, &t);
  }
  
  int _xtimer_msg_receive_timeout(msg_t *msg, uint32_t timeout_ticks)
  {
      msg_t tmsg;
      xtimer_t t;
      _setup_timer_msg(&tmsg, &t);
      _xtimer_set_msg(&t, timeout_ticks, &tmsg, sched_active_pid);
      return _msg_wait(msg, &tmsg, &t);
  }
  
  static void _mutex_timeout(void *arg)
  {
      mutex_thread_t *mt = (mutex_thread_t *)arg;
  
      mt->timeout = 1;
      list_node_t *node = list_remove(&mt->mutex->queue,
                                      (list_node_t *)&mt->thread->rq_entry);
      if ((node != NULL) && (mt->mutex->queue.next == NULL)) {
          mt->mutex->queue.next = MUTEX_LOCKED;
      }
      sched_set_status(mt->thread, STATUS_PENDING);
      thread_yield_higher();
  }
  
  int xtimer_mutex_lock_timeout(mutex_t *mutex, uint64_t timeout)
  {
      xtimer_t t;
      mutex_thread_t mt = { mutex, (thread_t *)sched_active_thread, 0 };
  
      if (timeout != 0) {
          t.callback = _mutex_timeout;
          t.arg = (void *)((mutex_thread_t *)&mt);
          _xtimer_set64(&t, timeout, timeout >> 32);
      }
  
      mutex_lock(mutex);
      xtimer_remove(&t);
      return -mt.timeout;
  }
  
  #ifdef MODULE_CORE_THREAD_FLAGS
  static void _set_timeout_flag_callback(void* arg)
  {
      thread_flags_set(arg, THREAD_FLAG_TIMEOUT);
  }
  
  void xtimer_set_timeout_flag(xtimer_t *t, uint32_t timeout)
  {
      t->callback = _set_timeout_flag_callback;
      t->arg = (thread_t *)sched_active_thread;
      thread_flags_clear(THREAD_FLAG_TIMEOUT);
      xtimer_set(t, timeout);
  }
  #endif