blob: a681a65b5bc7c9fa9b3bb5700ad63c36a2e2d44b [file] [log] [blame]
Patrick Ohlycb9eff02009-02-12 05:03:36 +00001The existing interfaces for getting network packages time stamped are:
2
3* SO_TIMESTAMP
4 Generate time stamp for each incoming packet using the (not necessarily
5 monotonous!) system time. Result is returned via recv_msg() in a
6 control message as timeval (usec resolution).
7
8* SO_TIMESTAMPNS
9 Same time stamping mechanism as SO_TIMESTAMP, but returns result as
10 timespec (nsec resolution).
11
12* IP_MULTICAST_LOOP + SO_TIMESTAMP[NS]
13 Only for multicasts: approximate send time stamp by receiving the looped
14 packet and using its receive time stamp.
15
16The following interface complements the existing ones: receive time
17stamps can be generated and returned for arbitrary packets and much
18closer to the point where the packet is really sent. Time stamps can
19be generated in software (as before) or in hardware (if the hardware
20has such a feature).
21
22SO_TIMESTAMPING:
23
24Instructs the socket layer which kind of information is wanted. The
25parameter is an integer with some of the following bits set. Setting
26other bits is an error and doesn't change the current state.
27
28SOF_TIMESTAMPING_TX_HARDWARE: try to obtain send time stamp in hardware
29SOF_TIMESTAMPING_TX_SOFTWARE: if SOF_TIMESTAMPING_TX_HARDWARE is off or
30 fails, then do it in software
31SOF_TIMESTAMPING_RX_HARDWARE: return the original, unmodified time stamp
32 as generated by the hardware
33SOF_TIMESTAMPING_RX_SOFTWARE: if SOF_TIMESTAMPING_RX_HARDWARE is off or
34 fails, then do it in software
35SOF_TIMESTAMPING_RAW_HARDWARE: return original raw hardware time stamp
36SOF_TIMESTAMPING_SYS_HARDWARE: return hardware time stamp transformed to
37 the system time base
38SOF_TIMESTAMPING_SOFTWARE: return system time stamp generated in
39 software
40
41SOF_TIMESTAMPING_TX/RX determine how time stamps are generated.
42SOF_TIMESTAMPING_RAW/SYS determine how they are reported in the
43following control message:
44 struct scm_timestamping {
45 struct timespec systime;
46 struct timespec hwtimetrans;
47 struct timespec hwtimeraw;
48 };
49
50recvmsg() can be used to get this control message for regular incoming
51packets. For send time stamps the outgoing packet is looped back to
52the socket's error queue with the send time stamp(s) attached. It can
53be received with recvmsg(flags=MSG_ERRQUEUE). The call returns the
54original outgoing packet data including all headers preprended down to
55and including the link layer, the scm_timestamping control message and
56a sock_extended_err control message with ee_errno==ENOMSG and
57ee_origin==SO_EE_ORIGIN_TIMESTAMPING. A socket with such a pending
58bounced packet is ready for reading as far as select() is concerned.
59
60All three values correspond to the same event in time, but were
61generated in different ways. Each of these values may be empty (= all
62zero), in which case no such value was available. If the application
63is not interested in some of these values, they can be left blank to
64avoid the potential overhead of calculating them.
65
66systime is the value of the system time at that moment. This
67corresponds to the value also returned via SO_TIMESTAMP[NS]. If the
68time stamp was generated by hardware, then this field is
69empty. Otherwise it is filled in if SOF_TIMESTAMPING_SOFTWARE is
70set.
71
72hwtimeraw is the original hardware time stamp. Filled in if
73SOF_TIMESTAMPING_RAW_HARDWARE is set. No assumptions about its
74relation to system time should be made.
75
76hwtimetrans is the hardware time stamp transformed so that it
77corresponds as good as possible to system time. This correlation is
78not perfect; as a consequence, sorting packets received via different
79NICs by their hwtimetrans may differ from the order in which they were
80received. hwtimetrans may be non-monotonic even for the same NIC.
81Filled in if SOF_TIMESTAMPING_SYS_HARDWARE is set. Requires support
82by the network device and will be empty without that support.
83
84
85SIOCSHWTSTAMP:
86
87Hardware time stamping must also be initialized for each device driver
88that is expected to do hardware time stamping. The parameter is:
89
90struct hwtstamp_config {
91 int flags; /* no flags defined right now, must be zero */
92 int tx_type; /* HWTSTAMP_TX_* */
93 int rx_filter; /* HWTSTAMP_FILTER_* */
94};
95
96Desired behavior is passed into the kernel and to a specific device by
97calling ioctl(SIOCSHWTSTAMP) with a pointer to a struct ifreq whose
98ifr_data points to a struct hwtstamp_config. The tx_type and
99rx_filter are hints to the driver what it is expected to do. If
100the requested fine-grained filtering for incoming packets is not
101supported, the driver may time stamp more than just the requested types
102of packets.
103
104A driver which supports hardware time stamping shall update the struct
105with the actual, possibly more permissive configuration. If the
106requested packets cannot be time stamped, then nothing should be
107changed and ERANGE shall be returned (in contrast to EINVAL, which
108indicates that SIOCSHWTSTAMP is not supported at all).
109
110Only a processes with admin rights may change the configuration. User
111space is responsible to ensure that multiple processes don't interfere
112with each other and that the settings are reset.
113
114/* possible values for hwtstamp_config->tx_type */
115enum {
116 /*
117 * no outgoing packet will need hardware time stamping;
118 * should a packet arrive which asks for it, no hardware
119 * time stamping will be done
120 */
121 HWTSTAMP_TX_OFF,
122
123 /*
124 * enables hardware time stamping for outgoing packets;
125 * the sender of the packet decides which are to be
126 * time stamped by setting SOF_TIMESTAMPING_TX_SOFTWARE
127 * before sending the packet
128 */
129 HWTSTAMP_TX_ON,
130};
131
132/* possible values for hwtstamp_config->rx_filter */
133enum {
134 /* time stamp no incoming packet at all */
135 HWTSTAMP_FILTER_NONE,
136
137 /* time stamp any incoming packet */
138 HWTSTAMP_FILTER_ALL,
139
140 /* return value: time stamp all packets requested plus some others */
141 HWTSTAMP_FILTER_SOME,
142
143 /* PTP v1, UDP, any kind of event packet */
144 HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
145
146 ...
147};
148
149
150DEVICE IMPLEMENTATION
151
152A driver which supports hardware time stamping must support the
153SIOCSHWTSTAMP ioctl. Time stamps for received packets must be stored
154in the skb with skb_hwtstamp_set().
155
156Time stamps for outgoing packets are to be generated as follows:
157- In hard_start_xmit(), check if skb_hwtstamp_check_tx_hardware()
158 returns non-zero. If yes, then the driver is expected
159 to do hardware time stamping.
160- If this is possible for the skb and requested, then declare
161 that the driver is doing the time stamping by calling
162 skb_hwtstamp_tx_in_progress(). A driver not supporting
163 hardware time stamping doesn't do that. A driver must never
164 touch sk_buff::tstamp! It is used to store how time stamping
165 for an outgoing packets is to be done.
166- As soon as the driver has sent the packet and/or obtained a
167 hardware time stamp for it, it passes the time stamp back by
168 calling skb_hwtstamp_tx() with the original skb, the raw
169 hardware time stamp and a handle to the device (necessary
170 to convert the hardware time stamp to system time). If obtaining
171 the hardware time stamp somehow fails, then the driver should
172 not fall back to software time stamping. The rationale is that
173 this would occur at a later time in the processing pipeline
174 than other software time stamping and therefore could lead
175 to unexpected deltas between time stamps.
176- If the driver did not call skb_hwtstamp_tx_in_progress(), then
177 dev_hard_start_xmit() checks whether software time stamping
178 is wanted as fallback and potentially generates the time stamp.