summaryrefslogtreecommitdiffstats
path: root/app/ref.c
blob: 6d335ce20c0c3c62d75d62c771888e7f82a24ed6 (plain)
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
#include "project.h"

static volatile unsigned us_ref_idx;
static volatile uint64_t us_ref_freq[2];
static volatile uint64_t us_ref_offset[2];
static volatile uint64_t us_ref_phase[2];

static volatile unsigned us_ro_idx;
static volatile uint32_t us_ro_high_tick[2];
static volatile int us_ro_mm[2];


static int64_t ref_offset;
static int64_t ref_phase;
static int64_t ref_freq = HW_CLOCK_HZ;

uint64_t ref_last_update;
int ref_valid = 0;
int ref_offset_known = 0;


static void us_put (void)
{
  unsigned i = us_ref_idx;

  i ^= 1;
  us_ref_freq[i] = ref_freq;
  us_ref_offset[i] = ref_offset;
  us_ref_phase[i] = ref_phase;

  compiler_mb();
  us_ref_idx = i;
}

static void us_get (uint64_t *f, uint64_t *o, uint64_t *p)
{
  unsigned i;

  do {
    i = us_ref_idx;
    *f = us_ref_freq[i];
    *o = us_ref_offset[i];
    *p = us_ref_phase[i];
    compiler_mb();
  } while (i != us_ref_idx);
}

#if HW_CLOCK_LEN == 32

#define QUARTER (1UL << 29)
#define HALF (1UL << 30)
#define THREE_QUARTERS (HALF+QUARTER)
#define ONE (~(uint32_t)0)

uint64_t ref_extend_irq (uint32_t now)
{
  uint64_t ret;
  uint32_t ht;
  int m;

  ht = us_ro_high_tick[us_ro_idx];
  m = us_ro_mm[us_ro_idx];

  if (!m) {
    ret = ht;
    ret <<= 32;
    ret |= now;
  } else {
    if (now < HALF) {
      ret = ht;
      ret <<= 32;
      ret |= now;
    } else {
      ret = ht - 1;
      ret <<= 32;
      ret |= now;
    }
  }

  return ret;
}

uint64_t ref_extend (uint32_t now)
{
  uint64_t ret;

  uint32_t ht, oht;
  int m, om;
  unsigned i = us_ro_idx;

  oht = ht = us_ro_high_tick[i];
  om = m = us_ro_mm[i];


  if (!m) {
    ret = ht;
    ret <<= 32;
    ret |= now;


    if ((now > THREE_QUARTERS) && (now <= ONE)) {
      ht++;
      m = 1;
    }

  } else {
    if (now < HALF) {
      ret = ht;
      ret <<= 32;
      ret |= now;
    } else {
      ret = ht - 1;
      ret <<= 32;
      ret |= now;
    }

    if ((now > QUARTER) && (now < HALF))
      m = 0;
  }


  if ((ht != oht) || (m != om))  {
    i ^= 1;
    us_ro_high_tick[i] = ht;
    us_ro_mm[i] = m;
    compiler_mb();
    us_ro_idx = i;
  }

  return ret;
}
#elif HW_CLOCK_LEN == 31

#define QUARTER (1UL << 28)
#define HALF (1UL << 29)
#define THREE_QUARTERS (HALF+QUARTER)
#define ONE (0x7fffffff)


uint64_t ref_extend_irq (uint32_t now)
{
  uint64_t ret;


  uint32_t ht;
  int m;

  ht = us_ro_high_tick[us_ro_idx];
  m = us_ro_mm[us_ro_idx];


  if (!m) {
    ret = ht;
    ret <<= 31;
    ret |= now;
  } else {
    if (now < HALF) {
      ret = ht;
      ret <<= 31;
      ret |= now;
    } else {
      ret = ht - 1;
      ret <<= 31;
      ret |= now;
    }
  }

  return ret;
}


uint64_t ref_extend (uint32_t now)
{
  uint64_t ret;


  uint32_t ht, oht;
  int m, om;
  unsigned i = us_ro_idx;

  oht = ht = us_ro_high_tick[i];
  om = m = us_ro_mm[i];




  if (!m) {
    ret = ht;
    ret <<= 31;
    ret |= now;

    if ((now > THREE_QUARTERS) && (now <= ONE)) {
      ht++;
      m = 1;
    }

  } else {
    if (now < HALF) {
      ret = ht;
      ret <<= 31;
      ret |= now;
    } else {
      ret = ht - 1;
      ret <<= 31;
      ret |= now;
    }

    if ((now > QUARTER) && (now < HALF))
      m = 0;
  }



  if ((ht != oht) || (m != om))  {
    i ^= 1;
    us_ro_high_tick[i] = ht;
    us_ro_mm[i] = m;
    compiler_mb();
    us_ro_idx = i;
  }

  return ret;
}





#else
#error unknown hardware clock length
#endif


uint64_t ref_get_irq (void)
{
  uint32_t now = HW_CLOCK_REG;
  return ref_extend_irq (now);
}


