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