Home
last modified time | relevance | path

Searched refs:nvif_mthd (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/gpu/drm/nouveau/nvif/
H A Doutp.c211 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_HDA_ELD, &args, sizeof(args.mthd) + size); in nvif_outp_hda_eld()
223 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_INFOFRAME, args, sizeof(*args) + size); in nvif_outp_infoframe()
245 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_HDMI, &args, sizeof(args)); in nvif_outp_hdmi()
264 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_LVDS, &args, sizeof(args)); in nvif_outp_lvds()
299 int ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_RELEASE, NULL, 0); in nvif_outp_release()
312 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_ACQUIRE, args, sizeof(*args)); in nvif_outp_acquire()
367 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_INHERIT, args, sizeof(*args)); in nvif_outp_inherit()
433 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_LOAD_DETECT, &args, sizeof(args)); in nvif_outp_load_detect()
450 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_EDID_GET, args, sizeof(*args)); in nvif_outp_edid_get()
475 ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_DETECT, &args, sizeof(args)); in nvif_outp_detect()
H A Devent.c32 int ret = nvif_mthd(&event->object, NVIF_EVENT_V0_BLOCK, NULL, 0); in nvif_event_block()
43 int ret = nvif_mthd(&event->object, NVIF_EVENT_V0_ALLOW, NULL, 0); in nvif_event_allow()
/linux/drivers/gpu/drm/nouveau/
H A Dnouveau_debugfs.c84 ret = nvif_mthd(ctrl, NVIF_CONTROL_PSTATE_INFO, &info, sizeof(info)); in nouveau_debugfs_pstate_get()
96 ret = nvif_mthd(ctrl, NVIF_CONTROL_PSTATE_ATTR, in nouveau_debugfs_pstate_get()
110 ret = nvif_mthd(ctrl, NVIF_CONTROL_PSTATE_ATTR, in nouveau_debugfs_pstate_get()
191 ret = nvif_mthd(&debugfs->ctrl, NVIF_CONTROL_PSTATE_USER, in nouveau_debugfs_pstate_set()
H A Dnouveau_display.c96 ret = nvif_mthd(&head->object, NVIF_HEAD_V0_SCANOUTPOS, &args, sizeof(args)); in nouveau_display_scanoutpos_head()
/linux/drivers/gpu/drm/nouveau/include/nvif/
H A Dobject.h67 #define nvif_mthd(a,b,c,d) nvif_object_mthd((a), (b), (c), (d)) macro