2 * Copyright (C) 2008 Maarten Maathuis.
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #include <drm/drm_atomic.h>
29 #include <drm/drm_atomic_helper.h>
30 #include <drm/drm_crtc_helper.h>
32 #include <nvif/class.h>
34 #include "nouveau_fbcon.h"
35 #include "dispnv04/hw.h"
36 #include "nouveau_crtc.h"
37 #include "nouveau_dma.h"
38 #include "nouveau_gem.h"
39 #include "nouveau_connector.h"
40 #include "nv50_display.h"
42 #include "nouveau_fence.h"
44 #include <nvif/cl0046.h>
45 #include <nvif/event.h>
48 nouveau_display_vblank_handler(struct nvif_notify *notify)
50 struct nouveau_crtc *nv_crtc =
51 container_of(notify, typeof(*nv_crtc), vblank);
52 drm_crtc_handle_vblank(&nv_crtc->base);
53 return NVIF_NOTIFY_KEEP;
57 nouveau_display_vblank_enable(struct drm_device *dev, unsigned int pipe)
59 struct drm_crtc *crtc;
60 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
61 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
62 if (nv_crtc->index == pipe) {
63 nvif_notify_get(&nv_crtc->vblank);
71 nouveau_display_vblank_disable(struct drm_device *dev, unsigned int pipe)
73 struct drm_crtc *crtc;
74 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
75 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
76 if (nv_crtc->index == pipe) {
77 nvif_notify_put(&nv_crtc->vblank);
84 calc(int blanks, int blanke, int total, int line)
86 if (blanke >= blanks) {
98 nouveau_display_scanoutpos_head(struct drm_crtc *crtc, int *vpos, int *hpos,
99 ktime_t *stime, ktime_t *etime)
102 struct nv04_disp_mthd_v0 base;
103 struct nv04_disp_scanoutpos_v0 scan;
105 .base.method = NV04_DISP_SCANOUTPOS,
106 .base.head = nouveau_crtc(crtc)->index,
108 struct nouveau_display *disp = nouveau_display(crtc->dev);
109 struct drm_vblank_crtc *vblank = &crtc->dev->vblank[drm_crtc_index(crtc)];
113 ret = nvif_mthd(&disp->disp, 0, &args, sizeof(args));
117 if (args.scan.vline) {
118 ret |= DRM_SCANOUTPOS_ACCURATE;
119 ret |= DRM_SCANOUTPOS_VALID;
123 if (retry) ndelay(vblank->linedur_ns);
126 *hpos = args.scan.hline;
127 *vpos = calc(args.scan.vblanks, args.scan.vblanke,
128 args.scan.vtotal, args.scan.vline);
129 if (stime) *stime = ns_to_ktime(args.scan.time[0]);
130 if (etime) *etime = ns_to_ktime(args.scan.time[1]);
133 ret |= DRM_SCANOUTPOS_IN_VBLANK;
138 nouveau_display_scanoutpos(struct drm_device *dev, unsigned int pipe,
139 unsigned int flags, int *vpos, int *hpos,
140 ktime_t *stime, ktime_t *etime,
141 const struct drm_display_mode *mode)
143 struct drm_crtc *crtc;
145 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
146 if (nouveau_crtc(crtc)->index == pipe) {
147 return nouveau_display_scanoutpos_head(crtc, vpos, hpos,
156 nouveau_display_vblstamp(struct drm_device *dev, unsigned int pipe,
157 int *max_error, struct timeval *time, unsigned flags)
159 struct drm_crtc *crtc;
161 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
162 if (nouveau_crtc(crtc)->index == pipe) {
163 struct drm_display_mode *mode;
164 if (dev->mode_config.funcs->atomic_commit)
165 mode = &crtc->state->adjusted_mode;
167 mode = &crtc->hwmode;
168 return drm_calc_vbltimestamp_from_scanoutpos(dev,
169 pipe, max_error, time, flags, mode);
177 nouveau_display_vblank_fini(struct drm_device *dev)
179 struct drm_crtc *crtc;
181 drm_vblank_cleanup(dev);
183 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
184 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
185 nvif_notify_fini(&nv_crtc->vblank);
190 nouveau_display_vblank_init(struct drm_device *dev)
192 struct nouveau_display *disp = nouveau_display(dev);
193 struct drm_crtc *crtc;
196 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
197 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
198 ret = nvif_notify_init(&disp->disp,
199 nouveau_display_vblank_handler, false,
200 NV04_DISP_NTFY_VBLANK,
201 &(struct nvif_notify_head_req_v0) {
202 .head = nv_crtc->index,
204 sizeof(struct nvif_notify_head_req_v0),
205 sizeof(struct nvif_notify_head_rep_v0),
208 nouveau_display_vblank_fini(dev);
213 ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
215 nouveau_display_vblank_fini(dev);
223 nouveau_user_framebuffer_destroy(struct drm_framebuffer *drm_fb)
225 struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
228 drm_gem_object_unreference_unlocked(&fb->nvbo->gem);
230 drm_framebuffer_cleanup(drm_fb);
235 nouveau_user_framebuffer_create_handle(struct drm_framebuffer *drm_fb,
236 struct drm_file *file_priv,
237 unsigned int *handle)
239 struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
241 return drm_gem_handle_create(file_priv, &fb->nvbo->gem, handle);
244 static const struct drm_framebuffer_funcs nouveau_framebuffer_funcs = {
245 .destroy = nouveau_user_framebuffer_destroy,
246 .create_handle = nouveau_user_framebuffer_create_handle,
250 nouveau_framebuffer_new(struct drm_device *dev,
251 const struct drm_mode_fb_cmd2 *mode_cmd,
252 struct nouveau_bo *nvbo,
253 struct nouveau_framebuffer **pfb)
255 struct nouveau_framebuffer *fb;
258 if (!(fb = *pfb = kzalloc(sizeof(*fb), GFP_KERNEL)))
261 drm_helper_mode_fill_fb_struct(&fb->base, mode_cmd);
264 ret = drm_framebuffer_init(dev, &fb->base, &nouveau_framebuffer_funcs);
270 struct drm_framebuffer *
271 nouveau_user_framebuffer_create(struct drm_device *dev,
272 struct drm_file *file_priv,
273 const struct drm_mode_fb_cmd2 *mode_cmd)
275 struct nouveau_framebuffer *fb;
276 struct nouveau_bo *nvbo;
277 struct drm_gem_object *gem;
280 gem = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
282 return ERR_PTR(-ENOENT);
283 nvbo = nouveau_gem_object(gem);
285 ret = nouveau_framebuffer_new(dev, mode_cmd, nvbo, &fb);
289 drm_gem_object_unreference_unlocked(gem);
293 static const struct drm_mode_config_funcs nouveau_mode_config_funcs = {
294 .fb_create = nouveau_user_framebuffer_create,
295 .output_poll_changed = nouveau_fbcon_output_poll_changed,
299 struct nouveau_drm_prop_enum_list {
305 static struct nouveau_drm_prop_enum_list underscan[] = {
306 { 6, UNDERSCAN_AUTO, "auto" },
307 { 6, UNDERSCAN_OFF, "off" },
308 { 6, UNDERSCAN_ON, "on" },
312 static struct nouveau_drm_prop_enum_list dither_mode[] = {
313 { 7, DITHERING_MODE_AUTO, "auto" },
314 { 7, DITHERING_MODE_OFF, "off" },
315 { 1, DITHERING_MODE_ON, "on" },
316 { 6, DITHERING_MODE_STATIC2X2, "static 2x2" },
317 { 6, DITHERING_MODE_DYNAMIC2X2, "dynamic 2x2" },
318 { 4, DITHERING_MODE_TEMPORAL, "temporal" },
322 static struct nouveau_drm_prop_enum_list dither_depth[] = {
323 { 6, DITHERING_DEPTH_AUTO, "auto" },
324 { 6, DITHERING_DEPTH_6BPC, "6 bpc" },
325 { 6, DITHERING_DEPTH_8BPC, "8 bpc" },
329 #define PROP_ENUM(p,gen,n,list) do { \
330 struct nouveau_drm_prop_enum_list *l = (list); \
332 while (l->gen_mask) { \
333 if (l->gen_mask & (1 << (gen))) \
338 p = drm_property_create(dev, DRM_MODE_PROP_ENUM, n, c); \
341 while (p && l->gen_mask) { \
342 if (l->gen_mask & (1 << (gen))) { \
343 drm_property_add_enum(p, c, l->type, l->name); \
352 nouveau_display_init(struct drm_device *dev)
354 struct nouveau_display *disp = nouveau_display(dev);
355 struct nouveau_drm *drm = nouveau_drm(dev);
356 struct drm_connector *connector;
359 ret = disp->init(dev);
363 /* enable polling for external displays */
364 drm_kms_helper_poll_enable(dev);
366 /* enable hotplug interrupts */
367 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
368 struct nouveau_connector *conn = nouveau_connector(connector);
369 nvif_notify_get(&conn->hpd);
372 /* enable flip completion events */
373 nvif_notify_get(&drm->flip);
378 nouveau_display_fini(struct drm_device *dev, bool suspend)
380 struct nouveau_display *disp = nouveau_display(dev);
381 struct nouveau_drm *drm = nouveau_drm(dev);
382 struct drm_connector *connector;
383 struct drm_crtc *crtc;
386 drm_crtc_force_disable_all(dev);
388 /* Make sure that drm and hw vblank irqs get properly disabled. */
389 drm_for_each_crtc(crtc, dev)
390 drm_crtc_vblank_off(crtc);
392 /* disable flip completion events */
393 nvif_notify_put(&drm->flip);
395 /* disable hotplug interrupts */
396 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
397 struct nouveau_connector *conn = nouveau_connector(connector);
398 nvif_notify_put(&conn->hpd);
401 drm_kms_helper_poll_disable(dev);
406 nouveau_display_create_properties(struct drm_device *dev)
408 struct nouveau_display *disp = nouveau_display(dev);
411 if (disp->disp.oclass < NV50_DISP)
414 if (disp->disp.oclass < GF110_DISP)
419 PROP_ENUM(disp->dithering_mode, gen, "dithering mode", dither_mode);
420 PROP_ENUM(disp->dithering_depth, gen, "dithering depth", dither_depth);
421 PROP_ENUM(disp->underscan_property, gen, "underscan", underscan);
423 disp->underscan_hborder_property =
424 drm_property_create_range(dev, 0, "underscan hborder", 0, 128);
426 disp->underscan_vborder_property =
427 drm_property_create_range(dev, 0, "underscan vborder", 0, 128);
433 disp->vibrant_hue_property =
434 drm_property_create_range(dev, 0, "vibrant hue", 0, 180);
437 disp->color_vibrance_property =
438 drm_property_create_range(dev, 0, "color vibrance", 0, 200);
442 nouveau_display_create(struct drm_device *dev)
444 struct nouveau_drm *drm = nouveau_drm(dev);
445 struct nvkm_device *device = nvxx_device(&drm->device);
446 struct nouveau_display *disp;
449 disp = drm->display = kzalloc(sizeof(*disp), GFP_KERNEL);
453 drm_mode_config_init(dev);
454 drm_mode_create_scaling_mode_property(dev);
455 drm_mode_create_dvi_i_properties(dev);
457 dev->mode_config.funcs = &nouveau_mode_config_funcs;
458 dev->mode_config.fb_base = device->func->resource_addr(device, 1);
460 dev->mode_config.min_width = 0;
461 dev->mode_config.min_height = 0;
462 if (drm->device.info.family < NV_DEVICE_INFO_V0_CELSIUS) {
463 dev->mode_config.max_width = 2048;
464 dev->mode_config.max_height = 2048;
466 if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
467 dev->mode_config.max_width = 4096;
468 dev->mode_config.max_height = 4096;
470 if (drm->device.info.family < NV_DEVICE_INFO_V0_FERMI) {
471 dev->mode_config.max_width = 8192;
472 dev->mode_config.max_height = 8192;
474 dev->mode_config.max_width = 16384;
475 dev->mode_config.max_height = 16384;
478 dev->mode_config.preferred_depth = 24;
479 dev->mode_config.prefer_shadow = 1;
481 if (drm->device.info.chipset < 0x11)
482 dev->mode_config.async_page_flip = false;
484 dev->mode_config.async_page_flip = true;
486 drm_kms_helper_poll_init(dev);
487 drm_kms_helper_poll_disable(dev);
489 if (nouveau_modeset != 2 && drm->vbios.dcb.entries) {
490 static const u16 oclass[] = {
507 for (i = 0, ret = -ENODEV; ret && i < ARRAY_SIZE(oclass); i++) {
508 ret = nvif_object_init(&drm->device.object, 0,
509 oclass[i], NULL, 0, &disp->disp);
513 nouveau_display_create_properties(dev);
514 if (disp->disp.oclass < NV50_DISP)
515 ret = nv04_display_create(dev);
517 ret = nv50_display_create(dev);
524 goto disp_create_err;
526 drm_mode_config_reset(dev);
528 if (dev->mode_config.num_crtc) {
529 ret = nouveau_display_vblank_init(dev);
534 nouveau_backlight_init(dev);
540 drm_kms_helper_poll_fini(dev);
541 drm_mode_config_cleanup(dev);
546 nouveau_display_destroy(struct drm_device *dev)
548 struct nouveau_display *disp = nouveau_display(dev);
550 nouveau_backlight_exit(dev);
551 nouveau_display_vblank_fini(dev);
553 drm_kms_helper_poll_fini(dev);
554 drm_mode_config_cleanup(dev);
559 nvif_object_fini(&disp->disp);
561 nouveau_drm(dev)->display = NULL;
566 nouveau_atomic_disable_connector(struct drm_atomic_state *state,
567 struct drm_connector *connector)
569 struct drm_connector_state *connector_state;
570 struct drm_crtc *crtc;
571 struct drm_crtc_state *crtc_state;
572 struct drm_plane_state *plane_state;
573 struct drm_plane *plane;
576 if (!(crtc = connector->state->crtc))
579 connector_state = drm_atomic_get_connector_state(state, connector);
580 if (IS_ERR(connector_state))
581 return PTR_ERR(connector_state);
583 ret = drm_atomic_set_crtc_for_connector(connector_state, NULL);
587 crtc_state = drm_atomic_get_crtc_state(state, crtc);
588 if (IS_ERR(crtc_state))
589 return PTR_ERR(crtc_state);
591 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
595 crtc_state->active = false;
597 drm_for_each_plane_mask(plane, connector->dev, crtc_state->plane_mask) {
598 plane_state = drm_atomic_get_plane_state(state, plane);
599 if (IS_ERR(plane_state))
600 return PTR_ERR(plane_state);
602 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
606 drm_atomic_set_fb_for_plane(plane_state, NULL);
613 nouveau_atomic_disable(struct drm_device *dev,
614 struct drm_modeset_acquire_ctx *ctx)
616 struct drm_atomic_state *state;
617 struct drm_connector *connector;
620 state = drm_atomic_state_alloc(dev);
624 state->acquire_ctx = ctx;
626 drm_for_each_connector(connector, dev) {
627 ret = nouveau_atomic_disable_connector(state, connector);
633 ret = drm_atomic_commit(state);
634 drm_atomic_state_put(state);
638 static struct drm_atomic_state *
639 nouveau_atomic_suspend(struct drm_device *dev)
641 struct drm_modeset_acquire_ctx ctx;
642 struct drm_atomic_state *state;
645 drm_modeset_acquire_init(&ctx, 0);
648 ret = drm_modeset_lock_all_ctx(dev, &ctx);
650 state = ERR_PTR(ret);
654 state = drm_atomic_helper_duplicate_state(dev, &ctx);
658 ret = nouveau_atomic_disable(dev, &ctx);
660 drm_atomic_state_put(state);
661 state = ERR_PTR(ret);
666 if (PTR_ERR(state) == -EDEADLK) {
667 drm_modeset_backoff(&ctx);
671 drm_modeset_drop_locks(&ctx);
672 drm_modeset_acquire_fini(&ctx);
677 nouveau_display_suspend(struct drm_device *dev, bool runtime)
679 struct nouveau_display *disp = nouveau_display(dev);
680 struct drm_crtc *crtc;
682 if (dev->mode_config.funcs->atomic_commit) {
684 disp->suspend = nouveau_atomic_suspend(dev);
685 if (IS_ERR(disp->suspend)) {
686 int ret = PTR_ERR(disp->suspend);
687 disp->suspend = NULL;
692 nouveau_display_fini(dev, true);
696 nouveau_display_fini(dev, true);
698 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
699 struct nouveau_framebuffer *nouveau_fb;
701 nouveau_fb = nouveau_framebuffer(crtc->primary->fb);
702 if (!nouveau_fb || !nouveau_fb->nvbo)
705 nouveau_bo_unpin(nouveau_fb->nvbo);
708 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
709 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
710 if (nv_crtc->cursor.nvbo) {
711 if (nv_crtc->cursor.set_offset)
712 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
713 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
721 nouveau_display_resume(struct drm_device *dev, bool runtime)
723 struct nouveau_display *disp = nouveau_display(dev);
724 struct nouveau_drm *drm = nouveau_drm(dev);
725 struct drm_crtc *crtc;
728 if (dev->mode_config.funcs->atomic_commit) {
729 nouveau_display_init(dev);
731 drm_atomic_helper_resume(dev, disp->suspend);
732 disp->suspend = NULL;
737 /* re-pin fb/cursors */
738 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
739 struct nouveau_framebuffer *nouveau_fb;
741 nouveau_fb = nouveau_framebuffer(crtc->primary->fb);
742 if (!nouveau_fb || !nouveau_fb->nvbo)
745 ret = nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM, true);
747 NV_ERROR(drm, "Could not pin framebuffer\n");
750 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
751 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
752 if (!nv_crtc->cursor.nvbo)
755 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM, true);
756 if (!ret && nv_crtc->cursor.set_offset)
757 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
759 NV_ERROR(drm, "Could not pin/map cursor.\n");
762 nouveau_display_init(dev);
764 /* Force CLUT to get re-loaded during modeset */
765 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
766 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
768 nv_crtc->lut.depth = 0;
771 /* This should ensure we don't hit a locking problem when someone
772 * wakes us up via a connector. We should never go into suspend
773 * while the display is on anyways.
778 drm_helper_resume_force_mode(dev);
780 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
781 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
783 if (!nv_crtc->cursor.nvbo)
786 if (nv_crtc->cursor.set_offset)
787 nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.offset);
788 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
789 nv_crtc->cursor_saved_y);
794 nouveau_page_flip_emit(struct nouveau_channel *chan,
795 struct nouveau_bo *old_bo,
796 struct nouveau_bo *new_bo,
797 struct nouveau_page_flip_state *s,
798 struct nouveau_fence **pfence)
800 struct nouveau_fence_chan *fctx = chan->fence;
801 struct nouveau_drm *drm = chan->drm;
802 struct drm_device *dev = drm->dev;
806 /* Queue it to the pending list */
807 spin_lock_irqsave(&dev->event_lock, flags);
808 list_add_tail(&s->head, &fctx->flip);
809 spin_unlock_irqrestore(&dev->event_lock, flags);
811 /* Synchronize with the old framebuffer */
812 ret = nouveau_fence_sync(old_bo, chan, false, false);
816 /* Emit the pageflip */
817 ret = RING_SPACE(chan, 2);
821 BEGIN_NV04(chan, NvSubSw, NV_SW_PAGE_FLIP, 1);
822 OUT_RING (chan, 0x00000000);
825 ret = nouveau_fence_new(chan, false, pfence);
831 spin_lock_irqsave(&dev->event_lock, flags);
833 spin_unlock_irqrestore(&dev->event_lock, flags);
838 nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
839 struct drm_pending_vblank_event *event, u32 flags)
841 const int swap_interval = (flags & DRM_MODE_PAGE_FLIP_ASYNC) ? 0 : 1;
842 struct drm_device *dev = crtc->dev;
843 struct nouveau_drm *drm = nouveau_drm(dev);
844 struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->primary->fb)->nvbo;
845 struct nouveau_bo *new_bo = nouveau_framebuffer(fb)->nvbo;
846 struct nouveau_page_flip_state *s;
847 struct nouveau_channel *chan;
848 struct nouveau_cli *cli;
849 struct nouveau_fence *fence;
850 struct nv04_display *dispnv04 = nv04_display(dev);
851 int head = nouveau_crtc(crtc)->index;
857 cli = (void *)chan->user.client;
859 s = kzalloc(sizeof(*s), GFP_KERNEL);
863 if (new_bo != old_bo) {
864 ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM, true);
869 mutex_lock(&cli->mutex);
870 ret = ttm_bo_reserve(&new_bo->bo, true, false, NULL);
874 /* synchronise rendering channel with the kernel's channel */
875 ret = nouveau_fence_sync(new_bo, chan, false, true);
877 ttm_bo_unreserve(&new_bo->bo);
881 if (new_bo != old_bo) {
882 ttm_bo_unreserve(&new_bo->bo);
884 ret = ttm_bo_reserve(&old_bo->bo, true, false, NULL);
889 /* Initialize a page flip struct */
890 *s = (struct nouveau_page_flip_state)
891 { { }, event, crtc, fb->bits_per_pixel, fb->pitches[0],
894 /* Keep vblanks on during flip, for the target crtc of this flip */
895 drm_crtc_vblank_get(crtc);
897 /* Emit a page flip */
899 ret = RING_SPACE(chan, 8);
903 BEGIN_NV04(chan, NvSubImageBlit, 0x012c, 1);
905 BEGIN_NV04(chan, NvSubImageBlit, 0x0134, 1);
906 OUT_RING (chan, head);
907 BEGIN_NV04(chan, NvSubImageBlit, 0x0100, 1);
909 BEGIN_NV04(chan, NvSubImageBlit, 0x0130, 1);
913 nouveau_bo_ref(new_bo, &dispnv04->image[head]);
915 ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence);
918 mutex_unlock(&cli->mutex);
920 /* Update the crtc struct and cleanup */
921 crtc->primary->fb = fb;
923 nouveau_bo_fence(old_bo, fence, false);
924 ttm_bo_unreserve(&old_bo->bo);
925 if (old_bo != new_bo)
926 nouveau_bo_unpin(old_bo);
927 nouveau_fence_unref(&fence);
931 drm_crtc_vblank_put(crtc);
932 ttm_bo_unreserve(&old_bo->bo);
934 mutex_unlock(&cli->mutex);
935 if (old_bo != new_bo)
936 nouveau_bo_unpin(new_bo);
943 nouveau_finish_page_flip(struct nouveau_channel *chan,
944 struct nouveau_page_flip_state *ps)
946 struct nouveau_fence_chan *fctx = chan->fence;
947 struct nouveau_drm *drm = chan->drm;
948 struct drm_device *dev = drm->dev;
949 struct nouveau_page_flip_state *s;
952 spin_lock_irqsave(&dev->event_lock, flags);
954 if (list_empty(&fctx->flip)) {
955 NV_ERROR(drm, "unexpected pageflip\n");
956 spin_unlock_irqrestore(&dev->event_lock, flags);
960 s = list_first_entry(&fctx->flip, struct nouveau_page_flip_state, head);
962 drm_crtc_arm_vblank_event(s->crtc, s->event);
964 /* Give up ownership of vblank for page-flipped crtc */
965 drm_crtc_vblank_put(s->crtc);
973 spin_unlock_irqrestore(&dev->event_lock, flags);
978 nouveau_flip_complete(struct nvif_notify *notify)
980 struct nouveau_drm *drm = container_of(notify, typeof(*drm), flip);
981 struct nouveau_channel *chan = drm->channel;
982 struct nouveau_page_flip_state state;
984 if (!nouveau_finish_page_flip(chan, &state)) {
985 nv_set_crtc_base(drm->dev, drm_crtc_index(state.crtc),
986 state.offset + state.crtc->y *
987 state.pitch + state.crtc->x *
991 return NVIF_NOTIFY_KEEP;
995 nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
996 struct drm_mode_create_dumb *args)
998 struct nouveau_bo *bo;
1002 args->pitch = roundup(args->width * (args->bpp / 8), 256);
1003 args->size = args->pitch * args->height;
1004 args->size = roundup(args->size, PAGE_SIZE);
1006 /* Use VRAM if there is any ; otherwise fallback to system memory */
1007 if (nouveau_drm(dev)->device.info.ram_size != 0)
1008 domain = NOUVEAU_GEM_DOMAIN_VRAM;
1010 domain = NOUVEAU_GEM_DOMAIN_GART;
1012 ret = nouveau_gem_new(dev, args->size, 0, domain, 0, 0, &bo);
1016 ret = drm_gem_handle_create(file_priv, &bo->gem, &args->handle);
1017 drm_gem_object_unreference_unlocked(&bo->gem);
1022 nouveau_display_dumb_map_offset(struct drm_file *file_priv,
1023 struct drm_device *dev,
1024 uint32_t handle, uint64_t *poffset)
1026 struct drm_gem_object *gem;
1028 gem = drm_gem_object_lookup(file_priv, handle);
1030 struct nouveau_bo *bo = nouveau_gem_object(gem);
1031 *poffset = drm_vma_node_offset_addr(&bo->bo.vma_node);
1032 drm_gem_object_unreference_unlocked(gem);