Lines Matching full:v0

38 	args.v0.version = 0;  in nvkm_uconn_uevent_aux()
39 args.v0.types = 0; in nvkm_uconn_uevent_aux()
41 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG; in nvkm_uconn_uevent_aux()
43 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG; in nvkm_uconn_uevent_aux()
45 args.v0.types |= NVIF_CONN_EVENT_V0_IRQ; in nvkm_uconn_uevent_aux()
47 return object->client->event(token, &args, sizeof(args.v0)); in nvkm_uconn_uevent_aux()
55 args.v0.version = 0; in nvkm_uconn_uevent_gpio()
56 args.v0.types = 0; in nvkm_uconn_uevent_gpio()
58 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG; in nvkm_uconn_uevent_gpio()
60 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG; in nvkm_uconn_uevent_gpio()
62 return object->client->event(token, &args, sizeof(args.v0)); in nvkm_uconn_uevent_gpio()
92 if (argc != sizeof(args->v0) || args->v0.version != 0) in nvkm_uconn_uevent()
104 if (args->v0.types & NVIF_CONN_EVENT_V0_PLUG ) bits |= NVKM_I2C_PLUG; in nvkm_uconn_uevent()
105 if (args->v0.types & NVIF_CONN_EVENT_V0_UNPLUG) bits |= NVKM_I2C_UNPLUG; in nvkm_uconn_uevent()
106 if (args->v0.types & NVIF_CONN_EVENT_V0_IRQ ) bits |= NVKM_I2C_IRQ; in nvkm_uconn_uevent()
112 if (args->v0.types & NVIF_CONN_EVENT_V0_PLUG ) bits |= NVKM_GPIO_HI; in nvkm_uconn_uevent()
113 if (args->v0.types & NVIF_CONN_EVENT_V0_UNPLUG) bits |= NVKM_GPIO_LO; in nvkm_uconn_uevent()
114 if (args->v0.types & NVIF_CONN_EVENT_V0_IRQ) { in nvkm_uconn_uevent()
130 if (argc != sizeof(args->v0) || args->v0.version != 0) in nvkm_uconn_mthd_hpd_status()
133 args->v0.support = gpio && conn->info.hpd != DCB_GPIO_UNUSED; in nvkm_uconn_mthd_hpd_status()
134 args->v0.present = 0; in nvkm_uconn_mthd_hpd_status()
136 if (args->v0.support) { in nvkm_uconn_mthd_hpd_status()
140 args->v0.support = false; in nvkm_uconn_mthd_hpd_status()
144 args->v0.present = ret; in nvkm_uconn_mthd_hpd_status()
191 if (argc != sizeof(args->v0) || args->v0.version != 0) in nvkm_uconn_new()
195 if (cont->index == args->v0.id) { in nvkm_uconn_new()