blob: 5ad54fc66cf0f589aa9eca3275683e56e7650107 [file] [log] [blame]
Richard Cochrand94ba802011-04-22 12:03:08 +02001/*
2 * PTP 1588 clock support
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
21#ifndef _PTP_CLOCK_KERNEL_H_
22#define _PTP_CLOCK_KERNEL_H_
23
Richard Cochran1ef76152012-09-22 07:02:03 +000024#include <linux/device.h>
Ben Hutchings220a60a2012-09-03 11:34:58 +010025#include <linux/pps_kernel.h>
Richard Cochrand94ba802011-04-22 12:03:08 +020026#include <linux/ptp_clock.h>
27
28
29struct ptp_clock_request {
30 enum {
31 PTP_CLK_REQ_EXTTS,
32 PTP_CLK_REQ_PEROUT,
33 PTP_CLK_REQ_PPS,
34 } type;
35 union {
36 struct ptp_extts_request extts;
37 struct ptp_perout_request perout;
38 };
39};
40
Christopher S. Hall719f1aa2016-02-22 03:15:25 -080041struct system_device_crosststamp;
Richard Cochrand94ba802011-04-22 12:03:08 +020042/**
43 * struct ptp_clock_info - decribes a PTP hardware clock
44 *
45 * @owner: The clock driver should set to THIS_MODULE.
Richard Cochrande465842012-09-22 07:02:04 +000046 * @name: A short "friendly name" to identify the clock and to
47 * help distinguish PHY based devices from MAC based ones.
48 * The string is not meant to be a unique id.
Richard Cochrand94ba802011-04-22 12:03:08 +020049 * @max_adj: The maximum possible frequency adjustment, in parts per billon.
50 * @n_alarm: The number of programmable alarms.
51 * @n_ext_ts: The number of external time stamp channels.
52 * @n_per_out: The number of programmable periodic signals.
Richard Cochran60923152014-03-20 22:21:52 +010053 * @n_pins: The number of programmable pins.
Richard Cochrand94ba802011-04-22 12:03:08 +020054 * @pps: Indicates whether the clock supports a PPS callback.
Richard Cochran60923152014-03-20 22:21:52 +010055 * @pin_config: Array of length 'n_pins'. If the number of
56 * programmable pins is nonzero, then drivers must
57 * allocate and initialize this array.
Richard Cochrand94ba802011-04-22 12:03:08 +020058 *
59 * clock operations
60 *
61 * @adjfreq: Adjusts the frequency of the hardware clock.
Jacob Keller87f4d7c2012-11-01 12:30:16 +000062 * parameter delta: Desired frequency offset from nominal frequency
63 * in parts per billion
Richard Cochrand94ba802011-04-22 12:03:08 +020064 *
65 * @adjtime: Shifts the time of the hardware clock.
66 * parameter delta: Desired change in nanoseconds.
67 *
Richard Cochran92f17192015-03-29 23:11:51 +020068 * @gettime64: Reads the current time from the hardware clock.
69 * parameter ts: Holds the result.
70 *
Christopher S. Hall719f1aa2016-02-22 03:15:25 -080071 * @getcrosststamp: Reads the current time from the hardware clock and
72 * system clock simultaneously.
73 * parameter cts: Contains timestamp (device,system) pair,
74 * where system time is realtime and monotonic.
75 *
Richard Cochran92f17192015-03-29 23:11:51 +020076 * @settime64: Set the current time on the hardware clock.
77 * parameter ts: Time value to set.
78 *
Richard Cochrand94ba802011-04-22 12:03:08 +020079 * @enable: Request driver to enable or disable an ancillary feature.
80 * parameter request: Desired resource to enable or disable.
81 * parameter on: Caller passes one to enable or zero to disable.
82 *
Richard Cochran60923152014-03-20 22:21:52 +010083 * @verify: Confirm that a pin can perform a given function. The PTP
84 * Hardware Clock subsystem maintains the 'pin_config'
85 * array on behalf of the drivers, but the PHC subsystem
86 * assumes that every pin can perform every function. This
87 * hook gives drivers a way of telling the core about
88 * limitations on specific pins. This function must return
89 * zero if the function can be assigned to this pin, and
90 * nonzero otherwise.
91 * parameter pin: index of the pin in question.
92 * parameter func: the desired function to use.
93 * parameter chan: the function channel index to use.
94 *
Richard Cochrand94ba802011-04-22 12:03:08 +020095 * Drivers should embed their ptp_clock_info within a private
96 * structure, obtaining a reference to it using container_of().
97 *
98 * The callbacks must all return zero on success, non-zero otherwise.
99 */
100
101struct ptp_clock_info {
102 struct module *owner;
103 char name[16];
104 s32 max_adj;
105 int n_alarm;
106 int n_ext_ts;
107 int n_per_out;
Richard Cochran60923152014-03-20 22:21:52 +0100108 int n_pins;
Richard Cochrand94ba802011-04-22 12:03:08 +0200109 int pps;
Richard Cochran60923152014-03-20 22:21:52 +0100110 struct ptp_pin_desc *pin_config;
Richard Cochrand94ba802011-04-22 12:03:08 +0200111 int (*adjfreq)(struct ptp_clock_info *ptp, s32 delta);
112 int (*adjtime)(struct ptp_clock_info *ptp, s64 delta);
Richard Cochran92f17192015-03-29 23:11:51 +0200113 int (*gettime64)(struct ptp_clock_info *ptp, struct timespec64 *ts);
Christopher S. Hall719f1aa2016-02-22 03:15:25 -0800114 int (*getcrosststamp)(struct ptp_clock_info *ptp,
115 struct system_device_crosststamp *cts);
Richard Cochran92f17192015-03-29 23:11:51 +0200116 int (*settime64)(struct ptp_clock_info *p, const struct timespec64 *ts);
Richard Cochrand94ba802011-04-22 12:03:08 +0200117 int (*enable)(struct ptp_clock_info *ptp,
118 struct ptp_clock_request *request, int on);
Richard Cochran60923152014-03-20 22:21:52 +0100119 int (*verify)(struct ptp_clock_info *ptp, unsigned int pin,
120 enum ptp_pin_function func, unsigned int chan);
Richard Cochrand94ba802011-04-22 12:03:08 +0200121};
122
123struct ptp_clock;
124
125/**
126 * ptp_clock_register() - register a PTP hardware clock driver
127 *
Richard Cochran1ef76152012-09-22 07:02:03 +0000128 * @info: Structure describing the new clock.
129 * @parent: Pointer to the parent device of the new clock.
Nicolas Pitreefee95f2016-09-20 19:25:58 -0400130 *
131 * Returns a valid pointer on success or PTR_ERR on failure. If PHC
132 * support is missing at the configuration level, this function
133 * returns NULL, and drivers are expected to gracefully handle that
134 * case separately.
Richard Cochrand94ba802011-04-22 12:03:08 +0200135 */
136
Richard Cochran1ef76152012-09-22 07:02:03 +0000137extern struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
138 struct device *parent);
Richard Cochrand94ba802011-04-22 12:03:08 +0200139
140/**
141 * ptp_clock_unregister() - unregister a PTP hardware clock driver
142 *
143 * @ptp: The clock to remove from service.
144 */
145
146extern int ptp_clock_unregister(struct ptp_clock *ptp);
147
148
149enum ptp_clock_events {
150 PTP_CLOCK_ALARM,
151 PTP_CLOCK_EXTTS,
152 PTP_CLOCK_PPS,
Ben Hutchings220a60a2012-09-03 11:34:58 +0100153 PTP_CLOCK_PPSUSR,
Richard Cochrand94ba802011-04-22 12:03:08 +0200154};
155
156/**
157 * struct ptp_clock_event - decribes a PTP hardware clock event
158 *
159 * @type: One of the ptp_clock_events enumeration values.
160 * @index: Identifies the source of the event.
Ben Hutchings220a60a2012-09-03 11:34:58 +0100161 * @timestamp: When the event occurred (%PTP_CLOCK_EXTTS only).
162 * @pps_times: When the event occurred (%PTP_CLOCK_PPSUSR only).
Richard Cochrand94ba802011-04-22 12:03:08 +0200163 */
164
165struct ptp_clock_event {
166 int type;
167 int index;
Ben Hutchings220a60a2012-09-03 11:34:58 +0100168 union {
169 u64 timestamp;
170 struct pps_event_time pps_times;
171 };
Richard Cochrand94ba802011-04-22 12:03:08 +0200172};
173
174/**
175 * ptp_clock_event() - notify the PTP layer about an event
176 *
177 * @ptp: The clock obtained from ptp_clock_register().
178 * @event: Message structure describing the event.
179 */
180
181extern void ptp_clock_event(struct ptp_clock *ptp,
182 struct ptp_clock_event *event);
183
Richard Cochran995a9092012-04-03 22:59:16 +0000184/**
185 * ptp_clock_index() - obtain the device index of a PTP clock
186 *
187 * @ptp: The clock obtained from ptp_clock_register().
188 */
189
190extern int ptp_clock_index(struct ptp_clock *ptp);
191
Richard Cochran60923152014-03-20 22:21:52 +0100192/**
193 * ptp_find_pin() - obtain the pin index of a given auxiliary function
194 *
195 * @ptp: The clock obtained from ptp_clock_register().
196 * @func: One of the ptp_pin_function enumerated values.
197 * @chan: The particular functional channel to find.
198 * Return: Pin index in the range of zero to ptp_clock_caps.n_pins - 1,
199 * or -1 if the auxiliary function cannot be found.
200 */
201
202int ptp_find_pin(struct ptp_clock *ptp,
203 enum ptp_pin_function func, unsigned int chan);
204
Richard Cochrand94ba802011-04-22 12:03:08 +0200205#endif