brintos

brintos / linux-shallow public Read only

0
0
Text · 798 B · 3ed0ddd Raw
34 lines · c
1/* SPDX-License-Identifier: MIT */2#ifndef __NVIF_IF0011_H__3#define __NVIF_IF0011_H__4 5union nvif_conn_args {6	struct nvif_conn_v0 {7		__u8 version;8		__u8 id;	/* DCB connector table index. */9		__u8 pad02[6];10#define NVIF_CONN_V0_VGA       0x0011#define NVIF_CONN_V0_TV        0x0112#define NVIF_CONN_V0_DVI_I     0x0213#define NVIF_CONN_V0_DVI_D     0x0314#define NVIF_CONN_V0_LVDS      0x0415#define NVIF_CONN_V0_LVDS_SPWG 0x0516#define NVIF_CONN_V0_HDMI      0x0617#define NVIF_CONN_V0_DP        0x0718#define NVIF_CONN_V0_EDP       0x0819		__u8 type;20	} v0;21};22 23union nvif_conn_event_args {24	struct nvif_conn_event_v0 {25		__u8 version;26#define NVIF_CONN_EVENT_V0_PLUG   0x0127#define NVIF_CONN_EVENT_V0_UNPLUG 0x0228#define NVIF_CONN_EVENT_V0_IRQ    0x0429		__u8 types;30		__u8 pad02[6];31	} v0;32};33#endif34