brintos

brintos / linux-shallow public Read only

0
0
Text · 563 B · 6756c74 Raw
36 lines · c
1/* SPDX-License-Identifier: MIT */2#ifndef __NVIF_IF0013_H__3#define __NVIF_IF0013_H__4 5union nvif_head_args {6	struct nvif_head_v0 {7		__u8 version;8		__u8 id;9		__u8 pad02[6];10	} v0;11};12 13union nvif_head_event_args {14	struct nvif_head_event_vn {15	} vn;16};17 18#define NVIF_HEAD_V0_SCANOUTPOS 0x0019 20union nvif_head_scanoutpos_args {21	struct nvif_head_scanoutpos_v0 {22		__u8  version;23		__u8  pad01[7];24		__s64 time[2];25		__u16 vblanks;26		__u16 vblanke;27		__u16 vtotal;28		__u16 vline;29		__u16 hblanks;30		__u16 hblanke;31		__u16 htotal;32		__u16 hline;33	} v0;34};35#endif36