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
|
/* $OpenBSD: agtimer.c,v 1.15 2022/03/12 14:40:41 mpi Exp $ */
/*
* Copyright (c) 2011 Dale Rahn <drahn@openbsd.org>
* Copyright (c) 2013 Patrick Wildt <patrick@blueri.se>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/timetc.h>
#include <machine/intr.h>
#include <machine/bus.h>
#include <machine/fdt.h>
#include <arm/cpufunc.h>
#include <dev/ofw/fdt.h>
#include <dev/ofw/openfirm.h>
/* registers */
#define GTIMER_CNTP_CTL_ENABLE (1 << 0)
#define GTIMER_CNTP_CTL_IMASK (1 << 1)
#define GTIMER_CNTP_CTL_ISTATUS (1 << 2)
#define TIMER_FREQUENCY 24 * 1000 * 1000 /* ARM core clock */
int32_t agtimer_frequency = TIMER_FREQUENCY;
u_int agtimer_get_timecount(struct timecounter *);
static struct timecounter agtimer_timecounter = {
.tc_get_timecount = agtimer_get_timecount,
.tc_poll_pps = NULL,
.tc_counter_mask = 0xffffffff,
.tc_frequency = 0,
.tc_name = "agtimer",
.tc_quality = 0,
.tc_priv = NULL,
};
struct agtimer_pcpu_softc {
uint64_t pc_nexttickevent;
uint64_t pc_nextstatevent;
u_int32_t pc_ticks_err_sum;
};
struct agtimer_softc {
struct device sc_dev;
int sc_node;
struct agtimer_pcpu_softc sc_pstat[MAXCPUS];
u_int32_t sc_ticks_err_cnt;
u_int32_t sc_ticks_per_second;
u_int32_t sc_ticks_per_intr;
u_int32_t sc_statvar;
u_int32_t sc_statmin;
#ifdef AMPTIMER_DEBUG
struct evcount sc_clk_count;
struct evcount sc_stat_count;
#endif
};
int agtimer_match(struct device *, void *, void *);
void agtimer_attach(struct device *, struct device *, void *);
uint64_t agtimer_readcnt64(void);
int agtimer_intr(void *);
void agtimer_cpu_initclocks(void);
void agtimer_delay(u_int);
void agtimer_setstatclockrate(int stathz);
void agtimer_set_clockrate(int32_t new_frequency);
void agtimer_startclock(void);
const struct cfattach agtimer_ca = {
sizeof (struct agtimer_softc), agtimer_match, agtimer_attach
};
struct cfdriver agtimer_cd = {
NULL, "agtimer", DV_DULL
};
uint64_t
agtimer_readcnt64(void)
{
uint64_t val;
__asm volatile("mrrc p15, 0, %Q0, %R0, c14" : "=r" (val));
return (val);
}
static inline int
agtimer_get_ctrl(void)
{
uint32_t val;
__asm volatile("mrc p15, 0, %0, c14, c2, 1" : "=r" (val));
return (val);
}
static inline int
agtimer_set_ctrl(uint32_t val)
{
__asm volatile("mcr p15, 0, %[val], c14, c2, 1" : :
[val] "r" (val));
cpu_drain_writebuf();
//isb();
return (0);
}
static inline int
agtimer_set_tval(uint32_t val)
{
__asm volatile("mcr p15, 0, %[val], c14, c2, 0" : :
[val] "r" (val));
cpu_drain_writebuf();
//isb();
return (0);
}
int
agtimer_match(struct device *parent, void *cfdata, void *aux)
{
struct fdt_attach_args *faa = (struct fdt_attach_args *)aux;
return OF_is_compatible(faa->fa_node, "arm,armv7-timer");
}
void
agtimer_attach(struct device *parent, struct device *self, void *aux)
{
struct agtimer_softc *sc = (struct agtimer_softc *)self;
struct fdt_attach_args *faa = aux;
sc->sc_node = faa->fa_node;
agtimer_frequency =
OF_getpropint(sc->sc_node, "clock-frequency", agtimer_frequency);
sc->sc_ticks_per_second = agtimer_frequency;
printf(": %d kHz\n", sc->sc_ticks_per_second / 1000);
/* XXX: disable user access */
#ifdef AMPTIMER_DEBUG
evcount_attach(&sc->sc_clk_count, "clock", NULL);
evcount_attach(&sc->sc_stat_count, "stat", NULL);
#endif
/*
* private timer and interrupts not enabled until
* timer configures
*/
arm_clock_register(agtimer_cpu_initclocks, agtimer_delay,
agtimer_setstatclockrate, agtimer_startclock);
agtimer_timecounter.tc_frequency = sc->sc_ticks_per_second;
agtimer_timecounter.tc_priv = sc;
tc_init(&agtimer_timecounter);
}
u_int
agtimer_get_timecount(struct timecounter *tc)
{
return agtimer_readcnt64();
}
int
agtimer_intr(void *frame)
{
struct agtimer_softc *sc = agtimer_cd.cd_devs[0];
struct agtimer_pcpu_softc *pc = &sc->sc_pstat[CPU_INFO_UNIT(curcpu())];
uint64_t now;
uint64_t nextevent;
uint32_t r;
#if defined(USE_GTIMER_CMP)
int skip = 1;
#else
int64_t delay;
#endif
int rc = 0;
/*
* DSR - I know that the tick timer is 64 bits, but the following
* code deals with rollover, so there is no point in dealing
* with the 64 bit math, just let the 32 bit rollover
* do the right thing
*/
now = agtimer_readcnt64();
while (pc->pc_nexttickevent <= now) {
pc->pc_nexttickevent += sc->sc_ticks_per_intr;
pc->pc_ticks_err_sum += sc->sc_ticks_err_cnt;
/* looping a few times is faster than divide */
while (pc->pc_ticks_err_sum > hz) {
pc->pc_nexttickevent += 1;
pc->pc_ticks_err_sum -= hz;
}
#ifdef AMPTIMER_DEBUG
sc->sc_clk_count.ec_count++;
#endif
rc = 1;
hardclock(frame);
}
while (pc->pc_nextstatevent <= now) {
do {
r = random() & (sc->sc_statvar -1);
} while (r == 0); /* random == 0 not allowed */
pc->pc_nextstatevent += sc->sc_statmin + r;
/* XXX - correct nextstatevent? */
#ifdef AMPTIMER_DEBUG
sc->sc_stat_count.ec_count++;
#endif
rc = 1;
statclock(frame);
}
if (pc->pc_nexttickevent < pc->pc_nextstatevent)
nextevent = pc->pc_nexttickevent;
else
nextevent = pc->pc_nextstatevent;
delay = nextevent - now;
if (delay < 0)
delay = 1;
agtimer_set_tval(delay);
return (rc);
}
void
agtimer_set_clockrate(int32_t new_frequency)
{
struct agtimer_softc *sc = agtimer_cd.cd_devs[0];
agtimer_frequency = new_frequency;
if (sc == NULL)
return;
sc->sc_ticks_per_second = agtimer_frequency;
agtimer_timecounter.tc_frequency = sc->sc_ticks_per_second;
printf("agtimer0: adjusting clock: new rate %d kHz\n",
sc->sc_ticks_per_second / 1000);
}
void
agtimer_cpu_initclocks(void)
{
struct agtimer_softc *sc = agtimer_cd.cd_devs[0];
struct agtimer_pcpu_softc *pc = &sc->sc_pstat[CPU_INFO_UNIT(curcpu())];
uint32_t reg;
uint64_t next;
stathz = hz;
profhz = hz * 10;
if (sc->sc_ticks_per_second != agtimer_frequency) {
agtimer_set_clockrate(agtimer_frequency);
}
agtimer_setstatclockrate(stathz);
sc->sc_ticks_per_intr = sc->sc_ticks_per_second / hz;
sc->sc_ticks_err_cnt = sc->sc_ticks_per_second % hz;
pc->pc_ticks_err_sum = 0;
/* Setup secure and non-secure timer IRQs. */
arm_intr_establish_fdt_idx(sc->sc_node, 0, IPL_CLOCK,
agtimer_intr, NULL, "tick");
arm_intr_establish_fdt_idx(sc->sc_node, 1, IPL_CLOCK,
agtimer_intr, NULL, "tick");
next = agtimer_readcnt64() + sc->sc_ticks_per_intr;
pc->pc_nexttickevent = pc->pc_nextstatevent = next;
reg = agtimer_get_ctrl();
reg &= ~GTIMER_CNTP_CTL_IMASK;
reg |= GTIMER_CNTP_CTL_ENABLE;
agtimer_set_tval(sc->sc_ticks_per_second);
agtimer_set_ctrl(reg);
}
void
agtimer_delay(u_int usecs)
{
u_int32_t clock, oclock, delta, delaycnt;
volatile int j;
int csec, usec;
if (usecs > (0x80000000 / agtimer_frequency)) {
csec = usecs / 10000;
usec = usecs % 10000;
delaycnt = (agtimer_frequency / 100) * csec +
(agtimer_frequency / 100) * usec / 10000;
} else {
delaycnt = agtimer_frequency * usecs / 1000000;
}
if (delaycnt <= 1)
for (j = 100; j > 0; j--)
;
oclock = agtimer_readcnt64();
while (1) {
for (j = 100; j > 0; j--)
;
clock = agtimer_readcnt64();
delta = clock - oclock;
if (delta > delaycnt)
break;
}
}
void
agtimer_setstatclockrate(int newhz)
{
struct agtimer_softc *sc = agtimer_cd.cd_devs[0];
int minint, statint;
int s;
s = splclock();
statint = sc->sc_ticks_per_second / newhz;
/* calculate largest 2^n which is smaller that just over half statint */
sc->sc_statvar = 0x40000000; /* really big power of two */
minint = statint / 2 + 100;
while (sc->sc_statvar > minint)
sc->sc_statvar >>= 1;
sc->sc_statmin = statint - (sc->sc_statvar >> 1);
splx(s);
/*
* XXX this allows the next stat timer to occur then it switches
* to the new frequency. Rather than switching instantly.
*/
}
void
agtimer_startclock(void)
{
struct agtimer_softc *sc = agtimer_cd.cd_devs[0];
struct agtimer_pcpu_softc *pc = &sc->sc_pstat[CPU_INFO_UNIT(curcpu())];
uint64_t nextevent;
uint32_t reg;
nextevent = agtimer_readcnt64() + sc->sc_ticks_per_intr;
pc->pc_nexttickevent = pc->pc_nextstatevent = nextevent;
reg = agtimer_get_ctrl();
reg &= ~GTIMER_CNTP_CTL_IMASK;
reg |= GTIMER_CNTP_CTL_ENABLE;
agtimer_set_tval(sc->sc_ticks_per_second);
agtimer_set_ctrl(reg);
}
void
agtimer_init(void)
{
uint32_t id_pfr1, cntfrq = 0;
/* Check for Generic Timer support. */
__asm volatile("mrc p15, 0, %0, c0, c1, 1" : "=r"(id_pfr1));
if ((id_pfr1 & 0x000f0000) == 0x00010000)
__asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (cntfrq));
if (cntfrq != 0) {
agtimer_frequency = cntfrq;
arm_clock_register(NULL, agtimer_delay, NULL, NULL);
}
}
|