1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 /* 2 /* 3 * Userspace API for hardware time stamping of 3 * Userspace API for hardware time stamping of network packets 4 * 4 * 5 * Copyright (C) 2008,2009 Intel Corporation 5 * Copyright (C) 2008,2009 Intel Corporation 6 * Author: Patrick Ohly <patrick.ohly@intel.co 6 * Author: Patrick Ohly <patrick.ohly@intel.com> 7 * 7 * 8 */ 8 */ 9 9 10 #ifndef _NET_TIMESTAMPING_H 10 #ifndef _NET_TIMESTAMPING_H 11 #define _NET_TIMESTAMPING_H 11 #define _NET_TIMESTAMPING_H 12 12 13 #include <linux/types.h> 13 #include <linux/types.h> 14 #include <linux/socket.h> /* for SO_TIMESTAM 14 #include <linux/socket.h> /* for SO_TIMESTAMPING */ 15 15 16 /* SO_TIMESTAMPING flags */ !! 16 /* SO_TIMESTAMPING gets an integer bit field comprised of these values */ 17 enum { 17 enum { 18 SOF_TIMESTAMPING_TX_HARDWARE = (1<<0), 18 SOF_TIMESTAMPING_TX_HARDWARE = (1<<0), 19 SOF_TIMESTAMPING_TX_SOFTWARE = (1<<1), 19 SOF_TIMESTAMPING_TX_SOFTWARE = (1<<1), 20 SOF_TIMESTAMPING_RX_HARDWARE = (1<<2), 20 SOF_TIMESTAMPING_RX_HARDWARE = (1<<2), 21 SOF_TIMESTAMPING_RX_SOFTWARE = (1<<3), 21 SOF_TIMESTAMPING_RX_SOFTWARE = (1<<3), 22 SOF_TIMESTAMPING_SOFTWARE = (1<<4), 22 SOF_TIMESTAMPING_SOFTWARE = (1<<4), 23 SOF_TIMESTAMPING_SYS_HARDWARE = (1<<5) 23 SOF_TIMESTAMPING_SYS_HARDWARE = (1<<5), 24 SOF_TIMESTAMPING_RAW_HARDWARE = (1<<6) 24 SOF_TIMESTAMPING_RAW_HARDWARE = (1<<6), 25 SOF_TIMESTAMPING_OPT_ID = (1<<7), 25 SOF_TIMESTAMPING_OPT_ID = (1<<7), 26 SOF_TIMESTAMPING_TX_SCHED = (1<<8), 26 SOF_TIMESTAMPING_TX_SCHED = (1<<8), 27 SOF_TIMESTAMPING_TX_ACK = (1<<9), 27 SOF_TIMESTAMPING_TX_ACK = (1<<9), 28 SOF_TIMESTAMPING_OPT_CMSG = (1<<10), 28 SOF_TIMESTAMPING_OPT_CMSG = (1<<10), 29 SOF_TIMESTAMPING_OPT_TSONLY = (1<<11), 29 SOF_TIMESTAMPING_OPT_TSONLY = (1<<11), 30 SOF_TIMESTAMPING_OPT_STATS = (1<<12), 30 SOF_TIMESTAMPING_OPT_STATS = (1<<12), 31 SOF_TIMESTAMPING_OPT_PKTINFO = (1<<13) 31 SOF_TIMESTAMPING_OPT_PKTINFO = (1<<13), 32 SOF_TIMESTAMPING_OPT_TX_SWHW = (1<<14) 32 SOF_TIMESTAMPING_OPT_TX_SWHW = (1<<14), 33 SOF_TIMESTAMPING_BIND_PHC = (1 << 15), << 34 SOF_TIMESTAMPING_OPT_ID_TCP = (1 << 16 << 35 SOF_TIMESTAMPING_OPT_RX_FILTER = (1 << << 36 33 37 SOF_TIMESTAMPING_LAST = SOF_TIMESTAMPI !! 34 SOF_TIMESTAMPING_LAST = SOF_TIMESTAMPING_OPT_TX_SWHW, 38 SOF_TIMESTAMPING_MASK = (SOF_TIMESTAMP 35 SOF_TIMESTAMPING_MASK = (SOF_TIMESTAMPING_LAST - 1) | 39 SOF_TIMESTAMP 36 SOF_TIMESTAMPING_LAST 40 }; 37 }; 41 38 42 /* 39 /* 43 * SO_TIMESTAMPING flags are either for record 40 * SO_TIMESTAMPING flags are either for recording a packet timestamp or for 44 * reporting the timestamp to user space. 41 * reporting the timestamp to user space. 45 * Recording flags can be set both via socket 42 * Recording flags can be set both via socket options and control messages. 46 */ 43 */ 47 #define SOF_TIMESTAMPING_TX_RECORD_MASK (SOF_T 44 #define SOF_TIMESTAMPING_TX_RECORD_MASK (SOF_TIMESTAMPING_TX_HARDWARE | \ 48 SOF_T 45 SOF_TIMESTAMPING_TX_SOFTWARE | \ 49 SOF_T 46 SOF_TIMESTAMPING_TX_SCHED | \ 50 SOF_T 47 SOF_TIMESTAMPING_TX_ACK) 51 48 52 /** 49 /** 53 * struct so_timestamping - SO_TIMESTAMPING pa << 54 * << 55 * @flags: SO_TIMESTAMPING flags << 56 * @bind_phc: Index of PTP virtual clock bou << 57 * if flag SOF_TIMESTAMPING_BIND_ << 58 */ << 59 struct so_timestamping { << 60 int flags; << 61 int bind_phc; << 62 }; << 63 << 64 /** << 65 * struct hwtstamp_config - %SIOCGHWTSTAMP and 50 * struct hwtstamp_config - %SIOCGHWTSTAMP and %SIOCSHWTSTAMP parameter 66 * 51 * 67 * @flags: one of HWTSTAMP_FLAG_* !! 52 * @flags: no flags defined right now, must be zero for %SIOCSHWTSTAMP 68 * @tx_type: one of HWTSTAMP_TX_* 53 * @tx_type: one of HWTSTAMP_TX_* 69 * @rx_filter: one of HWTSTAMP_FILTER_* 54 * @rx_filter: one of HWTSTAMP_FILTER_* 70 * 55 * 71 * %SIOCGHWTSTAMP and %SIOCSHWTSTAMP expect a 56 * %SIOCGHWTSTAMP and %SIOCSHWTSTAMP expect a &struct ifreq with a 72 * ifr_data pointer to this structure. For %S 57 * ifr_data pointer to this structure. For %SIOCSHWTSTAMP, if the 73 * driver or hardware does not support the req 58 * driver or hardware does not support the requested @rx_filter value, 74 * the driver may use a more general filter mo 59 * the driver may use a more general filter mode. In this case 75 * @rx_filter will indicate the actual mode on 60 * @rx_filter will indicate the actual mode on return. 76 */ 61 */ 77 struct hwtstamp_config { 62 struct hwtstamp_config { 78 int flags; 63 int flags; 79 int tx_type; 64 int tx_type; 80 int rx_filter; 65 int rx_filter; 81 }; 66 }; 82 67 83 /* possible values for hwtstamp_config->flags << 84 enum hwtstamp_flags { << 85 /* << 86 * With this flag, the user could get << 87 * PHC index. Note this PHC index is n << 88 * is a failover, the bond active inte << 89 * will be the PHC index. << 90 */ << 91 HWTSTAMP_FLAG_BONDED_PHC_INDEX = (1<<0 << 92 #define HWTSTAMP_FLAG_BONDED_PHC_INDEX HWTSTA << 93 << 94 HWTSTAMP_FLAG_LAST = HWTSTAMP_FLAG_BON << 95 HWTSTAMP_FLAG_MASK = (HWTSTAMP_FLAG_LA << 96 }; << 97 << 98 /* possible values for hwtstamp_config->tx_typ 68 /* possible values for hwtstamp_config->tx_type */ 99 enum hwtstamp_tx_types { 69 enum hwtstamp_tx_types { 100 /* 70 /* 101 * No outgoing packet will need hardwa 71 * No outgoing packet will need hardware time stamping; 102 * should a packet arrive which asks f 72 * should a packet arrive which asks for it, no hardware 103 * time stamping will be done. 73 * time stamping will be done. 104 */ 74 */ 105 HWTSTAMP_TX_OFF, 75 HWTSTAMP_TX_OFF, 106 76 107 /* 77 /* 108 * Enables hardware time stamping for 78 * Enables hardware time stamping for outgoing packets; 109 * the sender of the packet decides wh 79 * the sender of the packet decides which are to be 110 * time stamped by setting %SOF_TIMEST 80 * time stamped by setting %SOF_TIMESTAMPING_TX_SOFTWARE 111 * before sending the packet. 81 * before sending the packet. 112 */ 82 */ 113 HWTSTAMP_TX_ON, 83 HWTSTAMP_TX_ON, 114 84 115 /* 85 /* 116 * Enables time stamping for outgoing 86 * Enables time stamping for outgoing packets just as 117 * HWTSTAMP_TX_ON does, but also enabl 87 * HWTSTAMP_TX_ON does, but also enables time stamp insertion 118 * directly into Sync packets. In this 88 * directly into Sync packets. In this case, transmitted Sync 119 * packets will not received a time st 89 * packets will not received a time stamp via the socket error 120 * queue. 90 * queue. 121 */ 91 */ 122 HWTSTAMP_TX_ONESTEP_SYNC, 92 HWTSTAMP_TX_ONESTEP_SYNC, 123 << 124 /* << 125 * Same as HWTSTAMP_TX_ONESTEP_SYNC, b << 126 * stamp insertion directly into PDela << 127 * case, neither transmitted Sync nor << 128 * receive a time stamp via the socket << 129 */ << 130 HWTSTAMP_TX_ONESTEP_P2P, << 131 << 132 /* add new constants above here */ << 133 __HWTSTAMP_TX_CNT << 134 }; 93 }; 135 94 136 /* possible values for hwtstamp_config->rx_fil 95 /* possible values for hwtstamp_config->rx_filter */ 137 enum hwtstamp_rx_filters { 96 enum hwtstamp_rx_filters { 138 /* time stamp no incoming packet at al 97 /* time stamp no incoming packet at all */ 139 HWTSTAMP_FILTER_NONE, 98 HWTSTAMP_FILTER_NONE, 140 99 141 /* time stamp any incoming packet */ 100 /* time stamp any incoming packet */ 142 HWTSTAMP_FILTER_ALL, 101 HWTSTAMP_FILTER_ALL, 143 102 144 /* return value: time stamp all packet 103 /* return value: time stamp all packets requested plus some others */ 145 HWTSTAMP_FILTER_SOME, 104 HWTSTAMP_FILTER_SOME, 146 105 147 /* PTP v1, UDP, any kind of event pack 106 /* PTP v1, UDP, any kind of event packet */ 148 HWTSTAMP_FILTER_PTP_V1_L4_EVENT, 107 HWTSTAMP_FILTER_PTP_V1_L4_EVENT, 149 /* PTP v1, UDP, Sync packet */ 108 /* PTP v1, UDP, Sync packet */ 150 HWTSTAMP_FILTER_PTP_V1_L4_SYNC, 109 HWTSTAMP_FILTER_PTP_V1_L4_SYNC, 151 /* PTP v1, UDP, Delay_req packet */ 110 /* PTP v1, UDP, Delay_req packet */ 152 HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ, 111 HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ, 153 /* PTP v2, UDP, any kind of event pack 112 /* PTP v2, UDP, any kind of event packet */ 154 HWTSTAMP_FILTER_PTP_V2_L4_EVENT, 113 HWTSTAMP_FILTER_PTP_V2_L4_EVENT, 155 /* PTP v2, UDP, Sync packet */ 114 /* PTP v2, UDP, Sync packet */ 156 HWTSTAMP_FILTER_PTP_V2_L4_SYNC, 115 HWTSTAMP_FILTER_PTP_V2_L4_SYNC, 157 /* PTP v2, UDP, Delay_req packet */ 116 /* PTP v2, UDP, Delay_req packet */ 158 HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ, 117 HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ, 159 118 160 /* 802.AS1, Ethernet, any kind of even 119 /* 802.AS1, Ethernet, any kind of event packet */ 161 HWTSTAMP_FILTER_PTP_V2_L2_EVENT, 120 HWTSTAMP_FILTER_PTP_V2_L2_EVENT, 162 /* 802.AS1, Ethernet, Sync packet */ 121 /* 802.AS1, Ethernet, Sync packet */ 163 HWTSTAMP_FILTER_PTP_V2_L2_SYNC, 122 HWTSTAMP_FILTER_PTP_V2_L2_SYNC, 164 /* 802.AS1, Ethernet, Delay_req packet 123 /* 802.AS1, Ethernet, Delay_req packet */ 165 HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ, 124 HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ, 166 125 167 /* PTP v2/802.AS1, any layer, any kind 126 /* PTP v2/802.AS1, any layer, any kind of event packet */ 168 HWTSTAMP_FILTER_PTP_V2_EVENT, 127 HWTSTAMP_FILTER_PTP_V2_EVENT, 169 /* PTP v2/802.AS1, any layer, Sync pac 128 /* PTP v2/802.AS1, any layer, Sync packet */ 170 HWTSTAMP_FILTER_PTP_V2_SYNC, 129 HWTSTAMP_FILTER_PTP_V2_SYNC, 171 /* PTP v2/802.AS1, any layer, Delay_re 130 /* PTP v2/802.AS1, any layer, Delay_req packet */ 172 HWTSTAMP_FILTER_PTP_V2_DELAY_REQ, 131 HWTSTAMP_FILTER_PTP_V2_DELAY_REQ, 173 132 174 /* NTP, UDP, all versions and packet m 133 /* NTP, UDP, all versions and packet modes */ 175 HWTSTAMP_FILTER_NTP_ALL, 134 HWTSTAMP_FILTER_NTP_ALL, 176 << 177 /* add new constants above here */ << 178 __HWTSTAMP_FILTER_CNT << 179 }; 135 }; 180 136 181 /* SCM_TIMESTAMPING_PKTINFO control message */ 137 /* SCM_TIMESTAMPING_PKTINFO control message */ 182 struct scm_ts_pktinfo { 138 struct scm_ts_pktinfo { 183 __u32 if_index; 139 __u32 if_index; 184 __u32 pkt_length; 140 __u32 pkt_length; 185 __u32 reserved[2]; 141 __u32 reserved[2]; 186 }; 142 }; 187 143 188 /* 144 /* 189 * SO_TXTIME gets a struct sock_txtime with fl 145 * SO_TXTIME gets a struct sock_txtime with flags being an integer bit 190 * field comprised of these values. 146 * field comprised of these values. 191 */ 147 */ 192 enum txtime_flags { 148 enum txtime_flags { 193 SOF_TXTIME_DEADLINE_MODE = (1 << 0), 149 SOF_TXTIME_DEADLINE_MODE = (1 << 0), 194 SOF_TXTIME_REPORT_ERRORS = (1 << 1), 150 SOF_TXTIME_REPORT_ERRORS = (1 << 1), 195 151 196 SOF_TXTIME_FLAGS_LAST = SOF_TXTIME_REP 152 SOF_TXTIME_FLAGS_LAST = SOF_TXTIME_REPORT_ERRORS, 197 SOF_TXTIME_FLAGS_MASK = (SOF_TXTIME_FL 153 SOF_TXTIME_FLAGS_MASK = (SOF_TXTIME_FLAGS_LAST - 1) | 198 SOF_TXTIME_FL 154 SOF_TXTIME_FLAGS_LAST 199 }; 155 }; 200 156 201 struct sock_txtime { 157 struct sock_txtime { 202 __kernel_clockid_t clockid;/* ref 158 __kernel_clockid_t clockid;/* reference clockid */ 203 __u32 flags; /* as 159 __u32 flags; /* as defined by enum txtime_flags */ 204 }; 160 }; 205 161 206 #endif /* _NET_TIMESTAMPING_H */ 162 #endif /* _NET_TIMESTAMPING_H */ 207 163
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.