/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvif/ |
D | object.h | 12 struct nvif_object { struct 23 int nvif_object_init(struct nvif_object *, u32 handle, s32 oclass, void *, u32, argument 24 struct nvif_object *); 25 void nvif_object_fini(struct nvif_object *); 26 int nvif_object_ioctl(struct nvif_object *, void *, u32, void **); 27 int nvif_object_sclass_get(struct nvif_object *, struct nvif_sclass **); 29 u32 nvif_object_rd(struct nvif_object *, int, u64); 30 void nvif_object_wr(struct nvif_object *, int, u64, u32); 31 int nvif_object_mthd(struct nvif_object *, u32, void *, u32); 32 int nvif_object_map(struct nvif_object *); [all …]
|
D | notify.h | 5 struct nvif_object *object; 26 int nvif_notify_init(struct nvif_object *, int (*func)(struct nvif_notify *),
|
D | device.h | 8 struct nvif_object object; 12 int nvif_device_init(struct nvif_object *, u32 handle, s32 oclass, void *, u32,
|
D | client.h | 7 struct nvif_object object;
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_fbcon.h | 40 struct nvif_object surf2d; 41 struct nvif_object clip; 42 struct nvif_object rop; 43 struct nvif_object patt; 44 struct nvif_object gdi; 45 struct nvif_object blit; 46 struct nvif_object twod;
|
D | nouveau_chan.h | 13 struct nvif_object vram; 14 struct nvif_object gart; 15 struct nvif_object nvsw; 20 struct nvif_object ctxdma; 40 struct nvif_object user;
|
D | nouveau_backlight.c | 43 struct nvif_object *device = &drm->device.object; in nv40_get_intensity() 54 struct nvif_object *device = &drm->device.object; in nv40_set_intensity() 74 struct nvif_object *device = &drm->device.object; in nv40_backlight_init() 100 struct nvif_object *device = &drm->device.object; in nv50_get_intensity() 115 struct nvif_object *device = &drm->device.object; in nv50_set_intensity() 136 struct nvif_object *device = &drm->device.object; in nva3_get_intensity() 154 struct nvif_object *device = &drm->device.object; in nva3_set_intensity() 180 struct nvif_object *device = &drm->device.object; in nv50_backlight_init()
|
D | nv10_fence.h | 9 struct nvif_object sema; 10 struct nvif_object head[4];
|
D | nouveau_display.h | 15 struct nvif_object h_base[4]; 16 struct nvif_object h_core; 44 struct nvif_object disp;
|
D | nouveau_drm.h | 132 struct nvif_object copy; 150 struct nvif_object nvsw; 151 struct nvif_object ntfy;
|
D | nouveau_sysfs.h | 7 struct nvif_object ctrl;
|
D | nv50_display.c | 62 struct nvif_object user; 67 nv50_chan_create(struct nvif_device *device, struct nvif_object *disp, in nv50_chan_create() 119 nv50_pioc_create(struct nvif_device *device, struct nvif_object *disp, in nv50_pioc_create() 136 nv50_curs_create(struct nvif_device *device, struct nvif_object *disp, in nv50_curs_create() 164 nv50_oimm_create(struct nvif_device *device, struct nvif_object *disp, in nv50_oimm_create() 192 struct nvif_object sync; 193 struct nvif_object vram; 202 nv50_dmac_destroy(struct nv50_dmac *dmac, struct nvif_object *disp) in nv50_dmac_destroy() 218 nv50_dmac_create(struct nvif_device *device, struct nvif_object *disp, in nv50_dmac_create() 223 struct nvif_object pushbuf; in nv50_dmac_create() [all …]
|
D | nouveau_abi16.h | 16 struct nvif_object object;
|
D | nouveau_vga.c | 16 struct nvif_object *device = &drm->device.object; in nouveau_vga_set_decode()
|
D | nouveau_bios.c | 218 struct nvif_object *device = &drm->device.object; in call_lvds_script() 322 struct nvif_object *device = &drm->device.object; in get_fp_strap() 638 struct nvif_object *device = &drm->device.object; in run_tmds_table() 1918 struct nvif_object *device = &drm->device.object; in load_nv17_hwsq_ucode_entry()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvif/ |
D | object.c | 31 nvif_object_ioctl(struct nvif_object *object, void *data, u32 size, void **hack) in nvif_object_ioctl() 59 nvif_object_sclass_get(struct nvif_object *object, struct nvif_sclass **psclass) in nvif_object_sclass_get() 103 nvif_object_rd(struct nvif_object *object, int size, u64 addr) in nvif_object_rd() 122 nvif_object_wr(struct nvif_object *object, int size, u64 addr, u32 data) in nvif_object_wr() 140 nvif_object_mthd(struct nvif_object *object, u32 mthd, void *data, u32 size) in nvif_object_mthd() 169 nvif_object_unmap(struct nvif_object *object) in nvif_object_unmap() 192 nvif_object_map(struct nvif_object *object) in nvif_object_map() 214 nvif_object_fini(struct nvif_object *object) in nvif_object_fini() 232 nvif_object_init(struct nvif_object *parent, u32 handle, s32 oclass, in nvif_object_init() 233 void *data, u32 size, struct nvif_object *object) in nvif_object_init()
|
D | notify.c | 35 struct nvif_object *object = notify->object; in nvif_notify_put_() 66 struct nvif_object *object = notify->object; in nvif_notify_get_() 147 struct nvif_object *object = notify->object; in nvif_notify_fini() 167 nvif_notify_init(struct nvif_object *object, int (*func)(struct nvif_notify *), in nvif_notify_init()
|
D | device.c | 44 nvif_device_init(struct nvif_object *parent, u32 handle, s32 oclass, in nvif_device_init()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/ |
D | hw.h | 63 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVReadCRTC() 74 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVWriteCRTC() 83 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVReadRAMDAC() 94 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVWriteRAMDAC() 123 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVWriteVgaCrtc() 131 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVReadVgaCrtc() 168 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVReadPRMVIO() 184 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVWritePRMVIO() 197 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVSetEnablePalette() 204 struct nvif_object *device = &nouveau_drm(dev)->device.object; in NVGetEnablePalette() [all …]
|
D | overlay.c | 100 struct nvif_object *dev = &drm->device.object; in nv10_update_plane() 177 struct nvif_object *dev = &nouveau_drm(plane->dev)->device.object; in nv10_disable_plane() 201 struct nvif_object *dev = &nouveau_drm(plane->base.dev)->device.object; in nv10_set_params() 350 struct nvif_object *dev = &nouveau_drm(plane->dev)->device.object; in nv04_update_plane() 430 struct nvif_object *dev = &nouveau_drm(plane->dev)->device.object; in nv04_disable_plane()
|
D | dac.c | 69 struct nvif_object *device = &drm->device.object; in sample_load_twice() 136 struct nvif_object *device = &nouveau_drm(dev)->device.object; in nv04_dac_detect() 239 struct nvif_object *device = &nouveau_drm(dev)->device.object; in nv17_dac_sample_load()
|
D | hw.c | 168 struct nvif_object *device = &drm->device.object; in nouveau_hw_get_pllvals() 663 struct nvif_object *device = &drm->device.object; in nv_load_state_ext() 773 struct nvif_object *device = &nouveau_drm(dev)->device.object; in nv_save_state_palette() 792 struct nvif_object *device = &nouveau_drm(dev)->device.object; in nouveau_hw_load_state_palette()
|
D | arb.c | 201 struct nvif_object *device = &nouveau_drm(dev)->device.object; in nv04_update_arb()
|
D | dfp.c | 284 struct nvif_object *device = &nouveau_drm(dev)->device.object; in nv04_dfp_mode_set() 488 struct nvif_object *device = &nouveau_drm(dev)->device.object; in nv04_dfp_update_backlight()
|