blob: 547fa7fe29f4db3041391d640bf4a7dc9725cbcd (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* PPS dummy generator
*
* Copyright (C) 2024 Rodolfo Giometti <giometti@enneenne.com>
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/time.h>
#include <linux/timer.h>
#include <linux/random.h>
#include <linux/pps_gen_kernel.h>
static struct pps_gen_device *pps_gen;
static struct timer_list ktimer;
static unsigned int get_random_delay(void)
{
unsigned int delay = get_random_u8() & 0x0f;
return (delay + 1) * HZ;
}
/*
* The kernel timer
*/
static void pps_gen_ktimer_event(struct timer_list *unused)
{
pps_gen_event(pps_gen, PPS_GEN_EVENT_MISSEDPULSE, NULL);
}
/*
* PPS Generator methods
*/
static int pps_gen_dummy_get_time(struct pps_gen_device *pps_gen,
struct timespec64 *time)
{
struct system_time_snapshot snap;
ktime_get_snapshot(&snap);
*time = ktime_to_timespec64(snap.real);
return 0;
}
static int pps_gen_dummy_enable(struct pps_gen_device *pps_gen, bool enable)
{
if (enable)
mod_timer(&ktimer, jiffies + get_random_delay());
else
timer_delete_sync(&ktimer);
return 0;
}
/*
* The PPS info struct
*/
static const struct pps_gen_source_info pps_gen_dummy_info = {
.use_system_clock = true,
.get_time = pps_gen_dummy_get_time,
.enable = pps_gen_dummy_enable,
};
/*
* Module staff
*/
static void __exit pps_gen_dummy_exit(void)
{
timer_delete_sync(&ktimer);
pps_gen_unregister_source(pps_gen);
}
static int __init pps_gen_dummy_init(void)
{
pps_gen = pps_gen_register_source(&pps_gen_dummy_info);
if (IS_ERR(pps_gen))
return PTR_ERR(pps_gen);
timer_setup(&ktimer, pps_gen_ktimer_event, 0);
return 0;
}
module_init(pps_gen_dummy_init);
module_exit(pps_gen_dummy_exit);
MODULE_AUTHOR("Rodolfo Giometti <giometti@enneenne.com>");
MODULE_DESCRIPTION("LinuxPPS dummy generator");
MODULE_LICENSE("GPL");
|