uint64_t ref_get (void)
{
  uint32_t now = HW_CLOCK_REG;
  return ref_extend (now);
}


void ref_slow_tick()
{
  ref_get();
}



static void modify_ref_freq (uint64_t now, uint64_t new)
{
  int64_t pd1, pd2, te;

  pd1 = now - ref_phase;
  te = pd1 / ref_freq;
  pd1 %= ref_freq;

  if (pd1 > (ref_freq >> 1)) {
    te++;
    pd1 = pd1 - ref_freq;
  }

  ref_freq = new;

  pd2 = pd1 + (te * ref_freq);

  ref_phase = now - pd2;

}

uint64_t make_happy (uint64_t abs, int64_t shift)
{
  shift *= HW_CLOCK_HZ;

  if (shift < 0) {
    shift = -shift;

    if (abs < (uint64_t) shift) return 0;
    else
      return abs - shift;
  }

  return abs + shift;


}

#define FF_B 16
#define FF_A ((FF_B)-1)
#define FF_C 16

static uint64_t fff;

static void fll_init (uint64_t start_freq)
{
  fff = start_freq * FF_C;
}

static uint64_t fll (uint64_t obs_freq)
{
  uint64_t new_freq;



  fff *= FF_A;
  fff += obs_freq * FF_C;
  fff += FF_B / 2;
  fff /= FF_B;

  new_freq = fff;
  new_freq += FF_C / 2;
  new_freq /= FF_C;


  return new_freq;
}


static int64_t edge_to_phase (uint64_t edge)
{
  int64_t obs_phase;
  obs_phase = edge - ref_phase;
  obs_phase %= ref_freq;

  if (obs_phase > ref_freq / 2)
    obs_phase -= ref_freq;

  return obs_phase;
}

#define PF_A 16
static uint64_t pll (int64_t obs_phase)
{
  int64_t pd ;


  pd = obs_phase / PF_A;

  if (!pd) {
    if (obs_phase < 0) pd--;

    if (obs_phase > 0) pd++;
  }


  return pd;
}



void ref_dispatch (uint64_t edge, const char *src)
{
  static uint64_t last_edge;
  uint64_t obs_freq, obs_phase, new_freq;
  static int jump_start = 1;

  if (!last_edge) {
    last_edge = edge;
    return;
  }


  obs_freq = edge - last_edge;
  last_edge = edge;
  obs_phase = edge_to_phase (edge);



  //  delta_f = obs_freq - ref_freq;



#ifdef CHATTY_PLLS
  printf ("REF PLL: obs_f=%9d delta_phi=%5d f=%9d %s\r\n",
          (int) obs_freq,
          (int) obs_phase,
          (int) ref_freq, src);
#endif


  /*Ignore bogus observations*/
  if (obs_freq > (HW_CLOCK_HZ + (HW_CLOCK_HZ / 2)))
    return;

  if (obs_freq < (HW_CLOCK_HZ - (HW_CLOCK_HZ / 2)))
    return;

  if (jump_start) {
    new_freq = obs_freq;
    fll_init (new_freq);
    modify_ref_freq (edge, new_freq);
    ref_phase += obs_phase;

    jump_start = 0;
  } else {
    new_freq = fll (obs_freq);
    modify_ref_freq (edge, new_freq);
    ref_phase += pll (obs_phase);
  }

  if (ref_offset_known)
    ref_valid = 1;

  us_put();
  ref_last_update = edge;
}



void ref_set_offset (EPOCH epoch, uint64_t abs)
{
  int64_t new_offset;
  int diff;


  /* Find nearest second to abs*/
  abs += ref_freq >> 2;
  abs -= ref_phase;
  abs /= ref_freq;

  new_offset = epoch.s - abs;

  if (new_offset != ref_offset) {
    diff = (int) (new_offset - ref_offset);


    printf ("REF wallclock offset moved by %d\r\n", diff);
    ref_offset = new_offset;
  }

  us_put();
  ref_offset_known = 1;
  time_known = 1;
}




static EPOCH _ref_decompose (uint64_t abs, uint64_t f, uint64_t o)
{
  EPOCH ret;


  ret.s = abs / f;
  abs -= f * ret.s;

  ret.s += o;

  abs *= (uint64_t) 1000000000;
  abs = abs / f;

  ret.ns = abs;

  return ret;
}

EPOCH ref_decompose_diff (int64_t diff)
{
  EPOCH ret;
  uint64_t f, o, p;

  us_get (&f, &o, &p);

  if (diff >= 0)
    return _ref_decompose (diff, f, o);

  ret = _ref_decompose (-diff, f, o);
  ret.s = -ret.s;
  ret.ns = -ret.ns;

  return ret;
}


EPOCH ref_decompose (uint64_t abs)
{
  uint64_t f, o, p;
  us_get (&f, &o, &p);

  abs -= p;

  return _ref_decompose (abs, f, o);
}