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