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
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2017 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
*/
#include <common.h>
#include <init.h>
#include <driver.h>
#include <clock.h>
#include <efi.h>
#include <efi/efi.h>
#include <efi/efi-device.h>
#include <linux/err.h>
static uint64_t ticks = 1;
static void *efi_cs_evt;
static uint64_t efi_cs_read(void)
{
return ticks;
}
static void efi_cs_inc(void *event, void *ctx)
{
ticks++;
}
/* count ticks during a 1dms */
static uint64_t ticks_freq(void)
{
uint64_t ticks_start, ticks_end;
ticks_start = ticks;
BS->stall(1000);
ticks_end = ticks;
return (ticks_end - ticks_start) * 1000;
}
/* count ticks during a 20ms delay as on qemu x86_64 the max is 100Hz */
static uint64_t ticks_freq_x86(void)
{
uint64_t ticks_start, ticks_end;
ticks_start = ticks;
BS->stall(20 * 1000);
ticks_end = ticks;
return (ticks_end - ticks_start) * 50;
}
static int efi_cs_init(struct clocksource *cs)
{
efi_status_t efiret;
uint64_t freq;
efiret = BS->create_event(EFI_EVT_TIMER | EFI_EVT_NOTIFY_SIGNAL,
EFI_TPL_CALLBACK, efi_cs_inc, NULL, &efi_cs_evt);
if (EFI_ERROR(efiret))
return -efi_errno(efiret);
efiret = BS->set_timer(efi_cs_evt, EFI_TIMER_PERIODIC, 10);
if (EFI_ERROR(efiret)) {
BS->close_event(efi_cs_evt);
return -efi_errno(efiret);
}
freq = 1000 * 1000;
if (ticks_freq() < 800 * 1000) {
uint64_t nb_100ns;
freq = ticks_freq_x86();
if (freq == 0) {
BS->close_event(efi_cs_evt);
return -ENODEV;
}
nb_100ns = 10 * 1000 * 1000 / freq;
pr_warn("EFI Event timer too slow freq = %llu Hz\n", freq);
efiret = BS->set_timer(efi_cs_evt, EFI_TIMER_PERIODIC, nb_100ns);
if (EFI_ERROR(efiret)) {
BS->close_event(efi_cs_evt);
return -efi_errno(efiret);
}
}
cs->mult = clocksource_hz2mult(freq, cs->shift);
return 0;
}
static struct clocksource efi_cs = {
.read = efi_cs_read,
.mask = CLOCKSOURCE_MASK(64),
.shift = 0,
.init = efi_cs_init,
};
static int efi_cs_probe(struct device_d *dev)
{
return init_clock(&efi_cs);
}
static struct driver_d efi_cs_driver = {
.name = "efi-cs",
.probe = efi_cs_probe,
};
core_platform_driver(efi_cs_driver);
|