1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * Userspace API for hardware time stamping of network packets
5 * Copyright (C) 2008,2009 Intel Corporation
10 #ifndef _NET_TIMESTAMPING_H
11 #define _NET_TIMESTAMPING_H
13 #include <linux/types.h>
14 #include <linux/socket.h> /* for SO_TIMESTAMPING */
16 /* SO_TIMESTAMPING gets an integer bit field comprised of these values */
18 SOF_TIMESTAMPING_TX_HARDWARE = (1<<0),
19 SOF_TIMESTAMPING_TX_SOFTWARE = (1<<1),
20 SOF_TIMESTAMPING_RX_HARDWARE = (1<<2),
21 SOF_TIMESTAMPING_RX_SOFTWARE = (1<<3),
22 SOF_TIMESTAMPING_SOFTWARE = (1<<4),
23 SOF_TIMESTAMPING_SYS_HARDWARE = (1<<5),
24 SOF_TIMESTAMPING_RAW_HARDWARE = (1<<6),
25 SOF_TIMESTAMPING_OPT_ID = (1<<7),
26 SOF_TIMESTAMPING_TX_SCHED = (1<<8),
27 SOF_TIMESTAMPING_TX_ACK = (1<<9),
28 SOF_TIMESTAMPING_OPT_CMSG = (1<<10),
29 SOF_TIMESTAMPING_OPT_TSONLY = (1<<11),
30 SOF_TIMESTAMPING_OPT_STATS = (1<<12),
31 SOF_TIMESTAMPING_OPT_PKTINFO = (1<<13),
32 SOF_TIMESTAMPING_OPT_TX_SWHW = (1<<14),
34 SOF_TIMESTAMPING_LAST = SOF_TIMESTAMPING_OPT_TX_SWHW,
35 SOF_TIMESTAMPING_MASK = (SOF_TIMESTAMPING_LAST - 1) |
40 * SO_TIMESTAMPING flags are either for recording a packet timestamp or for
41 * reporting the timestamp to user space.
42 * Recording flags can be set both via socket options and control messages.
44 #define SOF_TIMESTAMPING_TX_RECORD_MASK (SOF_TIMESTAMPING_TX_HARDWARE | \
45 SOF_TIMESTAMPING_TX_SOFTWARE | \
46 SOF_TIMESTAMPING_TX_SCHED | \
47 SOF_TIMESTAMPING_TX_ACK)
50 * struct hwtstamp_config - %SIOCGHWTSTAMP and %SIOCSHWTSTAMP parameter
52 * @flags: no flags defined right now, must be zero for %SIOCSHWTSTAMP
53 * @tx_type: one of HWTSTAMP_TX_*
54 * @rx_filter: one of HWTSTAMP_FILTER_*
56 * %SIOCGHWTSTAMP and %SIOCSHWTSTAMP expect a &struct ifreq with a
57 * ifr_data pointer to this structure. For %SIOCSHWTSTAMP, if the
58 * driver or hardware does not support the requested @rx_filter value,
59 * the driver may use a more general filter mode. In this case
60 * @rx_filter will indicate the actual mode on return.
62 struct hwtstamp_config {
68 /* possible values for hwtstamp_config->tx_type */
69 enum hwtstamp_tx_types {
71 * No outgoing packet will need hardware time stamping;
72 * should a packet arrive which asks for it, no hardware
73 * time stamping will be done.
78 * Enables hardware time stamping for outgoing packets;
79 * the sender of the packet decides which are to be
80 * time stamped by setting %SOF_TIMESTAMPING_TX_SOFTWARE
81 * before sending the packet.
86 * Enables time stamping for outgoing packets just as
87 * HWTSTAMP_TX_ON does, but also enables time stamp insertion
88 * directly into Sync packets. In this case, transmitted Sync
89 * packets will not received a time stamp via the socket error
92 HWTSTAMP_TX_ONESTEP_SYNC,
95 * Same as HWTSTAMP_TX_ONESTEP_SYNC, but also enables time
96 * stamp insertion directly into PDelay_Resp packets. In this
97 * case, neither transmitted Sync nor PDelay_Resp packets will
98 * receive a time stamp via the socket error queue.
100 HWTSTAMP_TX_ONESTEP_P2P,
102 /* add new constants above here */
106 /* possible values for hwtstamp_config->rx_filter */
107 enum hwtstamp_rx_filters {
108 /* time stamp no incoming packet at all */
109 HWTSTAMP_FILTER_NONE,
111 /* time stamp any incoming packet */
114 /* return value: time stamp all packets requested plus some others */
115 HWTSTAMP_FILTER_SOME,
117 /* PTP v1, UDP, any kind of event packet */
118 HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
119 /* PTP v1, UDP, Sync packet */
120 HWTSTAMP_FILTER_PTP_V1_L4_SYNC,
121 /* PTP v1, UDP, Delay_req packet */
122 HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ,
123 /* PTP v2, UDP, any kind of event packet */
124 HWTSTAMP_FILTER_PTP_V2_L4_EVENT,
125 /* PTP v2, UDP, Sync packet */
126 HWTSTAMP_FILTER_PTP_V2_L4_SYNC,
127 /* PTP v2, UDP, Delay_req packet */
128 HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ,
130 /* 802.AS1, Ethernet, any kind of event packet */
131 HWTSTAMP_FILTER_PTP_V2_L2_EVENT,
132 /* 802.AS1, Ethernet, Sync packet */
133 HWTSTAMP_FILTER_PTP_V2_L2_SYNC,
134 /* 802.AS1, Ethernet, Delay_req packet */
135 HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ,
137 /* PTP v2/802.AS1, any layer, any kind of event packet */
138 HWTSTAMP_FILTER_PTP_V2_EVENT,
139 /* PTP v2/802.AS1, any layer, Sync packet */
140 HWTSTAMP_FILTER_PTP_V2_SYNC,
141 /* PTP v2/802.AS1, any layer, Delay_req packet */
142 HWTSTAMP_FILTER_PTP_V2_DELAY_REQ,
144 /* NTP, UDP, all versions and packet modes */
145 HWTSTAMP_FILTER_NTP_ALL,
147 /* add new constants above here */
148 __HWTSTAMP_FILTER_CNT
151 /* SCM_TIMESTAMPING_PKTINFO control message */
152 struct scm_ts_pktinfo {
159 * SO_TXTIME gets a struct sock_txtime with flags being an integer bit
160 * field comprised of these values.
163 SOF_TXTIME_DEADLINE_MODE = (1 << 0),
164 SOF_TXTIME_REPORT_ERRORS = (1 << 1),
166 SOF_TXTIME_FLAGS_LAST = SOF_TXTIME_REPORT_ERRORS,
167 SOF_TXTIME_FLAGS_MASK = (SOF_TXTIME_FLAGS_LAST - 1) |
168 SOF_TXTIME_FLAGS_LAST
172 __kernel_clockid_t clockid;/* reference clockid */
173 __u32 flags; /* as defined by enum txtime_flags */
176 #endif /* _NET_TIMESTAMPING_H */