Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2007-8 Advanced Micro Devices, Inc. |
| 3 | * Copyright 2008 Red Hat Inc. |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice shall be included in |
| 13 | * all copies or substantial portions of the Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 19 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 20 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 21 | * OTHER DEALINGS IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: Dave Airlie |
| 24 | * Alex Deucher |
| 25 | */ |
| 26 | #include <drm/drmP.h> |
| 27 | #include <drm/amdgpu_drm.h> |
| 28 | #include "amdgpu.h" |
| 29 | #include "amdgpu_i2c.h" |
| 30 | #include "atom.h" |
| 31 | #include "amdgpu_connectors.h" |
Christian König | 5d43be0 | 2017-10-26 18:06:23 +0200 | [diff] [blame] | 32 | #include "amdgpu_display.h" |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 33 | #include <asm/div64.h> |
| 34 | |
| 35 | #include <linux/pm_runtime.h> |
| 36 | #include <drm/drm_crtc_helper.h> |
| 37 | #include <drm/drm_edid.h> |
Noralf Trønnes | ab77e02 | 2017-12-05 19:24:55 +0100 | [diff] [blame] | 38 | #include <drm/drm_fb_helper.h> |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 39 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 40 | static void amdgpu_display_flip_callback(struct dma_fence *f, |
| 41 | struct dma_fence_cb *cb) |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 42 | { |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 43 | struct amdgpu_flip_work *work = |
| 44 | container_of(cb, struct amdgpu_flip_work, cb); |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 45 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 46 | dma_fence_put(f); |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 47 | schedule_work(&work->flip_work.work); |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 48 | } |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 49 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 50 | static bool amdgpu_display_flip_handle_fence(struct amdgpu_flip_work *work, |
| 51 | struct dma_fence **f) |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 52 | { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 53 | struct dma_fence *fence= *f; |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 54 | |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 55 | if (fence == NULL) |
| 56 | return false; |
| 57 | |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 58 | *f = NULL; |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 59 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 60 | if (!dma_fence_add_callback(fence, &work->cb, |
| 61 | amdgpu_display_flip_callback)) |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 62 | return true; |
| 63 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 64 | dma_fence_put(fence); |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 65 | return false; |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 66 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 67 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 68 | static void amdgpu_display_flip_work_func(struct work_struct *__work) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 69 | { |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 70 | struct delayed_work *delayed_work = |
| 71 | container_of(__work, struct delayed_work, work); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 72 | struct amdgpu_flip_work *work = |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 73 | container_of(delayed_work, struct amdgpu_flip_work, flip_work); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 74 | struct amdgpu_device *adev = work->adev; |
Alex Deucher | f93932b | 2016-10-21 16:36:12 -0400 | [diff] [blame] | 75 | struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[work->crtc_id]; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 76 | |
Alex Deucher | f93932b | 2016-10-21 16:36:12 -0400 | [diff] [blame] | 77 | struct drm_crtc *crtc = &amdgpu_crtc->base; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 78 | unsigned long flags; |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 79 | unsigned i; |
| 80 | int vpos, hpos; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 81 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 82 | if (amdgpu_display_flip_handle_fence(work, &work->excl)) |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 83 | return; |
| 84 | |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 85 | for (i = 0; i < work->shared_count; ++i) |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 86 | if (amdgpu_display_flip_handle_fence(work, &work->shared[i])) |
Christian König | c3874b7 | 2016-02-11 15:48:30 +0100 | [diff] [blame] | 87 | return; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 88 | |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 89 | /* Wait until we're out of the vertical blank period before the one |
| 90 | * targeted by the flip |
Alex Deucher | 8e36f9d | 2015-12-03 12:31:56 -0500 | [diff] [blame] | 91 | */ |
Alex Deucher | f93932b | 2016-10-21 16:36:12 -0400 | [diff] [blame] | 92 | if (amdgpu_crtc->enabled && |
Samuel Li | aa8e286 | 2018-01-19 15:53:16 -0500 | [diff] [blame] | 93 | (amdgpu_display_get_crtc_scanoutpos(adev->ddev, work->crtc_id, 0, |
| 94 | &vpos, &hpos, NULL, NULL, |
| 95 | &crtc->hwmode) |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 96 | & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) == |
| 97 | (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) && |
| 98 | (int)(work->target_vblank - |
Alex Deucher | f93932b | 2016-10-21 16:36:12 -0400 | [diff] [blame] | 99 | amdgpu_get_vblank_counter_kms(adev->ddev, amdgpu_crtc->crtc_id)) > 0) { |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 100 | schedule_delayed_work(&work->flip_work, usecs_to_jiffies(1000)); |
| 101 | return; |
Edward O'Callaghan | 9c3578a | 2016-07-12 10:17:51 +1000 | [diff] [blame] | 102 | } |
Alex Deucher | 8e36f9d | 2015-12-03 12:31:56 -0500 | [diff] [blame] | 103 | |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 104 | /* We borrow the event spin lock for protecting flip_status */ |
| 105 | spin_lock_irqsave(&crtc->dev->event_lock, flags); |
Mario Kleiner | e1d09dc | 2016-02-19 02:06:39 +0100 | [diff] [blame] | 106 | |
Andrey Grodzovsky | bd4c72d | 2016-03-30 17:34:27 -0400 | [diff] [blame] | 107 | /* Do the flip (mmio) */ |
Alex Deucher | cb9e59d | 2016-05-05 16:03:57 -0400 | [diff] [blame] | 108 | adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base, work->async); |
Andrey Grodzovsky | bd4c72d | 2016-03-30 17:34:27 -0400 | [diff] [blame] | 109 | |
| 110 | /* Set the flip status */ |
Alex Deucher | f93932b | 2016-10-21 16:36:12 -0400 | [diff] [blame] | 111 | amdgpu_crtc->pflip_status = AMDGPU_FLIP_SUBMITTED; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 112 | spin_unlock_irqrestore(&crtc->dev->event_lock, flags); |
Vitaly Prosyak | 6bd9e87 | 2015-10-20 15:02:03 -0400 | [diff] [blame] | 113 | |
Andrey Grodzovsky | bd4c72d | 2016-03-30 17:34:27 -0400 | [diff] [blame] | 114 | |
| 115 | DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_SUBMITTED, work: %p,\n", |
Alex Deucher | f93932b | 2016-10-21 16:36:12 -0400 | [diff] [blame] | 116 | amdgpu_crtc->crtc_id, amdgpu_crtc, work); |
Andrey Grodzovsky | bd4c72d | 2016-03-30 17:34:27 -0400 | [diff] [blame] | 117 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /* |
| 121 | * Handle unpin events outside the interrupt handler proper. |
| 122 | */ |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 123 | static void amdgpu_display_unpin_work_func(struct work_struct *__work) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 124 | { |
| 125 | struct amdgpu_flip_work *work = |
| 126 | container_of(__work, struct amdgpu_flip_work, unpin_work); |
| 127 | int r; |
| 128 | |
| 129 | /* unpin of the old buffer */ |
Michel Dänzer | c81a1a7 | 2017-04-28 17:28:14 +0900 | [diff] [blame] | 130 | r = amdgpu_bo_reserve(work->old_abo, true); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 131 | if (likely(r == 0)) { |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 132 | r = amdgpu_bo_unpin(work->old_abo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 133 | if (unlikely(r != 0)) { |
| 134 | DRM_ERROR("failed to unpin buffer after flip\n"); |
| 135 | } |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 136 | amdgpu_bo_unreserve(work->old_abo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 137 | } else |
| 138 | DRM_ERROR("failed to reserve buffer after flip\n"); |
| 139 | |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 140 | amdgpu_bo_unref(&work->old_abo); |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 141 | kfree(work->shared); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 142 | kfree(work); |
| 143 | } |
| 144 | |
Samuel Li | 0cd1193 | 2018-01-19 11:22:59 -0500 | [diff] [blame] | 145 | int amdgpu_display_crtc_page_flip_target(struct drm_crtc *crtc, |
| 146 | struct drm_framebuffer *fb, |
| 147 | struct drm_pending_vblank_event *event, |
| 148 | uint32_t page_flip_flags, uint32_t target, |
| 149 | struct drm_modeset_acquire_ctx *ctx) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 150 | { |
| 151 | struct drm_device *dev = crtc->dev; |
| 152 | struct amdgpu_device *adev = dev->dev_private; |
| 153 | struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc); |
| 154 | struct amdgpu_framebuffer *old_amdgpu_fb; |
| 155 | struct amdgpu_framebuffer *new_amdgpu_fb; |
| 156 | struct drm_gem_object *obj; |
| 157 | struct amdgpu_flip_work *work; |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 158 | struct amdgpu_bo *new_abo; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 159 | unsigned long flags; |
| 160 | u64 tiling_flags; |
| 161 | u64 base; |
Harry Wentland | 5f42aa3 | 2017-09-13 15:17:19 -0400 | [diff] [blame] | 162 | int i, r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 163 | |
| 164 | work = kzalloc(sizeof *work, GFP_KERNEL); |
| 165 | if (work == NULL) |
| 166 | return -ENOMEM; |
| 167 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 168 | INIT_DELAYED_WORK(&work->flip_work, amdgpu_display_flip_work_func); |
| 169 | INIT_WORK(&work->unpin_work, amdgpu_display_unpin_work_func); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 170 | |
| 171 | work->event = event; |
| 172 | work->adev = adev; |
| 173 | work->crtc_id = amdgpu_crtc->crtc_id; |
Alex Deucher | cb9e59d | 2016-05-05 16:03:57 -0400 | [diff] [blame] | 174 | work->async = (page_flip_flags & DRM_MODE_PAGE_FLIP_ASYNC) != 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 175 | |
| 176 | /* schedule unpin of the old buffer */ |
| 177 | old_amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb); |
| 178 | obj = old_amdgpu_fb->obj; |
| 179 | |
| 180 | /* take a reference to the old object */ |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 181 | work->old_abo = gem_to_amdgpu_bo(obj); |
| 182 | amdgpu_bo_ref(work->old_abo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 183 | |
| 184 | new_amdgpu_fb = to_amdgpu_framebuffer(fb); |
| 185 | obj = new_amdgpu_fb->obj; |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 186 | new_abo = gem_to_amdgpu_bo(obj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 187 | |
| 188 | /* pin the new buffer */ |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 189 | r = amdgpu_bo_reserve(new_abo, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 190 | if (unlikely(r != 0)) { |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 191 | DRM_ERROR("failed to reserve new abo buffer before flip\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 192 | goto cleanup; |
| 193 | } |
| 194 | |
Christian König | 5d43be0 | 2017-10-26 18:06:23 +0200 | [diff] [blame] | 195 | r = amdgpu_bo_pin(new_abo, amdgpu_display_framebuffer_domains(adev), &base); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 196 | if (unlikely(r != 0)) { |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 197 | DRM_ERROR("failed to pin new abo buffer before flip\n"); |
Michel Dänzer | ee7fd95 | 2016-06-24 17:30:08 +0900 | [diff] [blame] | 198 | goto unreserve; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 199 | } |
| 200 | |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 201 | r = reservation_object_get_fences_rcu(new_abo->tbo.resv, &work->excl, |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 202 | &work->shared_count, |
| 203 | &work->shared); |
| 204 | if (unlikely(r != 0)) { |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 205 | DRM_ERROR("failed to get fences for buffer\n"); |
Michel Dänzer | ee7fd95 | 2016-06-24 17:30:08 +0900 | [diff] [blame] | 206 | goto unpin; |
Christian König | 1ffd265 | 2015-08-11 17:29:52 +0200 | [diff] [blame] | 207 | } |
| 208 | |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 209 | amdgpu_bo_get_tiling_flags(new_abo, &tiling_flags); |
| 210 | amdgpu_bo_unreserve(new_abo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 211 | |
| 212 | work->base = base; |
Dhinakaran Pandiyan | 23effc1 | 2018-02-02 21:12:56 -0800 | [diff] [blame] | 213 | work->target_vblank = target - (uint32_t)drm_crtc_vblank_count(crtc) + |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 214 | amdgpu_get_vblank_counter_kms(dev, work->crtc_id); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 215 | |
| 216 | /* we borrow the event spin lock for protecting flip_wrok */ |
| 217 | spin_lock_irqsave(&crtc->dev->event_lock, flags); |
| 218 | if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_NONE) { |
| 219 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); |
| 220 | spin_unlock_irqrestore(&crtc->dev->event_lock, flags); |
| 221 | r = -EBUSY; |
Michel Dänzer | 325cbba | 2016-08-04 12:39:37 +0900 | [diff] [blame] | 222 | goto pflip_cleanup; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 223 | } |
Harry Wentland | 9c5b2b0 | 2017-09-13 10:03:31 -0400 | [diff] [blame] | 224 | |
Harry Wentland | 9c5b2b0 | 2017-09-13 10:03:31 -0400 | [diff] [blame] | 225 | amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING; |
| 226 | amdgpu_crtc->pflip_works = work; |
| 227 | |
Harry Wentland | 5f42aa3 | 2017-09-13 15:17:19 -0400 | [diff] [blame] | 228 | |
| 229 | DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_PENDING, work: %p,\n", |
| 230 | amdgpu_crtc->crtc_id, amdgpu_crtc, work); |
Harry Wentland | 9c5b2b0 | 2017-09-13 10:03:31 -0400 | [diff] [blame] | 231 | /* update crtc fb */ |
| 232 | crtc->primary->fb = fb; |
| 233 | spin_unlock_irqrestore(&crtc->dev->event_lock, flags); |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 234 | amdgpu_display_flip_work_func(&work->flip_work.work); |
Harry Wentland | 9c5b2b0 | 2017-09-13 10:03:31 -0400 | [diff] [blame] | 235 | return 0; |
Harry Wentland | 5f42aa3 | 2017-09-13 15:17:19 -0400 | [diff] [blame] | 236 | |
| 237 | pflip_cleanup: |
| 238 | if (unlikely(amdgpu_bo_reserve(new_abo, false) != 0)) { |
| 239 | DRM_ERROR("failed to reserve new abo in error path\n"); |
| 240 | goto cleanup; |
| 241 | } |
| 242 | unpin: |
| 243 | if (unlikely(amdgpu_bo_unpin(new_abo) != 0)) { |
| 244 | DRM_ERROR("failed to unpin new abo in error path\n"); |
| 245 | } |
| 246 | unreserve: |
| 247 | amdgpu_bo_unreserve(new_abo); |
| 248 | |
| 249 | cleanup: |
| 250 | amdgpu_bo_unref(&work->old_abo); |
| 251 | dma_fence_put(work->excl); |
| 252 | for (i = 0; i < work->shared_count; ++i) |
| 253 | dma_fence_put(work->shared[i]); |
| 254 | kfree(work->shared); |
| 255 | kfree(work); |
| 256 | |
| 257 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 258 | } |
| 259 | |
Samuel Li | 775a836 | 2018-01-19 11:53:31 -0500 | [diff] [blame] | 260 | int amdgpu_display_crtc_set_config(struct drm_mode_set *set, |
| 261 | struct drm_modeset_acquire_ctx *ctx) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 262 | { |
| 263 | struct drm_device *dev; |
| 264 | struct amdgpu_device *adev; |
| 265 | struct drm_crtc *crtc; |
| 266 | bool active = false; |
| 267 | int ret; |
| 268 | |
| 269 | if (!set || !set->crtc) |
| 270 | return -EINVAL; |
| 271 | |
| 272 | dev = set->crtc->dev; |
| 273 | |
| 274 | ret = pm_runtime_get_sync(dev->dev); |
| 275 | if (ret < 0) |
| 276 | return ret; |
| 277 | |
Daniel Vetter | a4eff9a | 2017-03-22 22:50:57 +0100 | [diff] [blame] | 278 | ret = drm_crtc_helper_set_config(set, ctx); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 279 | |
| 280 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) |
| 281 | if (crtc->enabled) |
| 282 | active = true; |
| 283 | |
| 284 | pm_runtime_mark_last_busy(dev->dev); |
| 285 | |
| 286 | adev = dev->dev_private; |
| 287 | /* if we have active crtcs and we don't have a power ref, |
| 288 | take the current one */ |
| 289 | if (active && !adev->have_disp_power_ref) { |
| 290 | adev->have_disp_power_ref = true; |
| 291 | return ret; |
| 292 | } |
| 293 | /* if we have no active crtcs, then drop the power ref |
| 294 | we got before */ |
| 295 | if (!active && adev->have_disp_power_ref) { |
| 296 | pm_runtime_put_autosuspend(dev->dev); |
| 297 | adev->have_disp_power_ref = false; |
| 298 | } |
| 299 | |
| 300 | /* drop the power reference we got coming in here */ |
| 301 | pm_runtime_put_autosuspend(dev->dev); |
| 302 | return ret; |
| 303 | } |
| 304 | |
Emily Deng | c6e14f4 | 2016-08-08 11:30:50 +0800 | [diff] [blame] | 305 | static const char *encoder_names[41] = { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 306 | "NONE", |
| 307 | "INTERNAL_LVDS", |
| 308 | "INTERNAL_TMDS1", |
| 309 | "INTERNAL_TMDS2", |
| 310 | "INTERNAL_DAC1", |
| 311 | "INTERNAL_DAC2", |
| 312 | "INTERNAL_SDVOA", |
| 313 | "INTERNAL_SDVOB", |
| 314 | "SI170B", |
| 315 | "CH7303", |
| 316 | "CH7301", |
| 317 | "INTERNAL_DVO1", |
| 318 | "EXTERNAL_SDVOA", |
| 319 | "EXTERNAL_SDVOB", |
| 320 | "TITFP513", |
| 321 | "INTERNAL_LVTM1", |
| 322 | "VT1623", |
| 323 | "HDMI_SI1930", |
| 324 | "HDMI_INTERNAL", |
| 325 | "INTERNAL_KLDSCP_TMDS1", |
| 326 | "INTERNAL_KLDSCP_DVO1", |
| 327 | "INTERNAL_KLDSCP_DAC1", |
| 328 | "INTERNAL_KLDSCP_DAC2", |
| 329 | "SI178", |
| 330 | "MVPU_FPGA", |
| 331 | "INTERNAL_DDI", |
| 332 | "VT1625", |
| 333 | "HDMI_SI1932", |
| 334 | "DP_AN9801", |
| 335 | "DP_DP501", |
| 336 | "INTERNAL_UNIPHY", |
| 337 | "INTERNAL_KLDSCP_LVTMA", |
| 338 | "INTERNAL_UNIPHY1", |
| 339 | "INTERNAL_UNIPHY2", |
| 340 | "NUTMEG", |
| 341 | "TRAVIS", |
| 342 | "INTERNAL_VCE", |
| 343 | "INTERNAL_UNIPHY3", |
Emily Deng | c6e14f4 | 2016-08-08 11:30:50 +0800 | [diff] [blame] | 344 | "HDMI_ANX9805", |
| 345 | "INTERNAL_AMCLK", |
| 346 | "VIRTUAL", |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 347 | }; |
| 348 | |
| 349 | static const char *hpd_names[6] = { |
| 350 | "HPD1", |
| 351 | "HPD2", |
| 352 | "HPD3", |
| 353 | "HPD4", |
| 354 | "HPD5", |
| 355 | "HPD6", |
| 356 | }; |
| 357 | |
Samuel Li | 50af919 | 2018-01-19 12:02:45 -0500 | [diff] [blame] | 358 | void amdgpu_display_print_display_setup(struct drm_device *dev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 359 | { |
| 360 | struct drm_connector *connector; |
| 361 | struct amdgpu_connector *amdgpu_connector; |
| 362 | struct drm_encoder *encoder; |
| 363 | struct amdgpu_encoder *amdgpu_encoder; |
| 364 | uint32_t devices; |
| 365 | int i = 0; |
| 366 | |
| 367 | DRM_INFO("AMDGPU Display Connectors\n"); |
| 368 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 369 | amdgpu_connector = to_amdgpu_connector(connector); |
| 370 | DRM_INFO("Connector %d:\n", i); |
| 371 | DRM_INFO(" %s\n", connector->name); |
| 372 | if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE) |
| 373 | DRM_INFO(" %s\n", hpd_names[amdgpu_connector->hpd.hpd]); |
| 374 | if (amdgpu_connector->ddc_bus) { |
| 375 | DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n", |
| 376 | amdgpu_connector->ddc_bus->rec.mask_clk_reg, |
| 377 | amdgpu_connector->ddc_bus->rec.mask_data_reg, |
| 378 | amdgpu_connector->ddc_bus->rec.a_clk_reg, |
| 379 | amdgpu_connector->ddc_bus->rec.a_data_reg, |
| 380 | amdgpu_connector->ddc_bus->rec.en_clk_reg, |
| 381 | amdgpu_connector->ddc_bus->rec.en_data_reg, |
| 382 | amdgpu_connector->ddc_bus->rec.y_clk_reg, |
| 383 | amdgpu_connector->ddc_bus->rec.y_data_reg); |
| 384 | if (amdgpu_connector->router.ddc_valid) |
| 385 | DRM_INFO(" DDC Router 0x%x/0x%x\n", |
| 386 | amdgpu_connector->router.ddc_mux_control_pin, |
| 387 | amdgpu_connector->router.ddc_mux_state); |
| 388 | if (amdgpu_connector->router.cd_valid) |
| 389 | DRM_INFO(" Clock/Data Router 0x%x/0x%x\n", |
| 390 | amdgpu_connector->router.cd_mux_control_pin, |
| 391 | amdgpu_connector->router.cd_mux_state); |
| 392 | } else { |
| 393 | if (connector->connector_type == DRM_MODE_CONNECTOR_VGA || |
| 394 | connector->connector_type == DRM_MODE_CONNECTOR_DVII || |
| 395 | connector->connector_type == DRM_MODE_CONNECTOR_DVID || |
| 396 | connector->connector_type == DRM_MODE_CONNECTOR_DVIA || |
| 397 | connector->connector_type == DRM_MODE_CONNECTOR_HDMIA || |
| 398 | connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) |
| 399 | DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n"); |
| 400 | } |
| 401 | DRM_INFO(" Encoders:\n"); |
| 402 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 403 | amdgpu_encoder = to_amdgpu_encoder(encoder); |
| 404 | devices = amdgpu_encoder->devices & amdgpu_connector->devices; |
| 405 | if (devices) { |
| 406 | if (devices & ATOM_DEVICE_CRT1_SUPPORT) |
| 407 | DRM_INFO(" CRT1: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 408 | if (devices & ATOM_DEVICE_CRT2_SUPPORT) |
| 409 | DRM_INFO(" CRT2: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 410 | if (devices & ATOM_DEVICE_LCD1_SUPPORT) |
| 411 | DRM_INFO(" LCD1: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 412 | if (devices & ATOM_DEVICE_DFP1_SUPPORT) |
| 413 | DRM_INFO(" DFP1: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 414 | if (devices & ATOM_DEVICE_DFP2_SUPPORT) |
| 415 | DRM_INFO(" DFP2: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 416 | if (devices & ATOM_DEVICE_DFP3_SUPPORT) |
| 417 | DRM_INFO(" DFP3: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 418 | if (devices & ATOM_DEVICE_DFP4_SUPPORT) |
| 419 | DRM_INFO(" DFP4: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 420 | if (devices & ATOM_DEVICE_DFP5_SUPPORT) |
| 421 | DRM_INFO(" DFP5: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 422 | if (devices & ATOM_DEVICE_DFP6_SUPPORT) |
| 423 | DRM_INFO(" DFP6: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 424 | if (devices & ATOM_DEVICE_TV1_SUPPORT) |
| 425 | DRM_INFO(" TV1: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 426 | if (devices & ATOM_DEVICE_CV_SUPPORT) |
| 427 | DRM_INFO(" CV: %s\n", encoder_names[amdgpu_encoder->encoder_id]); |
| 428 | } |
| 429 | } |
| 430 | i++; |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | /** |
Samuel Li | e0b5b5e | 2018-01-19 12:10:52 -0500 | [diff] [blame] | 435 | * amdgpu_display_ddc_probe |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 436 | * |
| 437 | */ |
Samuel Li | e0b5b5e | 2018-01-19 12:10:52 -0500 | [diff] [blame] | 438 | bool amdgpu_display_ddc_probe(struct amdgpu_connector *amdgpu_connector, |
| 439 | bool use_aux) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 440 | { |
| 441 | u8 out = 0x0; |
| 442 | u8 buf[8]; |
| 443 | int ret; |
| 444 | struct i2c_msg msgs[] = { |
| 445 | { |
| 446 | .addr = DDC_ADDR, |
| 447 | .flags = 0, |
| 448 | .len = 1, |
| 449 | .buf = &out, |
| 450 | }, |
| 451 | { |
| 452 | .addr = DDC_ADDR, |
| 453 | .flags = I2C_M_RD, |
| 454 | .len = 8, |
| 455 | .buf = buf, |
| 456 | } |
| 457 | }; |
| 458 | |
| 459 | /* on hw with routers, select right port */ |
| 460 | if (amdgpu_connector->router.ddc_valid) |
| 461 | amdgpu_i2c_router_select_ddc_port(amdgpu_connector); |
| 462 | |
| 463 | if (use_aux) { |
| 464 | ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2); |
| 465 | } else { |
| 466 | ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2); |
| 467 | } |
| 468 | |
| 469 | if (ret != 2) |
| 470 | /* Couldn't find an accessible DDC on this connector */ |
| 471 | return false; |
| 472 | /* Probe also for valid EDID header |
| 473 | * EDID header starts with: |
| 474 | * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00. |
| 475 | * Only the first 6 bytes must be valid as |
| 476 | * drm_edid_block_valid() can fix the last 2 bytes */ |
| 477 | if (drm_edid_header_is_valid(buf) < 6) { |
| 478 | /* Couldn't find an accessible EDID on this |
| 479 | * connector */ |
| 480 | return false; |
| 481 | } |
| 482 | return true; |
| 483 | } |
| 484 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 485 | static void amdgpu_display_user_framebuffer_destroy(struct drm_framebuffer *fb) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 486 | { |
| 487 | struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb); |
| 488 | |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 489 | drm_gem_object_put_unlocked(amdgpu_fb->obj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 490 | drm_framebuffer_cleanup(fb); |
| 491 | kfree(amdgpu_fb); |
| 492 | } |
| 493 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 494 | static int amdgpu_display_user_framebuffer_create_handle( |
| 495 | struct drm_framebuffer *fb, |
| 496 | struct drm_file *file_priv, |
| 497 | unsigned int *handle) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 498 | { |
| 499 | struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb); |
| 500 | |
| 501 | return drm_gem_handle_create(file_priv, amdgpu_fb->obj, handle); |
| 502 | } |
| 503 | |
| 504 | static const struct drm_framebuffer_funcs amdgpu_fb_funcs = { |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 505 | .destroy = amdgpu_display_user_framebuffer_destroy, |
| 506 | .create_handle = amdgpu_display_user_framebuffer_create_handle, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 507 | }; |
| 508 | |
Christian König | 5d43be0 | 2017-10-26 18:06:23 +0200 | [diff] [blame] | 509 | uint32_t amdgpu_display_framebuffer_domains(struct amdgpu_device *adev) |
| 510 | { |
| 511 | uint32_t domain = AMDGPU_GEM_DOMAIN_VRAM; |
| 512 | |
Alex Deucher | 2c9c178 | 2018-01-12 14:56:49 -0500 | [diff] [blame] | 513 | #if defined(CONFIG_DRM_AMD_DC) |
Christian König | 5d43be0 | 2017-10-26 18:06:23 +0200 | [diff] [blame] | 514 | if (adev->asic_type >= CHIP_CARRIZO && adev->asic_type < CHIP_RAVEN && |
Alex Deucher | 2c9c178 | 2018-01-12 14:56:49 -0500 | [diff] [blame] | 515 | adev->flags & AMD_IS_APU && |
| 516 | amdgpu_device_asic_has_dc_support(adev->asic_type)) |
Christian König | 5d43be0 | 2017-10-26 18:06:23 +0200 | [diff] [blame] | 517 | domain |= AMDGPU_GEM_DOMAIN_GTT; |
Alex Deucher | 2c9c178 | 2018-01-12 14:56:49 -0500 | [diff] [blame] | 518 | #endif |
Christian König | 5d43be0 | 2017-10-26 18:06:23 +0200 | [diff] [blame] | 519 | |
| 520 | return domain; |
| 521 | } |
| 522 | |
Samuel Li | 9da3f2d | 2018-01-19 12:17:42 -0500 | [diff] [blame] | 523 | int amdgpu_display_framebuffer_init(struct drm_device *dev, |
| 524 | struct amdgpu_framebuffer *rfb, |
| 525 | const struct drm_mode_fb_cmd2 *mode_cmd, |
| 526 | struct drm_gem_object *obj) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 527 | { |
| 528 | int ret; |
| 529 | rfb->obj = obj; |
Ville Syrjälä | a3f913c | 2016-12-14 22:48:59 +0200 | [diff] [blame] | 530 | drm_helper_mode_fill_fb_struct(dev, &rfb->base, mode_cmd); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 531 | ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs); |
| 532 | if (ret) { |
| 533 | rfb->obj = NULL; |
| 534 | return ret; |
| 535 | } |
| 536 | return 0; |
| 537 | } |
| 538 | |
Harry Wentland | b0fb632 | 2017-01-12 09:07:38 -0500 | [diff] [blame] | 539 | struct drm_framebuffer * |
Samuel Li | 4d4772f | 2018-01-19 12:24:39 -0500 | [diff] [blame] | 540 | amdgpu_display_user_framebuffer_create(struct drm_device *dev, |
| 541 | struct drm_file *file_priv, |
| 542 | const struct drm_mode_fb_cmd2 *mode_cmd) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 543 | { |
| 544 | struct drm_gem_object *obj; |
| 545 | struct amdgpu_framebuffer *amdgpu_fb; |
| 546 | int ret; |
| 547 | |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 548 | obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 549 | if (obj == NULL) { |
| 550 | dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, " |
| 551 | "can't create framebuffer\n", mode_cmd->handles[0]); |
| 552 | return ERR_PTR(-ENOENT); |
| 553 | } |
| 554 | |
Christopher James Halse Rogers | 1769152 | 2017-03-29 15:02:11 +1100 | [diff] [blame] | 555 | /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */ |
| 556 | if (obj->import_attach) { |
| 557 | DRM_DEBUG_KMS("Cannot create framebuffer from imported dma_buf\n"); |
| 558 | return ERR_PTR(-EINVAL); |
| 559 | } |
| 560 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 561 | amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL); |
| 562 | if (amdgpu_fb == NULL) { |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 563 | drm_gem_object_put_unlocked(obj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 564 | return ERR_PTR(-ENOMEM); |
| 565 | } |
| 566 | |
Samuel Li | 9da3f2d | 2018-01-19 12:17:42 -0500 | [diff] [blame] | 567 | ret = amdgpu_display_framebuffer_init(dev, amdgpu_fb, mode_cmd, obj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 568 | if (ret) { |
| 569 | kfree(amdgpu_fb); |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 570 | drm_gem_object_put_unlocked(obj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 571 | return ERR_PTR(ret); |
| 572 | } |
| 573 | |
| 574 | return &amdgpu_fb->base; |
| 575 | } |
| 576 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 577 | const struct drm_mode_config_funcs amdgpu_mode_funcs = { |
Samuel Li | 4d4772f | 2018-01-19 12:24:39 -0500 | [diff] [blame] | 578 | .fb_create = amdgpu_display_user_framebuffer_create, |
Noralf Trønnes | ab77e02 | 2017-12-05 19:24:55 +0100 | [diff] [blame] | 579 | .output_poll_changed = drm_fb_helper_output_poll_changed, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 580 | }; |
| 581 | |
Nils Wallménius | f498d9e | 2016-04-10 16:29:59 +0200 | [diff] [blame] | 582 | static const struct drm_prop_enum_list amdgpu_underscan_enum_list[] = |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 583 | { { UNDERSCAN_OFF, "off" }, |
| 584 | { UNDERSCAN_ON, "on" }, |
| 585 | { UNDERSCAN_AUTO, "auto" }, |
| 586 | }; |
| 587 | |
Nils Wallménius | f498d9e | 2016-04-10 16:29:59 +0200 | [diff] [blame] | 588 | static const struct drm_prop_enum_list amdgpu_audio_enum_list[] = |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 589 | { { AMDGPU_AUDIO_DISABLE, "off" }, |
| 590 | { AMDGPU_AUDIO_ENABLE, "on" }, |
| 591 | { AMDGPU_AUDIO_AUTO, "auto" }, |
| 592 | }; |
| 593 | |
| 594 | /* XXX support different dither options? spatial, temporal, both, etc. */ |
Nils Wallménius | f498d9e | 2016-04-10 16:29:59 +0200 | [diff] [blame] | 595 | static const struct drm_prop_enum_list amdgpu_dither_enum_list[] = |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 596 | { { AMDGPU_FMT_DITHER_DISABLE, "off" }, |
| 597 | { AMDGPU_FMT_DITHER_ENABLE, "on" }, |
| 598 | }; |
| 599 | |
Samuel Li | 3dc9b1c | 2018-01-19 12:47:40 -0500 | [diff] [blame] | 600 | int amdgpu_display_modeset_create_props(struct amdgpu_device *adev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 601 | { |
| 602 | int sz; |
| 603 | |
Nils Wallménius | f7e9e9f | 2016-12-14 21:52:45 +0100 | [diff] [blame] | 604 | adev->mode_info.coherent_mode_property = |
| 605 | drm_property_create_range(adev->ddev, 0 , "coherent", 0, 1); |
| 606 | if (!adev->mode_info.coherent_mode_property) |
| 607 | return -ENOMEM; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 608 | |
| 609 | adev->mode_info.load_detect_property = |
| 610 | drm_property_create_range(adev->ddev, 0, "load detection", 0, 1); |
| 611 | if (!adev->mode_info.load_detect_property) |
| 612 | return -ENOMEM; |
| 613 | |
| 614 | drm_mode_create_scaling_mode_property(adev->ddev); |
| 615 | |
| 616 | sz = ARRAY_SIZE(amdgpu_underscan_enum_list); |
| 617 | adev->mode_info.underscan_property = |
| 618 | drm_property_create_enum(adev->ddev, 0, |
| 619 | "underscan", |
| 620 | amdgpu_underscan_enum_list, sz); |
| 621 | |
| 622 | adev->mode_info.underscan_hborder_property = |
| 623 | drm_property_create_range(adev->ddev, 0, |
| 624 | "underscan hborder", 0, 128); |
| 625 | if (!adev->mode_info.underscan_hborder_property) |
| 626 | return -ENOMEM; |
| 627 | |
| 628 | adev->mode_info.underscan_vborder_property = |
| 629 | drm_property_create_range(adev->ddev, 0, |
| 630 | "underscan vborder", 0, 128); |
| 631 | if (!adev->mode_info.underscan_vborder_property) |
| 632 | return -ENOMEM; |
| 633 | |
| 634 | sz = ARRAY_SIZE(amdgpu_audio_enum_list); |
| 635 | adev->mode_info.audio_property = |
| 636 | drm_property_create_enum(adev->ddev, 0, |
| 637 | "audio", |
| 638 | amdgpu_audio_enum_list, sz); |
| 639 | |
| 640 | sz = ARRAY_SIZE(amdgpu_dither_enum_list); |
| 641 | adev->mode_info.dither_property = |
| 642 | drm_property_create_enum(adev->ddev, 0, |
| 643 | "dither", |
| 644 | amdgpu_dither_enum_list, sz); |
| 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
Samuel Li | 166140f | 2018-01-19 15:28:27 -0500 | [diff] [blame] | 649 | void amdgpu_display_update_priority(struct amdgpu_device *adev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 650 | { |
| 651 | /* adjustment options for the display watermarks */ |
| 652 | if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2)) |
| 653 | adev->mode_info.disp_priority = 0; |
| 654 | else |
| 655 | adev->mode_info.disp_priority = amdgpu_disp_priority; |
| 656 | |
| 657 | } |
| 658 | |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 659 | static bool amdgpu_display_is_hdtv_mode(const struct drm_display_mode *mode) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 660 | { |
| 661 | /* try and guess if this is a tv or a monitor */ |
| 662 | if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */ |
| 663 | (mode->vdisplay == 576) || /* 576p */ |
| 664 | (mode->vdisplay == 720) || /* 720p */ |
| 665 | (mode->vdisplay == 1080)) /* 1080p */ |
| 666 | return true; |
| 667 | else |
| 668 | return false; |
| 669 | } |
| 670 | |
Samuel Li | 0c16443 | 2018-01-19 15:36:43 -0500 | [diff] [blame] | 671 | bool amdgpu_display_crtc_scaling_mode_fixup(struct drm_crtc *crtc, |
| 672 | const struct drm_display_mode *mode, |
| 673 | struct drm_display_mode *adjusted_mode) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 674 | { |
| 675 | struct drm_device *dev = crtc->dev; |
| 676 | struct drm_encoder *encoder; |
| 677 | struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc); |
| 678 | struct amdgpu_encoder *amdgpu_encoder; |
| 679 | struct drm_connector *connector; |
| 680 | struct amdgpu_connector *amdgpu_connector; |
| 681 | u32 src_v = 1, dst_v = 1; |
| 682 | u32 src_h = 1, dst_h = 1; |
| 683 | |
| 684 | amdgpu_crtc->h_border = 0; |
| 685 | amdgpu_crtc->v_border = 0; |
| 686 | |
| 687 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 688 | if (encoder->crtc != crtc) |
| 689 | continue; |
| 690 | amdgpu_encoder = to_amdgpu_encoder(encoder); |
| 691 | connector = amdgpu_get_connector_for_encoder(encoder); |
| 692 | amdgpu_connector = to_amdgpu_connector(connector); |
| 693 | |
| 694 | /* set scaling */ |
| 695 | if (amdgpu_encoder->rmx_type == RMX_OFF) |
| 696 | amdgpu_crtc->rmx_type = RMX_OFF; |
| 697 | else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay || |
| 698 | mode->vdisplay < amdgpu_encoder->native_mode.vdisplay) |
| 699 | amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type; |
| 700 | else |
| 701 | amdgpu_crtc->rmx_type = RMX_OFF; |
| 702 | /* copy native mode */ |
| 703 | memcpy(&amdgpu_crtc->native_mode, |
| 704 | &amdgpu_encoder->native_mode, |
| 705 | sizeof(struct drm_display_mode)); |
| 706 | src_v = crtc->mode.vdisplay; |
| 707 | dst_v = amdgpu_crtc->native_mode.vdisplay; |
| 708 | src_h = crtc->mode.hdisplay; |
| 709 | dst_h = amdgpu_crtc->native_mode.hdisplay; |
| 710 | |
| 711 | /* fix up for overscan on hdmi */ |
| 712 | if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) && |
| 713 | ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) || |
| 714 | ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) && |
| 715 | drm_detect_hdmi_monitor(amdgpu_connector_edid(connector)) && |
Samuel Li | 3a05dc0 | 2018-01-18 17:47:29 -0500 | [diff] [blame] | 716 | amdgpu_display_is_hdtv_mode(mode)))) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 717 | if (amdgpu_encoder->underscan_hborder != 0) |
| 718 | amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder; |
| 719 | else |
| 720 | amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16; |
| 721 | if (amdgpu_encoder->underscan_vborder != 0) |
| 722 | amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder; |
| 723 | else |
| 724 | amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16; |
| 725 | amdgpu_crtc->rmx_type = RMX_FULL; |
| 726 | src_v = crtc->mode.vdisplay; |
| 727 | dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2); |
| 728 | src_h = crtc->mode.hdisplay; |
| 729 | dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2); |
| 730 | } |
| 731 | } |
| 732 | if (amdgpu_crtc->rmx_type != RMX_OFF) { |
| 733 | fixed20_12 a, b; |
| 734 | a.full = dfixed_const(src_v); |
| 735 | b.full = dfixed_const(dst_v); |
| 736 | amdgpu_crtc->vsc.full = dfixed_div(a, b); |
| 737 | a.full = dfixed_const(src_h); |
| 738 | b.full = dfixed_const(dst_h); |
| 739 | amdgpu_crtc->hsc.full = dfixed_div(a, b); |
| 740 | } else { |
| 741 | amdgpu_crtc->vsc.full = dfixed_const(1); |
| 742 | amdgpu_crtc->hsc.full = dfixed_const(1); |
| 743 | } |
| 744 | return true; |
| 745 | } |
| 746 | |
| 747 | /* |
| 748 | * Retrieve current video scanout position of crtc on a given gpu, and |
| 749 | * an optional accurate timestamp of when query happened. |
| 750 | * |
| 751 | * \param dev Device to query. |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 752 | * \param pipe Crtc to query. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 753 | * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0). |
Alex Deucher | 8e36f9d | 2015-12-03 12:31:56 -0500 | [diff] [blame] | 754 | * For driver internal use only also supports these flags: |
| 755 | * |
| 756 | * USE_REAL_VBLANKSTART to use the real start of vblank instead |
| 757 | * of a fudged earlier start of vblank. |
| 758 | * |
| 759 | * GET_DISTANCE_TO_VBLANKSTART to return distance to the |
| 760 | * fudged earlier start of vblank in *vpos and the distance |
| 761 | * to true start of vblank in *hpos. |
| 762 | * |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 763 | * \param *vpos Location where vertical scanout position should be stored. |
| 764 | * \param *hpos Location where horizontal scanout position should go. |
| 765 | * \param *stime Target location for timestamp taken immediately before |
| 766 | * scanout position query. Can be NULL to skip timestamp. |
| 767 | * \param *etime Target location for timestamp taken immediately after |
| 768 | * scanout position query. Can be NULL to skip timestamp. |
| 769 | * |
| 770 | * Returns vpos as a positive number while in active scanout area. |
| 771 | * Returns vpos as a negative number inside vblank, counting the number |
| 772 | * of scanlines to go until end of vblank, e.g., -1 means "one scanline |
| 773 | * until start of active scanout / end of vblank." |
| 774 | * |
| 775 | * \return Flags, or'ed together as follows: |
| 776 | * |
| 777 | * DRM_SCANOUTPOS_VALID = Query successful. |
| 778 | * DRM_SCANOUTPOS_INVBL = Inside vblank. |
| 779 | * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of |
| 780 | * this flag means that returned position may be offset by a constant but |
| 781 | * unknown small number of scanlines wrt. real scanout position. |
| 782 | * |
| 783 | */ |
Samuel Li | aa8e286 | 2018-01-19 15:53:16 -0500 | [diff] [blame] | 784 | int amdgpu_display_get_crtc_scanoutpos(struct drm_device *dev, |
| 785 | unsigned int pipe, unsigned int flags, int *vpos, |
| 786 | int *hpos, ktime_t *stime, ktime_t *etime, |
| 787 | const struct drm_display_mode *mode) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 788 | { |
| 789 | u32 vbl = 0, position = 0; |
| 790 | int vbl_start, vbl_end, vtotal, ret = 0; |
| 791 | bool in_vbl = true; |
| 792 | |
| 793 | struct amdgpu_device *adev = dev->dev_private; |
| 794 | |
| 795 | /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */ |
| 796 | |
| 797 | /* Get optional system timestamp before query. */ |
| 798 | if (stime) |
| 799 | *stime = ktime_get(); |
| 800 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 801 | if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 802 | ret |= DRM_SCANOUTPOS_VALID; |
| 803 | |
| 804 | /* Get optional system timestamp after query. */ |
| 805 | if (etime) |
| 806 | *etime = ktime_get(); |
| 807 | |
| 808 | /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */ |
| 809 | |
| 810 | /* Decode into vertical and horizontal scanout position. */ |
| 811 | *vpos = position & 0x1fff; |
| 812 | *hpos = (position >> 16) & 0x1fff; |
| 813 | |
| 814 | /* Valid vblank area boundaries from gpu retrieved? */ |
| 815 | if (vbl > 0) { |
| 816 | /* Yes: Decode. */ |
| 817 | ret |= DRM_SCANOUTPOS_ACCURATE; |
| 818 | vbl_start = vbl & 0x1fff; |
| 819 | vbl_end = (vbl >> 16) & 0x1fff; |
| 820 | } |
| 821 | else { |
| 822 | /* No: Fake something reasonable which gives at least ok results. */ |
Ville Syrjälä | 3bb403b | 2015-09-14 22:43:44 +0300 | [diff] [blame] | 823 | vbl_start = mode->crtc_vdisplay; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 824 | vbl_end = 0; |
| 825 | } |
| 826 | |
Alex Deucher | 8e36f9d | 2015-12-03 12:31:56 -0500 | [diff] [blame] | 827 | /* Called from driver internal vblank counter query code? */ |
| 828 | if (flags & GET_DISTANCE_TO_VBLANKSTART) { |
| 829 | /* Caller wants distance from real vbl_start in *hpos */ |
| 830 | *hpos = *vpos - vbl_start; |
| 831 | } |
| 832 | |
| 833 | /* Fudge vblank to start a few scanlines earlier to handle the |
| 834 | * problem that vblank irqs fire a few scanlines before start |
| 835 | * of vblank. Some driver internal callers need the true vblank |
| 836 | * start to be used and signal this via the USE_REAL_VBLANKSTART flag. |
| 837 | * |
| 838 | * The cause of the "early" vblank irq is that the irq is triggered |
| 839 | * by the line buffer logic when the line buffer read position enters |
| 840 | * the vblank, whereas our crtc scanout position naturally lags the |
| 841 | * line buffer read position. |
| 842 | */ |
| 843 | if (!(flags & USE_REAL_VBLANKSTART)) |
| 844 | vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines; |
| 845 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 846 | /* Test scanout position against vblank region. */ |
| 847 | if ((*vpos < vbl_start) && (*vpos >= vbl_end)) |
| 848 | in_vbl = false; |
| 849 | |
Alex Deucher | 8e36f9d | 2015-12-03 12:31:56 -0500 | [diff] [blame] | 850 | /* In vblank? */ |
| 851 | if (in_vbl) |
| 852 | ret |= DRM_SCANOUTPOS_IN_VBLANK; |
| 853 | |
| 854 | /* Called from driver internal vblank counter query code? */ |
| 855 | if (flags & GET_DISTANCE_TO_VBLANKSTART) { |
| 856 | /* Caller wants distance from fudged earlier vbl_start */ |
| 857 | *vpos -= vbl_start; |
| 858 | return ret; |
| 859 | } |
| 860 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 861 | /* Check if inside vblank area and apply corrective offsets: |
| 862 | * vpos will then be >=0 in video scanout area, but negative |
| 863 | * within vblank area, counting down the number of lines until |
| 864 | * start of scanout. |
| 865 | */ |
| 866 | |
| 867 | /* Inside "upper part" of vblank area? Apply corrective offset if so: */ |
| 868 | if (in_vbl && (*vpos >= vbl_start)) { |
Ville Syrjälä | 3bb403b | 2015-09-14 22:43:44 +0300 | [diff] [blame] | 869 | vtotal = mode->crtc_vtotal; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 870 | *vpos = *vpos - vtotal; |
| 871 | } |
| 872 | |
| 873 | /* Correct for shifted end of vbl at vbl_end. */ |
| 874 | *vpos = *vpos - vbl_end; |
| 875 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 876 | return ret; |
| 877 | } |
| 878 | |
Samuel Li | 734dd01 | 2018-01-19 16:06:41 -0500 | [diff] [blame] | 879 | int amdgpu_display_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 880 | { |
| 881 | if (crtc < 0 || crtc >= adev->mode_info.num_crtc) |
| 882 | return AMDGPU_CRTC_IRQ_NONE; |
| 883 | |
| 884 | switch (crtc) { |
| 885 | case 0: |
| 886 | return AMDGPU_CRTC_IRQ_VBLANK1; |
| 887 | case 1: |
| 888 | return AMDGPU_CRTC_IRQ_VBLANK2; |
| 889 | case 2: |
| 890 | return AMDGPU_CRTC_IRQ_VBLANK3; |
| 891 | case 3: |
| 892 | return AMDGPU_CRTC_IRQ_VBLANK4; |
| 893 | case 4: |
| 894 | return AMDGPU_CRTC_IRQ_VBLANK5; |
| 895 | case 5: |
| 896 | return AMDGPU_CRTC_IRQ_VBLANK6; |
| 897 | default: |
| 898 | return AMDGPU_CRTC_IRQ_NONE; |
| 899 | } |
| 900 | } |