1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * PTP 1588 clock support
5 * Copyright (C) 2010 OMICRON electronics GmbH
8 #include <linux/device.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/posix-clock.h>
14 #include <linux/pps_kernel.h>
15 #include <linux/slab.h>
16 #include <linux/syscalls.h>
17 #include <linux/uaccess.h>
18 #include <uapi/linux/sched/types.h>
20 #include "ptp_private.h"
22 #define PTP_MAX_ALARMS 4
23 #define PTP_PPS_DEFAULTS (PPS_CAPTUREASSERT | PPS_OFFSETASSERT)
24 #define PTP_PPS_EVENT PPS_CAPTUREASSERT
25 #define PTP_PPS_MODE (PTP_PPS_DEFAULTS | PPS_CANWAIT | PPS_TSFMT_TSPEC)
27 struct class *ptp_class;
31 static dev_t ptp_devt;
33 static DEFINE_IDA(ptp_clocks_map);
35 /* time stamp event queue operations */
37 static inline int queue_free(struct timestamp_event_queue *q)
39 return PTP_MAX_TIMESTAMPS - queue_cnt(q) - 1;
42 static void enqueue_external_timestamp(struct timestamp_event_queue *queue,
43 struct ptp_clock_event *src)
45 struct ptp_extts_event *dst;
50 seconds = div_u64_rem(src->timestamp, 1000000000, &remainder);
52 spin_lock_irqsave(&queue->lock, flags);
54 dst = &queue->buf[queue->tail];
55 dst->index = src->index;
57 dst->t.nsec = remainder;
59 if (!queue_free(queue))
60 queue->head = (queue->head + 1) % PTP_MAX_TIMESTAMPS;
62 queue->tail = (queue->tail + 1) % PTP_MAX_TIMESTAMPS;
64 spin_unlock_irqrestore(&queue->lock, flags);
67 /* posix clock implementation */
69 static int ptp_clock_getres(struct posix_clock *pc, struct timespec64 *tp)
76 static int ptp_clock_settime(struct posix_clock *pc, const struct timespec64 *tp)
78 struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock);
80 if (ptp_clock_freerun(ptp)) {
81 pr_err("ptp: physical clock is free running\n");
85 return ptp->info->settime64(ptp->info, tp);
88 static int ptp_clock_gettime(struct posix_clock *pc, struct timespec64 *tp)
90 struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock);
93 if (ptp->info->gettimex64)
94 err = ptp->info->gettimex64(ptp->info, tp, NULL);
96 err = ptp->info->gettime64(ptp->info, tp);
100 static int ptp_clock_adjtime(struct posix_clock *pc, struct __kernel_timex *tx)
102 struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock);
103 struct ptp_clock_info *ops;
104 int err = -EOPNOTSUPP;
106 if (ptp_clock_freerun(ptp)) {
107 pr_err("ptp: physical clock is free running\n");
113 if (tx->modes & ADJ_SETOFFSET) {
114 struct timespec64 ts;
118 ts.tv_sec = tx->time.tv_sec;
119 ts.tv_nsec = tx->time.tv_usec;
121 if (!(tx->modes & ADJ_NANO))
124 if ((unsigned long) ts.tv_nsec >= NSEC_PER_SEC)
127 kt = timespec64_to_ktime(ts);
128 delta = ktime_to_ns(kt);
129 err = ops->adjtime(ops, delta);
130 } else if (tx->modes & ADJ_FREQUENCY) {
131 long ppb = scaled_ppm_to_ppb(tx->freq);
132 if (ppb > ops->max_adj || ppb < -ops->max_adj)
135 err = ops->adjfine(ops, tx->freq);
137 err = ops->adjfreq(ops, ppb);
138 ptp->dialed_frequency = tx->freq;
139 } else if (tx->modes & ADJ_OFFSET) {
141 s32 offset = tx->offset;
143 if (!(tx->modes & ADJ_NANO))
144 offset *= NSEC_PER_USEC;
146 err = ops->adjphase(ops, offset);
148 } else if (tx->modes == 0) {
149 tx->freq = ptp->dialed_frequency;
156 static struct posix_clock_operations ptp_clock_ops = {
157 .owner = THIS_MODULE,
158 .clock_adjtime = ptp_clock_adjtime,
159 .clock_gettime = ptp_clock_gettime,
160 .clock_getres = ptp_clock_getres,
161 .clock_settime = ptp_clock_settime,
168 static void ptp_clock_release(struct device *dev)
170 struct ptp_clock *ptp = container_of(dev, struct ptp_clock, dev);
172 ptp_cleanup_pin_groups(ptp);
173 kfree(ptp->vclock_index);
174 mutex_destroy(&ptp->tsevq_mux);
175 mutex_destroy(&ptp->pincfg_mux);
176 mutex_destroy(&ptp->n_vclocks_mux);
177 ida_simple_remove(&ptp_clocks_map, ptp->index);
181 static int ptp_getcycles64(struct ptp_clock_info *info, struct timespec64 *ts)
183 if (info->getcyclesx64)
184 return info->getcyclesx64(info, ts, NULL);
186 return info->gettime64(info, ts);
189 static void ptp_aux_kworker(struct kthread_work *work)
191 struct ptp_clock *ptp = container_of(work, struct ptp_clock,
193 struct ptp_clock_info *info = ptp->info;
196 delay = info->do_aux_work(info);
199 kthread_queue_delayed_work(ptp->kworker, &ptp->aux_work, delay);
202 /* public interface */
204 struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
205 struct device *parent)
207 struct ptp_clock *ptp;
208 int err = 0, index, major = MAJOR(ptp_devt);
211 if (info->n_alarm > PTP_MAX_ALARMS)
212 return ERR_PTR(-EINVAL);
214 /* Initialize a clock structure. */
216 ptp = kzalloc(sizeof(struct ptp_clock), GFP_KERNEL);
220 index = ida_simple_get(&ptp_clocks_map, 0, MINORMASK + 1, GFP_KERNEL);
226 ptp->clock.ops = ptp_clock_ops;
228 ptp->devid = MKDEV(major, index);
230 spin_lock_init(&ptp->tsevq.lock);
231 mutex_init(&ptp->tsevq_mux);
232 mutex_init(&ptp->pincfg_mux);
233 mutex_init(&ptp->n_vclocks_mux);
234 init_waitqueue_head(&ptp->tsev_wq);
236 if (ptp->info->getcycles64 || ptp->info->getcyclesx64) {
237 ptp->has_cycles = true;
238 if (!ptp->info->getcycles64 && ptp->info->getcyclesx64)
239 ptp->info->getcycles64 = ptp_getcycles64;
241 /* Free running cycle counter not supported, use time. */
242 ptp->info->getcycles64 = ptp_getcycles64;
244 if (ptp->info->gettimex64)
245 ptp->info->getcyclesx64 = ptp->info->gettimex64;
247 if (ptp->info->getcrosststamp)
248 ptp->info->getcrosscycles = ptp->info->getcrosststamp;
251 if (ptp->info->do_aux_work) {
252 kthread_init_delayed_work(&ptp->aux_work, ptp_aux_kworker);
253 ptp->kworker = kthread_create_worker(0, "ptp%d", ptp->index);
254 if (IS_ERR(ptp->kworker)) {
255 err = PTR_ERR(ptp->kworker);
256 pr_err("failed to create ptp aux_worker %d\n", err);
261 /* PTP virtual clock is being registered under physical clock */
262 if (parent && parent->class && parent->class->name &&
263 strcmp(parent->class->name, "ptp") == 0)
264 ptp->is_virtual_clock = true;
266 if (!ptp->is_virtual_clock) {
267 ptp->max_vclocks = PTP_DEFAULT_MAX_VCLOCKS;
269 size = sizeof(int) * ptp->max_vclocks;
270 ptp->vclock_index = kzalloc(size, GFP_KERNEL);
271 if (!ptp->vclock_index) {
273 goto no_mem_for_vclocks;
277 err = ptp_populate_pin_groups(ptp);
281 /* Register a new PPS source. */
283 struct pps_source_info pps;
284 memset(&pps, 0, sizeof(pps));
285 snprintf(pps.name, PPS_MAX_NAME_LEN, "ptp%d", index);
286 pps.mode = PTP_PPS_MODE;
287 pps.owner = info->owner;
288 ptp->pps_source = pps_register_source(&pps, PTP_PPS_DEFAULTS);
289 if (IS_ERR(ptp->pps_source)) {
290 err = PTR_ERR(ptp->pps_source);
291 pr_err("failed to register pps source\n");
294 ptp->pps_source->lookup_cookie = ptp;
297 /* Initialize a new device of our class in our clock structure. */
298 device_initialize(&ptp->dev);
299 ptp->dev.devt = ptp->devid;
300 ptp->dev.class = ptp_class;
301 ptp->dev.parent = parent;
302 ptp->dev.groups = ptp->pin_attr_groups;
303 ptp->dev.release = ptp_clock_release;
304 dev_set_drvdata(&ptp->dev, ptp);
305 dev_set_name(&ptp->dev, "ptp%d", ptp->index);
307 /* Create a posix clock and link it to the device. */
308 err = posix_clock_register(&ptp->clock, &ptp->dev);
311 pps_unregister_source(ptp->pps_source);
314 kthread_destroy_worker(ptp->kworker);
316 put_device(&ptp->dev);
318 pr_err("failed to create posix clock\n");
325 ptp_cleanup_pin_groups(ptp);
327 kfree(ptp->vclock_index);
330 kthread_destroy_worker(ptp->kworker);
332 mutex_destroy(&ptp->tsevq_mux);
333 mutex_destroy(&ptp->pincfg_mux);
334 mutex_destroy(&ptp->n_vclocks_mux);
335 ida_simple_remove(&ptp_clocks_map, index);
341 EXPORT_SYMBOL(ptp_clock_register);
343 static int unregister_vclock(struct device *dev, void *data)
345 struct ptp_clock *ptp = dev_get_drvdata(dev);
347 ptp_vclock_unregister(info_to_vclock(ptp->info));
351 int ptp_clock_unregister(struct ptp_clock *ptp)
353 if (ptp_vclock_in_use(ptp)) {
354 device_for_each_child(&ptp->dev, NULL, unregister_vclock);
358 wake_up_interruptible(&ptp->tsev_wq);
361 kthread_cancel_delayed_work_sync(&ptp->aux_work);
362 kthread_destroy_worker(ptp->kworker);
365 /* Release the clock's resources. */
367 pps_unregister_source(ptp->pps_source);
369 posix_clock_unregister(&ptp->clock);
373 EXPORT_SYMBOL(ptp_clock_unregister);
375 void ptp_clock_event(struct ptp_clock *ptp, struct ptp_clock_event *event)
377 struct pps_event_time evt;
379 switch (event->type) {
381 case PTP_CLOCK_ALARM:
384 case PTP_CLOCK_EXTTS:
385 enqueue_external_timestamp(&ptp->tsevq, event);
386 wake_up_interruptible(&ptp->tsev_wq);
391 pps_event(ptp->pps_source, &evt, PTP_PPS_EVENT, NULL);
394 case PTP_CLOCK_PPSUSR:
395 pps_event(ptp->pps_source, &event->pps_times,
396 PTP_PPS_EVENT, NULL);
400 EXPORT_SYMBOL(ptp_clock_event);
402 int ptp_clock_index(struct ptp_clock *ptp)
406 EXPORT_SYMBOL(ptp_clock_index);
408 int ptp_find_pin(struct ptp_clock *ptp,
409 enum ptp_pin_function func, unsigned int chan)
411 struct ptp_pin_desc *pin = NULL;
414 for (i = 0; i < ptp->info->n_pins; i++) {
415 if (ptp->info->pin_config[i].func == func &&
416 ptp->info->pin_config[i].chan == chan) {
417 pin = &ptp->info->pin_config[i];
424 EXPORT_SYMBOL(ptp_find_pin);
426 int ptp_find_pin_unlocked(struct ptp_clock *ptp,
427 enum ptp_pin_function func, unsigned int chan)
431 mutex_lock(&ptp->pincfg_mux);
433 result = ptp_find_pin(ptp, func, chan);
435 mutex_unlock(&ptp->pincfg_mux);
439 EXPORT_SYMBOL(ptp_find_pin_unlocked);
441 int ptp_schedule_worker(struct ptp_clock *ptp, unsigned long delay)
443 return kthread_mod_delayed_work(ptp->kworker, &ptp->aux_work, delay);
445 EXPORT_SYMBOL(ptp_schedule_worker);
447 void ptp_cancel_worker_sync(struct ptp_clock *ptp)
449 kthread_cancel_delayed_work_sync(&ptp->aux_work);
451 EXPORT_SYMBOL(ptp_cancel_worker_sync);
453 /* module operations */
455 static void __exit ptp_exit(void)
457 class_destroy(ptp_class);
458 unregister_chrdev_region(ptp_devt, MINORMASK + 1);
459 ida_destroy(&ptp_clocks_map);
462 static int __init ptp_init(void)
466 ptp_class = class_create(THIS_MODULE, "ptp");
467 if (IS_ERR(ptp_class)) {
468 pr_err("ptp: failed to allocate class\n");
469 return PTR_ERR(ptp_class);
472 err = alloc_chrdev_region(&ptp_devt, 0, MINORMASK + 1, "ptp");
474 pr_err("ptp: failed to allocate device region\n");
478 ptp_class->dev_groups = ptp_groups;
479 pr_info("PTP clock support registered\n");
483 class_destroy(ptp_class);
487 subsys_initcall(ptp_init);
488 module_exit(ptp_exit);
490 MODULE_AUTHOR("Richard Cochran <richardcochran@gmail.com>");
491 MODULE_DESCRIPTION("PTP clocks support");
492 MODULE_LICENSE("GPL");