|
@@ -524,9 +524,12 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|
|
struct nouveau_page_flip_state *s;
|
|
|
struct nouveau_channel *chan = NULL;
|
|
|
struct nouveau_fence *fence;
|
|
|
- struct list_head res;
|
|
|
- struct ttm_validate_buffer res_val[2];
|
|
|
+ struct ttm_validate_buffer resv[2] = {
|
|
|
+ { .bo = &old_bo->bo },
|
|
|
+ { .bo = &new_bo->bo },
|
|
|
+ };
|
|
|
struct ww_acquire_ctx ticket;
|
|
|
+ LIST_HEAD(res);
|
|
|
int ret;
|
|
|
|
|
|
if (!drm->channel)
|
|
@@ -545,27 +548,19 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|
|
chan = drm->channel;
|
|
|
spin_unlock(&old_bo->bo.bdev->fence_lock);
|
|
|
|
|
|
- mutex_lock(&chan->cli->mutex);
|
|
|
-
|
|
|
if (new_bo != old_bo) {
|
|
|
ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM);
|
|
|
- if (likely(!ret)) {
|
|
|
- res_val[0].bo = &old_bo->bo;
|
|
|
- res_val[1].bo = &new_bo->bo;
|
|
|
- INIT_LIST_HEAD(&res);
|
|
|
- list_add_tail(&res_val[0].head, &res);
|
|
|
- list_add_tail(&res_val[1].head, &res);
|
|
|
- ret = ttm_eu_reserve_buffers(&ticket, &res);
|
|
|
- if (ret)
|
|
|
- nouveau_bo_unpin(new_bo);
|
|
|
- }
|
|
|
- } else
|
|
|
- ret = ttm_bo_reserve(&new_bo->bo, false, false, false, 0);
|
|
|
+ if (ret)
|
|
|
+ goto fail_free;
|
|
|
|
|
|
- if (ret) {
|
|
|
- mutex_unlock(&chan->cli->mutex);
|
|
|
- goto fail_free;
|
|
|
+ list_add(&resv[1].head, &res);
|
|
|
}
|
|
|
+ list_add(&resv[0].head, &res);
|
|
|
+
|
|
|
+ mutex_lock(&chan->cli->mutex);
|
|
|
+ ret = ttm_eu_reserve_buffers(&ticket, &res);
|
|
|
+ if (ret)
|
|
|
+ goto fail_unpin;
|
|
|
|
|
|
/* Initialize a page flip struct */
|
|
|
*s = (struct nouveau_page_flip_state)
|
|
@@ -576,10 +571,8 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|
|
/* Emit a page flip */
|
|
|
if (nv_device(drm->device)->card_type >= NV_50) {
|
|
|
ret = nv50_display_flip_next(crtc, fb, chan, 0);
|
|
|
- if (ret) {
|
|
|
- mutex_unlock(&chan->cli->mutex);
|
|
|
+ if (ret)
|
|
|
goto fail_unreserve;
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence);
|
|
@@ -590,22 +583,18 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|
|
/* Update the crtc struct and cleanup */
|
|
|
crtc->fb = fb;
|
|
|
|
|
|
- if (old_bo != new_bo) {
|
|
|
- ttm_eu_fence_buffer_objects(&ticket, &res, fence);
|
|
|
+ ttm_eu_fence_buffer_objects(&ticket, &res, fence);
|
|
|
+ if (old_bo != new_bo)
|
|
|
nouveau_bo_unpin(old_bo);
|
|
|
- } else {
|
|
|
- nouveau_bo_fence(new_bo, fence);
|
|
|
- ttm_bo_unreserve(&new_bo->bo);
|
|
|
- }
|
|
|
nouveau_fence_unref(&fence);
|
|
|
return 0;
|
|
|
|
|
|
fail_unreserve:
|
|
|
- if (old_bo != new_bo) {
|
|
|
- ttm_eu_backoff_reservation(&ticket, &res);
|
|
|
+ ttm_eu_backoff_reservation(&ticket, &res);
|
|
|
+fail_unpin:
|
|
|
+ mutex_unlock(&chan->cli->mutex);
|
|
|
+ if (old_bo != new_bo)
|
|
|
nouveau_bo_unpin(new_bo);
|
|
|
- } else
|
|
|
- ttm_bo_unreserve(&new_bo->bo);
|
|
|
fail_free:
|
|
|
kfree(s);
|
|
|
return ret;
|