655a7c081f
Change-Id: If0be7b83bd8fe7cb02472d173f7c452aabf61124
72 lines
2.8 KiB
C
72 lines
2.8 KiB
C
/****************************************************************************
|
|
****************************************************************************
|
|
***
|
|
*** This header was automatically generated from a Linux kernel header
|
|
*** of the same name, to make information necessary for userspace to
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
*** structures, and macros generated from the original header, and thus,
|
|
*** contains no copyrightable information.
|
|
***
|
|
*** To edit the content of this header, modify the corresponding
|
|
*** source file (e.g. under external/kernel-headers/original/) then
|
|
*** run bionic/libc/kernel/tools/update_all.py
|
|
***
|
|
*** Any manual change here will be lost the next time this script will
|
|
*** be run. You've been warned!
|
|
***
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
#ifndef _NET_TIMESTAMPING_H
|
|
#define _NET_TIMESTAMPING_H
|
|
#include <linux/socket.h>
|
|
enum {
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
SOF_TIMESTAMPING_TX_HARDWARE = (1<<0),
|
|
SOF_TIMESTAMPING_TX_SOFTWARE = (1<<1),
|
|
SOF_TIMESTAMPING_RX_HARDWARE = (1<<2),
|
|
SOF_TIMESTAMPING_RX_SOFTWARE = (1<<3),
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
SOF_TIMESTAMPING_SOFTWARE = (1<<4),
|
|
SOF_TIMESTAMPING_SYS_HARDWARE = (1<<5),
|
|
SOF_TIMESTAMPING_RAW_HARDWARE = (1<<6),
|
|
SOF_TIMESTAMPING_MASK =
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
(SOF_TIMESTAMPING_RAW_HARDWARE - 1) |
|
|
SOF_TIMESTAMPING_RAW_HARDWARE
|
|
};
|
|
struct hwtstamp_config {
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
int flags;
|
|
int tx_type;
|
|
int rx_filter;
|
|
};
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
enum hwtstamp_tx_types {
|
|
HWTSTAMP_TX_OFF,
|
|
HWTSTAMP_TX_ON,
|
|
HWTSTAMP_TX_ONESTEP_SYNC,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
};
|
|
enum hwtstamp_rx_filters {
|
|
HWTSTAMP_FILTER_NONE,
|
|
HWTSTAMP_FILTER_ALL,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
HWTSTAMP_FILTER_SOME,
|
|
HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
|
|
HWTSTAMP_FILTER_PTP_V1_L4_SYNC,
|
|
HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
HWTSTAMP_FILTER_PTP_V2_L4_EVENT,
|
|
HWTSTAMP_FILTER_PTP_V2_L4_SYNC,
|
|
HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ,
|
|
HWTSTAMP_FILTER_PTP_V2_L2_EVENT,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
HWTSTAMP_FILTER_PTP_V2_L2_SYNC,
|
|
HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ,
|
|
HWTSTAMP_FILTER_PTP_V2_EVENT,
|
|
HWTSTAMP_FILTER_PTP_V2_SYNC,
|
|
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
HWTSTAMP_FILTER_PTP_V2_DELAY_REQ,
|
|
};
|
|
#endif
|