1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*
* include/uapi/linux/nvhvivc_mempool_ioctl.h
*
* Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#ifndef __UAPI_NVPPS_IOCTL_H__
#define __UAPI_NVPPS_IOCTL_H__
#include <linux/types.h>
#include <linux/ioctl.h>
struct nvpps_version {
struct _version {
__u32 major;
__u32 minor;
} version;
struct _api {
__u32 major;
__u32 minor;
} api;
};
#define NVPPS_VERSION_MAJOR 0
#define NVPPS_VERSION_MINOR 1
#define NVPPS_API_MAJOR 0
#define NVPPS_API_MINOR 1
struct nvpps_params {
__u32 evt_mode;
__u32 tsc_mode;
};
/* evt_mode */
#define NVPPS_MODE_GPIO 0x01
#define NVPPS_MODE_TIMER 0x02
/* tsc_mode */
#define NVPPS_TSC_NSEC 0
#define NVPPS_TSC_COUNTER 1
struct nvpps_timeevent {
__u32 evt_nb;
__u64 tsc;
__u64 ptp;
__u64 tsc_res_ns;
__u32 evt_mode;
__u32 tsc_mode;
__u64 irq_latency;
};
#define NVPPS_GETVERSION _IOR('p', 0x1, struct nvpps_version *)
#define NVPPS_GETPARAMS _IOR('p', 0x2, struct nvpps_params *)
#define NVPPS_SETPARAMS _IOW('p', 0x3, struct nvpps_params *)
#define NVPPS_GETEVENT _IOR('p', 0x4, struct nvpps_timeevent *)
#endif /* __UAPI_NVPPS_IOCTL_H__ */
|