Loading...
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * posix-clock.h - support for dynamic clock devices
4 *
5 * Copyright (C) 2010 OMICRON electronics GmbH
6 */
7#ifndef _LINUX_POSIX_CLOCK_H_
8#define _LINUX_POSIX_CLOCK_H_
9
10#include <linux/cdev.h>
11#include <linux/fs.h>
12#include <linux/poll.h>
13#include <linux/posix-timers.h>
14#include <linux/rwsem.h>
15
16struct posix_clock;
17
18/**
19 * struct posix_clock_operations - functional interface to the clock
20 *
21 * Every posix clock is represented by a character device. Drivers may
22 * optionally offer extended capabilities by implementing the
23 * character device methods. The character device file operations are
24 * first handled by the clock device layer, then passed on to the
25 * driver by calling these functions.
26 *
27 * @owner: The clock driver should set to THIS_MODULE
28 * @clock_adjtime: Adjust the clock
29 * @clock_gettime: Read the current time
30 * @clock_getres: Get the clock resolution
31 * @clock_settime: Set the current time value
32 * @open: Optional character device open method
33 * @release: Optional character device release method
34 * @ioctl: Optional character device ioctl method
35 * @read: Optional character device read method
36 * @poll: Optional character device poll method
37 */
38struct posix_clock_operations {
39 struct module *owner;
40
41 int (*clock_adjtime)(struct posix_clock *pc, struct __kernel_timex *tx);
42
43 int (*clock_gettime)(struct posix_clock *pc, struct timespec64 *ts);
44
45 int (*clock_getres) (struct posix_clock *pc, struct timespec64 *ts);
46
47 int (*clock_settime)(struct posix_clock *pc,
48 const struct timespec64 *ts);
49
50 /*
51 * Optional character device methods:
52 */
53 long (*ioctl) (struct posix_clock *pc,
54 unsigned int cmd, unsigned long arg);
55
56 int (*open) (struct posix_clock *pc, fmode_t f_mode);
57
58 __poll_t (*poll) (struct posix_clock *pc,
59 struct file *file, poll_table *wait);
60
61 int (*release) (struct posix_clock *pc);
62
63 ssize_t (*read) (struct posix_clock *pc,
64 uint flags, char __user *buf, size_t cnt);
65};
66
67/**
68 * struct posix_clock - represents a dynamic posix clock
69 *
70 * @ops: Functional interface to the clock
71 * @cdev: Character device instance for this clock
72 * @dev: Pointer to the clock's device.
73 * @rwsem: Protects the 'zombie' field from concurrent access.
74 * @zombie: If 'zombie' is true, then the hardware has disappeared.
75 *
76 * Drivers should embed their struct posix_clock within a private
77 * structure, obtaining a reference to it during callbacks using
78 * container_of().
79 *
80 * Drivers should supply an initialized but not exposed struct device
81 * to posix_clock_register(). It is used to manage lifetime of the
82 * driver's private structure. It's 'release' field should be set to
83 * a release function for this private structure.
84 */
85struct posix_clock {
86 struct posix_clock_operations ops;
87 struct cdev cdev;
88 struct device *dev;
89 struct rw_semaphore rwsem;
90 bool zombie;
91};
92
93/**
94 * posix_clock_register() - register a new clock
95 * @clk: Pointer to the clock. Caller must provide 'ops' field
96 * @dev: Pointer to the initialized device. Caller must provide
97 * 'release' field
98 *
99 * A clock driver calls this function to register itself with the
100 * clock device subsystem. If 'clk' points to dynamically allocated
101 * memory, then the caller must provide a 'release' function to free
102 * that memory.
103 *
104 * Returns zero on success, non-zero otherwise.
105 */
106int posix_clock_register(struct posix_clock *clk, struct device *dev);
107
108/**
109 * posix_clock_unregister() - unregister a clock
110 * @clk: Clock instance previously registered via posix_clock_register()
111 *
112 * A clock driver calls this function to remove itself from the clock
113 * device subsystem. The posix_clock itself will remain (in an
114 * inactive state) until its reference count drops to zero, at which
115 * point it will be deallocated with its 'release' method.
116 */
117void posix_clock_unregister(struct posix_clock *clk);
118
119#endif
1/*
2 * posix-clock.h - support for dynamic clock devices
3 *
4 * Copyright (C) 2010 OMICRON electronics GmbH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20#ifndef _LINUX_POSIX_CLOCK_H_
21#define _LINUX_POSIX_CLOCK_H_
22
23#include <linux/cdev.h>
24#include <linux/fs.h>
25#include <linux/poll.h>
26#include <linux/posix-timers.h>
27#include <linux/rwsem.h>
28
29struct posix_clock;
30
31/**
32 * struct posix_clock_operations - functional interface to the clock
33 *
34 * Every posix clock is represented by a character device. Drivers may
35 * optionally offer extended capabilities by implementing the
36 * character device methods. The character device file operations are
37 * first handled by the clock device layer, then passed on to the
38 * driver by calling these functions.
39 *
40 * @owner: The clock driver should set to THIS_MODULE
41 * @clock_adjtime: Adjust the clock
42 * @clock_gettime: Read the current time
43 * @clock_getres: Get the clock resolution
44 * @clock_settime: Set the current time value
45 * @timer_create: Create a new timer
46 * @timer_delete: Remove a previously created timer
47 * @timer_gettime: Get remaining time and interval of a timer
48 * @timer_settime: Set a timer's initial expiration and interval
49 * @fasync: Optional character device fasync method
50 * @mmap: Optional character device mmap method
51 * @open: Optional character device open method
52 * @release: Optional character device release method
53 * @ioctl: Optional character device ioctl method
54 * @read: Optional character device read method
55 * @poll: Optional character device poll method
56 */
57struct posix_clock_operations {
58 struct module *owner;
59
60 int (*clock_adjtime)(struct posix_clock *pc, struct timex *tx);
61
62 int (*clock_gettime)(struct posix_clock *pc, struct timespec *ts);
63
64 int (*clock_getres) (struct posix_clock *pc, struct timespec *ts);
65
66 int (*clock_settime)(struct posix_clock *pc,
67 const struct timespec *ts);
68
69 int (*timer_create) (struct posix_clock *pc, struct k_itimer *kit);
70
71 int (*timer_delete) (struct posix_clock *pc, struct k_itimer *kit);
72
73 void (*timer_gettime)(struct posix_clock *pc,
74 struct k_itimer *kit, struct itimerspec *tsp);
75
76 int (*timer_settime)(struct posix_clock *pc,
77 struct k_itimer *kit, int flags,
78 struct itimerspec *tsp, struct itimerspec *old);
79 /*
80 * Optional character device methods:
81 */
82 int (*fasync) (struct posix_clock *pc,
83 int fd, struct file *file, int on);
84
85 long (*ioctl) (struct posix_clock *pc,
86 unsigned int cmd, unsigned long arg);
87
88 int (*mmap) (struct posix_clock *pc,
89 struct vm_area_struct *vma);
90
91 int (*open) (struct posix_clock *pc, fmode_t f_mode);
92
93 uint (*poll) (struct posix_clock *pc,
94 struct file *file, poll_table *wait);
95
96 int (*release) (struct posix_clock *pc);
97
98 ssize_t (*read) (struct posix_clock *pc,
99 uint flags, char __user *buf, size_t cnt);
100};
101
102/**
103 * struct posix_clock - represents a dynamic posix clock
104 *
105 * @ops: Functional interface to the clock
106 * @cdev: Character device instance for this clock
107 * @kref: Reference count.
108 * @rwsem: Protects the 'zombie' field from concurrent access.
109 * @zombie: If 'zombie' is true, then the hardware has disappeared.
110 * @release: A function to free the structure when the reference count reaches
111 * zero. May be NULL if structure is statically allocated.
112 *
113 * Drivers should embed their struct posix_clock within a private
114 * structure, obtaining a reference to it during callbacks using
115 * container_of().
116 */
117struct posix_clock {
118 struct posix_clock_operations ops;
119 struct cdev cdev;
120 struct kref kref;
121 struct rw_semaphore rwsem;
122 bool zombie;
123 void (*release)(struct posix_clock *clk);
124};
125
126/**
127 * posix_clock_register() - register a new clock
128 * @clk: Pointer to the clock. Caller must provide 'ops' and 'release'
129 * @devid: Allocated device id
130 *
131 * A clock driver calls this function to register itself with the
132 * clock device subsystem. If 'clk' points to dynamically allocated
133 * memory, then the caller must provide a 'release' function to free
134 * that memory.
135 *
136 * Returns zero on success, non-zero otherwise.
137 */
138int posix_clock_register(struct posix_clock *clk, dev_t devid);
139
140/**
141 * posix_clock_unregister() - unregister a clock
142 * @clk: Clock instance previously registered via posix_clock_register()
143 *
144 * A clock driver calls this function to remove itself from the clock
145 * device subsystem. The posix_clock itself will remain (in an
146 * inactive state) until its reference count drops to zero, at which
147 * point it will be deallocated with its 'release' method.
148 */
149void posix_clock_unregister(struct posix_clock *clk);
150
151#endif