Home
last modified time | relevance | path

Searched refs:nv_crtc (Results 1 – 12 of 12) sorted by relevance

/linux-6.3-rc2/drivers/gpu/drm/nouveau/dispnv04/
A Dcrtc.c171 nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.offset); in nv_crtc_calc_state_ext()
752 if (!nv_crtc) in nv_crtc_destroy()
766 kfree(nv_crtc); in nv_crtc_destroy()
993 nv_crtc->cursor.hide(nv_crtc, true); in nv04_crtc_cursor_set()
1015 nv_crtc->cursor.offset = nv_crtc->cursor.nvbo->offset; in nv04_crtc_cursor_set()
1016 nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.offset); in nv04_crtc_cursor_set()
1017 nv_crtc->cursor.show(nv_crtc, true); in nv04_crtc_cursor_set()
1028 nv_crtc->cursor.set_pos(nv_crtc, x, y); in nv04_crtc_cursor_move()
1292 nv_crtc = kzalloc(sizeof(*nv_crtc), GFP_KERNEL); in nv04_crtc_create()
1293 if (!nv_crtc) in nv04_crtc_create()
[all …]
A Dcursor.c9 nv04_cursor_show(struct nouveau_crtc *nv_crtc, bool update) in nv04_cursor_show() argument
11 nv_show_cursor(nv_crtc->base.dev, nv_crtc->index, true); in nv04_cursor_show()
15 nv04_cursor_hide(struct nouveau_crtc *nv_crtc, bool update) in nv04_cursor_hide() argument
17 nv_show_cursor(nv_crtc->base.dev, nv_crtc->index, false); in nv04_cursor_hide()
21 nv04_cursor_set_pos(struct nouveau_crtc *nv_crtc, int x, int y) in nv04_cursor_set_pos() argument
23 nv_crtc->cursor_saved_x = x; nv_crtc->cursor_saved_y = y; in nv04_cursor_set_pos()
24 NVWriteRAMDAC(nv_crtc->base.dev, nv_crtc->index, in nv04_cursor_set_pos()
38 nv04_cursor_set_offset(struct nouveau_crtc *nv_crtc, uint32_t offset) in nv04_cursor_set_offset() argument
40 struct drm_device *dev = nv_crtc->base.dev; in nv04_cursor_set_offset()
43 struct drm_crtc *crtc = &nv_crtc->base; in nv04_cursor_set_offset()
[all …]
A Ddisp.c90 if (nv_crtc->cursor.nvbo) { in nv04_display_fini()
91 if (nv_crtc->cursor.set_offset) in nv04_display_fini()
117 nv_crtc->save(&nv_crtc->base); in nv04_display_init()
144 if (!nv_crtc->cursor.nvbo) in nv04_display_init()
159 nv_crtc->lut.depth = 0; in nv04_display_init()
175 if (!nv_crtc->cursor.nvbo) in nv04_display_init()
179 nv_crtc->cursor.set_offset(nv_crtc, in nv04_display_init()
181 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x, in nv04_display_init()
182 nv_crtc->cursor_saved_y); in nv04_display_init()
194 struct nouveau_crtc *nv_crtc; in nv04_display_destroy() local
[all …]
A Ddfp.c117 struct nouveau_crtc *nv_crtc; in nv04_dfp_update_fp_control() local
121 nv_crtc = nouveau_crtc(encoder->crtc); in nv04_dfp_update_fp_control()
129 *fpc = nv_crtc->dpms_saved_fp_control; in nv04_dfp_update_fp_control()
136 nv_crtc = nouveau_crtc(crtc); in nv04_dfp_update_fp_control()
140 if (!is_fpc_off(*fpc) && !nv_crtc->fp_users) { in nv04_dfp_update_fp_control()
141 nv_crtc->dpms_saved_fp_control = *fpc; in nv04_dfp_update_fp_control()
145 NVWriteRAMDAC(dev, nv_crtc->index, in nv04_dfp_update_fp_control()
287 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); in nv04_dfp_mode_set() local
297 NV_DEBUG(drm, "Output mode on CRTC %d:\n", nv_crtc->index); in nv04_dfp_mode_set()
451 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); in nv04_dfp_commit() local
[all …]
A Dtvnv04.c145 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); in nv04_tv_mode_set() local
146 struct nv04_crtc_reg *regp = &nv04_display(dev)->mode_reg.crtc_reg[nv_crtc->index]; in nv04_tv_mode_set()
169 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); in nv04_tv_commit() local
176 nv_crtc->index, '@' + ffs(nv_encoder->dcb->or)); in nv04_tv_commit()
A Doverlay.c124 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); in nv10_update_plane() local
128 int soff = NV_PCRTC0_SIZE * nv_crtc->index; in nv10_update_plane()
129 int soff2 = NV_PCRTC0_SIZE * !nv_crtc->index; in nv10_update_plane()
A Ddac.c416 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); in nv04_dac_commit() local
423 nv_crtc->index, '@' + ffs(nv_encoder->dcb->or)); in nv04_dac_commit()
A Dtvnv17.c577 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); in nv17_tv_commit() local
604 nv_crtc->index, '@' + ffs(nv_encoder->dcb->or)); in nv17_tv_commit()
/linux-6.3-rc2/drivers/gpu/drm/nouveau/dispnv50/
A Ddisp.c460 switch (nv_crtc->index) { in nv50_dac_atomic_enable()
477 nv_encoder->crtc = &nv_crtc->base; in nv50_dac_atomic_enable()
573 struct nouveau_crtc *nv_crtc; in nv50_audio_component_get_eld() local
588 nv_crtc = nouveau_crtc(nv_encoder->crtc); in nv50_audio_component_get_eld()
590 if (!nv_crtc || nv_encoder->outp.or.id != port || nv_crtc->index != dev_id) in nv50_audio_component_get_eld()
785 args.infoframe.head = nv_crtc->index; in nv50_hdmi_enable()
1526 nv_encoder->update(nv_encoder, nv_crtc->index, NULL, 0, 0); in nv50_sor_atomic_disable()
1527 nv50_audio_disable(encoder, nv_crtc); in nv50_sor_atomic_disable()
1554 nv_encoder->crtc = &nv_crtc->base; in nv50_sor_atomic_enable()
1791 switch (nv_crtc->index) { in nv50_pior_atomic_enable()
[all …]
A Dhead.c560 struct nouveau_crtc *nv_crtc = container_of(event, struct nouveau_crtc, vblank); in nv50_head_vblank_handler() local
562 if (drm_crtc_handle_vblank(&nv_crtc->base)) in nv50_head_vblank_handler()
563 nv50_crc_handle_vblank(nv50_head(&nv_crtc->base)); in nv50_head_vblank_handler()
575 struct nouveau_crtc *nv_crtc; in nv50_head_create() local
608 nv_crtc = &head->base; in nv50_head_create()
609 crtc = &nv_crtc->base; in nv50_head_create()
632 false, &nv_crtc->vblank); in nv50_head_create()
/linux-6.3-rc2/drivers/gpu/drm/nouveau/
A Dnouveau_connector.h182 nouveau_crtc_connector_get(struct nouveau_crtc *nv_crtc) in nouveau_crtc_connector_get() argument
184 struct drm_device *dev = nv_crtc->base.dev; in nouveau_crtc_connector_get()
188 struct drm_crtc *crtc = to_drm_crtc(nv_crtc); in nouveau_crtc_connector_get()
A Dnouveau_display.c51 struct nouveau_crtc *nv_crtc; in nouveau_display_vblank_enable() local
53 nv_crtc = nouveau_crtc(crtc); in nouveau_display_vblank_enable()
54 nvif_event_allow(&nv_crtc->vblank); in nouveau_display_vblank_enable()
62 struct nouveau_crtc *nv_crtc; in nouveau_display_vblank_disable() local
64 nv_crtc = nouveau_crtc(crtc); in nouveau_display_vblank_disable()
65 nvif_event_block(&nv_crtc->vblank); in nouveau_display_vblank_disable()

Completed in 25 milliseconds