1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2/* 3 * Userspace API for hardware time stamping of network packets 4 * 5 * Copyright (C) 2008,2009 Intel Corporation 6 * Author: Patrick Ohly <patrick.ohly@intel.com> 7 * 8 */ 9 10#ifndef _NET_TIMESTAMPING_H 11#define _NET_TIMESTAMPING_H 12 13#include <linux/types.h> 14#include <linux/socket.h> /* for SO_TIMESTAMPING */ 15 16/* SO_TIMESTAMPING gets an integer bit field comprised of these values */ 17enum { 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), 33 34 SOF_TIMESTAMPING_LAST = SOF_TIMESTAMPING_OPT_TX_SWHW, 35 SOF_TIMESTAMPING_MASK = (SOF_TIMESTAMPING_LAST - 1) | 36 SOF_TIMESTAMPING_LAST 37}; 38 39/* 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. 43 */ 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) 48 49/** 50 * struct hwtstamp_config - %SIOCGHWTSTAMP and %SIOCSHWTSTAMP parameter 51 * 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_* 55 * 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. 61 */ 62struct hwtstamp_config { 63 int flags; 64 int tx_type; 65 int rx_filter; 66}; 67 68/* possible values for hwtstamp_config->tx_type */ 69enum hwtstamp_tx_types { 70 /* 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. 74 */ 75 HWTSTAMP_TX_OFF, 76 77 /* 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. 82 */ 83 HWTSTAMP_TX_ON, 84 85 /* 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 90 * queue. 91 */ 92 HWTSTAMP_TX_ONESTEP_SYNC, 93 94 /* add new constants above here */ 95 __HWTSTAMP_TX_CNT 96}; 97 98/* possible values for hwtstamp_config->rx_filter */ 99enum hwtstamp_rx_filters { 100 /* time stamp no incoming packet at all */ 101 HWTSTAMP_FILTER_NONE, 102 103 /* time stamp any incoming packet */ 104 HWTSTAMP_FILTER_ALL, 105 106 /* return value: time stamp all packets requested plus some others */ 107 HWTSTAMP_FILTER_SOME, 108 109 /* PTP v1, UDP, any kind of event packet */ 110 HWTSTAMP_FILTER_PTP_V1_L4_EVENT, 111 /* PTP v1, UDP, Sync packet */ 112 HWTSTAMP_FILTER_PTP_V1_L4_SYNC, 113 /* PTP v1, UDP, Delay_req packet */ 114 HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ, 115 /* PTP v2, UDP, any kind of event packet */ 116 HWTSTAMP_FILTER_PTP_V2_L4_EVENT, 117 /* PTP v2, UDP, Sync packet */ 118 HWTSTAMP_FILTER_PTP_V2_L4_SYNC, 119 /* PTP v2, UDP, Delay_req packet */ 120 HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ, 121 122 /* 802.AS1, Ethernet, any kind of event packet */ 123 HWTSTAMP_FILTER_PTP_V2_L2_EVENT, 124 /* 802.AS1, Ethernet, Sync packet */ 125 HWTSTAMP_FILTER_PTP_V2_L2_SYNC, 126 /* 802.AS1, Ethernet, Delay_req packet */ 127 HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ, 128 129 /* PTP v2/802.AS1, any layer, any kind of event packet */ 130 HWTSTAMP_FILTER_PTP_V2_EVENT, 131 /* PTP v2/802.AS1, any layer, Sync packet */ 132 HWTSTAMP_FILTER_PTP_V2_SYNC, 133 /* PTP v2/802.AS1, any layer, Delay_req packet */ 134 HWTSTAMP_FILTER_PTP_V2_DELAY_REQ, 135 136 /* NTP, UDP, all versions and packet modes */ 137 HWTSTAMP_FILTER_NTP_ALL, 138 139 /* add new constants above here */ 140 __HWTSTAMP_FILTER_CNT 141}; 142 143/* SCM_TIMESTAMPING_PKTINFO control message */ 144struct scm_ts_pktinfo { 145 __u32 if_index; 146 __u32 pkt_length; 147 __u32 reserved[2]; 148}; 149 150/* 151 * SO_TXTIME gets a struct sock_txtime with flags being an integer bit 152 * field comprised of these values. 153 */ 154enum txtime_flags { 155 SOF_TXTIME_DEADLINE_MODE = (1 << 0), 156 SOF_TXTIME_REPORT_ERRORS = (1 << 1), 157 158 SOF_TXTIME_FLAGS_LAST = SOF_TXTIME_REPORT_ERRORS, 159 SOF_TXTIME_FLAGS_MASK = (SOF_TXTIME_FLAGS_LAST - 1) | 160 SOF_TXTIME_FLAGS_LAST 161}; 162 163struct sock_txtime { 164 __kernel_clockid_t clockid;/* reference clockid */ 165 __u32 flags; /* as defined by enum txtime_flags */ 166}; 167 168#endif /* _NET_TIMESTAMPING_H */ 169