2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
23 * Authors: Dave Airlie
27 #include <drm/amdgpu_drm.h>
29 #include "amdgpu_i2c.h"
31 #include "amdgpu_connectors.h"
32 #include "amdgpu_display.h"
33 #include <asm/div64.h>
35 #include <linux/pci.h>
36 #include <linux/pm_runtime.h>
37 #include <drm/drm_crtc_helper.h>
38 #include <drm/drm_edid.h>
39 #include <drm/drm_gem_framebuffer_helper.h>
40 #include <drm/drm_fb_helper.h>
41 #include <drm/drm_fourcc.h>
42 #include <drm/drm_vblank.h>
44 static void amdgpu_display_flip_callback(struct dma_fence *f,
45 struct dma_fence_cb *cb)
47 struct amdgpu_flip_work *work =
48 container_of(cb, struct amdgpu_flip_work, cb);
51 schedule_work(&work->flip_work.work);
54 static bool amdgpu_display_flip_handle_fence(struct amdgpu_flip_work *work,
57 struct dma_fence *fence= *f;
64 if (!dma_fence_add_callback(fence, &work->cb,
65 amdgpu_display_flip_callback))
72 static void amdgpu_display_flip_work_func(struct work_struct *__work)
74 struct delayed_work *delayed_work =
75 container_of(__work, struct delayed_work, work);
76 struct amdgpu_flip_work *work =
77 container_of(delayed_work, struct amdgpu_flip_work, flip_work);
78 struct amdgpu_device *adev = work->adev;
79 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[work->crtc_id];
81 struct drm_crtc *crtc = &amdgpu_crtc->base;
86 for (i = 0; i < work->shared_count; ++i)
87 if (amdgpu_display_flip_handle_fence(work, &work->shared[i]))
90 /* Wait until we're out of the vertical blank period before the one
91 * targeted by the flip
93 if (amdgpu_crtc->enabled &&
94 (amdgpu_display_get_crtc_scanoutpos(adev_to_drm(adev), work->crtc_id, 0,
95 &vpos, &hpos, NULL, NULL,
97 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
98 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
99 (int)(work->target_vblank -
100 amdgpu_get_vblank_counter_kms(crtc)) > 0) {
101 schedule_delayed_work(&work->flip_work, usecs_to_jiffies(1000));
105 /* We borrow the event spin lock for protecting flip_status */
106 spin_lock_irqsave(&crtc->dev->event_lock, flags);
108 /* Do the flip (mmio) */
109 adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base, work->async);
111 /* Set the flip status */
112 amdgpu_crtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
113 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
116 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_SUBMITTED, work: %p,\n",
117 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
122 * Handle unpin events outside the interrupt handler proper.
124 static void amdgpu_display_unpin_work_func(struct work_struct *__work)
126 struct amdgpu_flip_work *work =
127 container_of(__work, struct amdgpu_flip_work, unpin_work);
130 /* unpin of the old buffer */
131 r = amdgpu_bo_reserve(work->old_abo, true);
132 if (likely(r == 0)) {
133 amdgpu_bo_unpin(work->old_abo);
134 amdgpu_bo_unreserve(work->old_abo);
136 DRM_ERROR("failed to reserve buffer after flip\n");
138 amdgpu_bo_unref(&work->old_abo);
143 int amdgpu_display_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)
149 struct drm_device *dev = crtc->dev;
150 struct amdgpu_device *adev = drm_to_adev(dev);
151 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
152 struct drm_gem_object *obj;
153 struct amdgpu_flip_work *work;
154 struct amdgpu_bo *new_abo;
159 work = kzalloc(sizeof *work, GFP_KERNEL);
163 INIT_DELAYED_WORK(&work->flip_work, amdgpu_display_flip_work_func);
164 INIT_WORK(&work->unpin_work, amdgpu_display_unpin_work_func);
168 work->crtc_id = amdgpu_crtc->crtc_id;
169 work->async = (page_flip_flags & DRM_MODE_PAGE_FLIP_ASYNC) != 0;
171 /* schedule unpin of the old buffer */
172 obj = crtc->primary->fb->obj[0];
174 /* take a reference to the old object */
175 work->old_abo = gem_to_amdgpu_bo(obj);
176 amdgpu_bo_ref(work->old_abo);
179 new_abo = gem_to_amdgpu_bo(obj);
181 /* pin the new buffer */
182 r = amdgpu_bo_reserve(new_abo, false);
183 if (unlikely(r != 0)) {
184 DRM_ERROR("failed to reserve new abo buffer before flip\n");
188 if (!adev->enable_virtual_display) {
189 r = amdgpu_bo_pin(new_abo,
190 amdgpu_display_supported_domains(adev, new_abo->flags));
191 if (unlikely(r != 0)) {
192 DRM_ERROR("failed to pin new abo buffer before flip\n");
197 r = amdgpu_ttm_alloc_gart(&new_abo->tbo);
198 if (unlikely(r != 0)) {
199 DRM_ERROR("%p bind failed\n", new_abo);
203 /* TODO: Unify this with other drivers */
204 r = dma_resv_get_fences(new_abo->tbo.base.resv, true,
207 if (unlikely(r != 0)) {
208 DRM_ERROR("failed to get fences for buffer\n");
212 amdgpu_bo_get_tiling_flags(new_abo, &tiling_flags);
213 amdgpu_bo_unreserve(new_abo);
215 if (!adev->enable_virtual_display)
216 work->base = amdgpu_bo_gpu_offset(new_abo);
217 work->target_vblank = target - (uint32_t)drm_crtc_vblank_count(crtc) +
218 amdgpu_get_vblank_counter_kms(crtc);
220 /* we borrow the event spin lock for protecting flip_wrok */
221 spin_lock_irqsave(&crtc->dev->event_lock, flags);
222 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_NONE) {
223 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
224 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
229 amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING;
230 amdgpu_crtc->pflip_works = work;
233 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_PENDING, work: %p,\n",
234 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
236 crtc->primary->fb = fb;
237 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
238 amdgpu_display_flip_work_func(&work->flip_work.work);
242 if (unlikely(amdgpu_bo_reserve(new_abo, false) != 0)) {
243 DRM_ERROR("failed to reserve new abo in error path\n");
247 if (!adev->enable_virtual_display)
248 amdgpu_bo_unpin(new_abo);
251 amdgpu_bo_unreserve(new_abo);
254 amdgpu_bo_unref(&work->old_abo);
255 for (i = 0; i < work->shared_count; ++i)
256 dma_fence_put(work->shared[i]);
263 int amdgpu_display_crtc_set_config(struct drm_mode_set *set,
264 struct drm_modeset_acquire_ctx *ctx)
266 struct drm_device *dev;
267 struct amdgpu_device *adev;
268 struct drm_crtc *crtc;
272 if (!set || !set->crtc)
275 dev = set->crtc->dev;
277 ret = pm_runtime_get_sync(dev->dev);
281 ret = drm_crtc_helper_set_config(set, ctx);
283 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
287 pm_runtime_mark_last_busy(dev->dev);
289 adev = drm_to_adev(dev);
290 /* if we have active crtcs and we don't have a power ref,
291 take the current one */
292 if (active && !adev->have_disp_power_ref) {
293 adev->have_disp_power_ref = true;
296 /* if we have no active crtcs, then drop the power ref
298 if (!active && adev->have_disp_power_ref) {
299 pm_runtime_put_autosuspend(dev->dev);
300 adev->have_disp_power_ref = false;
304 /* drop the power reference we got coming in here */
305 pm_runtime_put_autosuspend(dev->dev);
309 static const char *encoder_names[41] = {
329 "INTERNAL_KLDSCP_TMDS1",
330 "INTERNAL_KLDSCP_DVO1",
331 "INTERNAL_KLDSCP_DAC1",
332 "INTERNAL_KLDSCP_DAC2",
341 "INTERNAL_KLDSCP_LVTMA",
353 static const char *hpd_names[6] = {
362 void amdgpu_display_print_display_setup(struct drm_device *dev)
364 struct drm_connector *connector;
365 struct amdgpu_connector *amdgpu_connector;
366 struct drm_encoder *encoder;
367 struct amdgpu_encoder *amdgpu_encoder;
368 struct drm_connector_list_iter iter;
372 drm_connector_list_iter_begin(dev, &iter);
373 DRM_INFO("AMDGPU Display Connectors\n");
374 drm_for_each_connector_iter(connector, &iter) {
375 amdgpu_connector = to_amdgpu_connector(connector);
376 DRM_INFO("Connector %d:\n", i);
377 DRM_INFO(" %s\n", connector->name);
378 if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE)
379 DRM_INFO(" %s\n", hpd_names[amdgpu_connector->hpd.hpd]);
380 if (amdgpu_connector->ddc_bus) {
381 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
382 amdgpu_connector->ddc_bus->rec.mask_clk_reg,
383 amdgpu_connector->ddc_bus->rec.mask_data_reg,
384 amdgpu_connector->ddc_bus->rec.a_clk_reg,
385 amdgpu_connector->ddc_bus->rec.a_data_reg,
386 amdgpu_connector->ddc_bus->rec.en_clk_reg,
387 amdgpu_connector->ddc_bus->rec.en_data_reg,
388 amdgpu_connector->ddc_bus->rec.y_clk_reg,
389 amdgpu_connector->ddc_bus->rec.y_data_reg);
390 if (amdgpu_connector->router.ddc_valid)
391 DRM_INFO(" DDC Router 0x%x/0x%x\n",
392 amdgpu_connector->router.ddc_mux_control_pin,
393 amdgpu_connector->router.ddc_mux_state);
394 if (amdgpu_connector->router.cd_valid)
395 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
396 amdgpu_connector->router.cd_mux_control_pin,
397 amdgpu_connector->router.cd_mux_state);
399 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
400 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
401 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
402 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
403 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
404 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
407 DRM_INFO(" Encoders:\n");
408 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
409 amdgpu_encoder = to_amdgpu_encoder(encoder);
410 devices = amdgpu_encoder->devices & amdgpu_connector->devices;
412 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
413 DRM_INFO(" CRT1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
414 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
415 DRM_INFO(" CRT2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
416 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
417 DRM_INFO(" LCD1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
418 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
419 DRM_INFO(" DFP1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
420 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
421 DRM_INFO(" DFP2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
422 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
423 DRM_INFO(" DFP3: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
424 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
425 DRM_INFO(" DFP4: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
426 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
427 DRM_INFO(" DFP5: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
428 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
429 DRM_INFO(" DFP6: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
430 if (devices & ATOM_DEVICE_TV1_SUPPORT)
431 DRM_INFO(" TV1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
432 if (devices & ATOM_DEVICE_CV_SUPPORT)
433 DRM_INFO(" CV: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
438 drm_connector_list_iter_end(&iter);
441 bool amdgpu_display_ddc_probe(struct amdgpu_connector *amdgpu_connector,
447 struct i2c_msg msgs[] = {
462 /* on hw with routers, select right port */
463 if (amdgpu_connector->router.ddc_valid)
464 amdgpu_i2c_router_select_ddc_port(amdgpu_connector);
467 ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2);
469 ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2);
473 /* Couldn't find an accessible DDC on this connector */
475 /* Probe also for valid EDID header
476 * EDID header starts with:
477 * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00.
478 * Only the first 6 bytes must be valid as
479 * drm_edid_block_valid() can fix the last 2 bytes */
480 if (drm_edid_header_is_valid(buf) < 6) {
481 /* Couldn't find an accessible EDID on this
488 static const struct drm_framebuffer_funcs amdgpu_fb_funcs = {
489 .destroy = drm_gem_fb_destroy,
490 .create_handle = drm_gem_fb_create_handle,
493 uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev,
496 uint32_t domain = AMDGPU_GEM_DOMAIN_VRAM;
498 #if defined(CONFIG_DRM_AMD_DC)
500 * if amdgpu_bo_support_uswc returns false it means that USWC mappings
501 * is not supported for this board. But this mapping is required
502 * to avoid hang caused by placement of scanout BO in GTT on certain
503 * APUs. So force the BO placement to VRAM in case this architecture
504 * will not allow USWC mappings.
505 * Also, don't allow GTT domain if the BO doesn't have USWC flag set.
507 if ((bo_flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC) &&
508 amdgpu_bo_support_uswc(bo_flags) &&
509 amdgpu_device_asic_has_dc_support(adev->asic_type) &&
510 adev->mode_info.gpu_vm_support)
511 domain |= AMDGPU_GEM_DOMAIN_GTT;
517 static const struct drm_format_info dcc_formats[] = {
518 { .format = DRM_FORMAT_XRGB8888, .depth = 24, .num_planes = 2,
519 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
520 { .format = DRM_FORMAT_XBGR8888, .depth = 24, .num_planes = 2,
521 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
522 { .format = DRM_FORMAT_ARGB8888, .depth = 32, .num_planes = 2,
523 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
524 .has_alpha = true, },
525 { .format = DRM_FORMAT_ABGR8888, .depth = 32, .num_planes = 2,
526 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
527 .has_alpha = true, },
528 { .format = DRM_FORMAT_BGRA8888, .depth = 32, .num_planes = 2,
529 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
530 .has_alpha = true, },
531 { .format = DRM_FORMAT_XRGB2101010, .depth = 30, .num_planes = 2,
532 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
533 { .format = DRM_FORMAT_XBGR2101010, .depth = 30, .num_planes = 2,
534 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
535 { .format = DRM_FORMAT_ARGB2101010, .depth = 30, .num_planes = 2,
536 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
537 .has_alpha = true, },
538 { .format = DRM_FORMAT_ABGR2101010, .depth = 30, .num_planes = 2,
539 .cpp = { 4, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
540 .has_alpha = true, },
541 { .format = DRM_FORMAT_RGB565, .depth = 16, .num_planes = 2,
542 .cpp = { 2, 0, }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
545 static const struct drm_format_info dcc_retile_formats[] = {
546 { .format = DRM_FORMAT_XRGB8888, .depth = 24, .num_planes = 3,
547 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
548 { .format = DRM_FORMAT_XBGR8888, .depth = 24, .num_planes = 3,
549 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
550 { .format = DRM_FORMAT_ARGB8888, .depth = 32, .num_planes = 3,
551 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
552 .has_alpha = true, },
553 { .format = DRM_FORMAT_ABGR8888, .depth = 32, .num_planes = 3,
554 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
555 .has_alpha = true, },
556 { .format = DRM_FORMAT_BGRA8888, .depth = 32, .num_planes = 3,
557 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
558 .has_alpha = true, },
559 { .format = DRM_FORMAT_XRGB2101010, .depth = 30, .num_planes = 3,
560 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
561 { .format = DRM_FORMAT_XBGR2101010, .depth = 30, .num_planes = 3,
562 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
563 { .format = DRM_FORMAT_ARGB2101010, .depth = 30, .num_planes = 3,
564 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
565 .has_alpha = true, },
566 { .format = DRM_FORMAT_ABGR2101010, .depth = 30, .num_planes = 3,
567 .cpp = { 4, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1,
568 .has_alpha = true, },
569 { .format = DRM_FORMAT_RGB565, .depth = 16, .num_planes = 3,
570 .cpp = { 2, 0, 0 }, .block_w = {1, 1, 1}, .block_h = {1, 1, 1}, .hsub = 1, .vsub = 1, },
573 static const struct drm_format_info *
574 lookup_format_info(const struct drm_format_info formats[],
575 int num_formats, u32 format)
579 for (i = 0; i < num_formats; i++) {
580 if (formats[i].format == format)
587 const struct drm_format_info *
588 amdgpu_lookup_format_info(u32 format, uint64_t modifier)
590 if (!IS_AMD_FMT_MOD(modifier))
593 if (AMD_FMT_MOD_GET(DCC_RETILE, modifier))
594 return lookup_format_info(dcc_retile_formats,
595 ARRAY_SIZE(dcc_retile_formats),
598 if (AMD_FMT_MOD_GET(DCC, modifier))
599 return lookup_format_info(dcc_formats, ARRAY_SIZE(dcc_formats),
602 /* returning NULL will cause the default format structs to be used. */
608 * Tries to extract the renderable DCC offset from the opaque metadata attached
612 extract_render_dcc_offset(struct amdgpu_device *adev,
613 struct drm_gem_object *obj,
616 struct amdgpu_bo *rbo;
618 uint32_t metadata[10]; /* Something that fits a descriptor + header. */
621 rbo = gem_to_amdgpu_bo(obj);
622 r = amdgpu_bo_reserve(rbo, false);
625 /* Don't show error message when returning -ERESTARTSYS */
626 if (r != -ERESTARTSYS)
627 DRM_ERROR("Unable to reserve buffer: %d\n", r);
631 r = amdgpu_bo_get_metadata(rbo, metadata, sizeof(metadata), &size, NULL);
632 amdgpu_bo_unreserve(rbo);
638 * The first word is the metadata version, and we need space for at least
639 * the version + pci vendor+device id + 8 words for a descriptor.
641 if (size < 40 || metadata[0] != 1)
644 if (adev->family >= AMDGPU_FAMILY_NV) {
645 /* resource word 6/7 META_DATA_ADDRESS{_LO} */
646 *offset = ((u64)metadata[9] << 16u) |
647 ((metadata[8] & 0xFF000000u) >> 16);
649 /* resource word 5/7 META_DATA_ADDRESS */
650 *offset = ((u64)metadata[9] << 8u) |
651 ((u64)(metadata[7] & 0x1FE0000u) << 23);
657 static int convert_tiling_flags_to_modifier(struct amdgpu_framebuffer *afb)
659 struct amdgpu_device *adev = drm_to_adev(afb->base.dev);
660 uint64_t modifier = 0;
662 if (!afb->tiling_flags || !AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE)) {
663 modifier = DRM_FORMAT_MOD_LINEAR;
665 int swizzle = AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE);
666 bool has_xor = swizzle >= 16;
669 int pipe_xor_bits = 0;
670 int bank_xor_bits = 0;
673 int pipes = ilog2(adev->gfx.config.gb_addr_config_fields.num_pipes);
674 uint32_t dcc_offset = AMDGPU_TILING_GET(afb->tiling_flags, DCC_OFFSET_256B);
676 switch (swizzle >> 2) {
681 case 5: /* 4KiB _X */
682 block_size_bits = 12;
685 case 4: /* 64 KiB _T */
686 case 6: /* 64 KiB _X */
687 block_size_bits = 16;
690 /* RESERVED or VAR */
694 if (adev->ip_versions[GC_HWIP][0] >= IP_VERSION(10, 3, 0))
695 version = AMD_FMT_MOD_TILE_VER_GFX10_RBPLUS;
696 else if (adev->ip_versions[GC_HWIP][0] >= IP_VERSION(10, 0, 0))
697 version = AMD_FMT_MOD_TILE_VER_GFX10;
699 version = AMD_FMT_MOD_TILE_VER_GFX9;
701 switch (swizzle & 3) {
702 case 0: /* Z microtiling */
704 case 1: /* S microtiling */
706 version = AMD_FMT_MOD_TILE_VER_GFX9;
709 if (!has_xor && afb->base.format->cpp[0] != 4)
710 version = AMD_FMT_MOD_TILE_VER_GFX9;
718 case AMD_FMT_MOD_TILE_VER_GFX10_RBPLUS:
719 pipe_xor_bits = min(block_size_bits - 8, pipes);
720 packers = min(block_size_bits - 8 - pipe_xor_bits,
721 ilog2(adev->gfx.config.gb_addr_config_fields.num_pkrs));
723 case AMD_FMT_MOD_TILE_VER_GFX10:
724 pipe_xor_bits = min(block_size_bits - 8, pipes);
726 case AMD_FMT_MOD_TILE_VER_GFX9:
727 rb = ilog2(adev->gfx.config.gb_addr_config_fields.num_se) +
728 ilog2(adev->gfx.config.gb_addr_config_fields.num_rb_per_se);
729 pipe_xor_bits = min(block_size_bits - 8, pipes +
730 ilog2(adev->gfx.config.gb_addr_config_fields.num_se));
731 bank_xor_bits = min(block_size_bits - 8 - pipe_xor_bits,
732 ilog2(adev->gfx.config.gb_addr_config_fields.num_banks));
737 modifier = AMD_FMT_MOD |
738 AMD_FMT_MOD_SET(TILE, AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE)) |
739 AMD_FMT_MOD_SET(TILE_VERSION, version) |
740 AMD_FMT_MOD_SET(PIPE_XOR_BITS, pipe_xor_bits) |
741 AMD_FMT_MOD_SET(BANK_XOR_BITS, bank_xor_bits) |
742 AMD_FMT_MOD_SET(PACKERS, packers);
744 if (dcc_offset != 0) {
745 bool dcc_i64b = AMDGPU_TILING_GET(afb->tiling_flags, DCC_INDEPENDENT_64B) != 0;
746 bool dcc_i128b = version >= AMD_FMT_MOD_TILE_VER_GFX10_RBPLUS;
747 const struct drm_format_info *format_info;
748 u64 render_dcc_offset;
750 /* Enable constant encode on RAVEN2 and later. */
751 bool dcc_constant_encode = adev->asic_type > CHIP_RAVEN ||
752 (adev->asic_type == CHIP_RAVEN &&
753 adev->external_rev_id >= 0x81);
755 int max_cblock_size = dcc_i64b ? AMD_FMT_MOD_DCC_BLOCK_64B :
756 dcc_i128b ? AMD_FMT_MOD_DCC_BLOCK_128B :
757 AMD_FMT_MOD_DCC_BLOCK_256B;
759 modifier |= AMD_FMT_MOD_SET(DCC, 1) |
760 AMD_FMT_MOD_SET(DCC_CONSTANT_ENCODE, dcc_constant_encode) |
761 AMD_FMT_MOD_SET(DCC_INDEPENDENT_64B, dcc_i64b) |
762 AMD_FMT_MOD_SET(DCC_INDEPENDENT_128B, dcc_i128b) |
763 AMD_FMT_MOD_SET(DCC_MAX_COMPRESSED_BLOCK, max_cblock_size);
765 afb->base.offsets[1] = dcc_offset * 256 + afb->base.offsets[0];
766 afb->base.pitches[1] =
767 AMDGPU_TILING_GET(afb->tiling_flags, DCC_PITCH_MAX) + 1;
770 * If the userspace driver uses retiling the tiling flags do not contain
771 * info on the renderable DCC buffer. Luckily the opaque metadata contains
772 * the info so we can try to extract it. The kernel does not use this info
773 * but we should convert it to a modifier plane for getfb2, so the
774 * userspace driver that gets it doesn't have to juggle around another DCC
777 if (extract_render_dcc_offset(adev, afb->base.obj[0],
778 &render_dcc_offset) == 0 &&
779 render_dcc_offset != 0 &&
780 render_dcc_offset != afb->base.offsets[1] &&
781 render_dcc_offset < UINT_MAX) {
782 uint32_t dcc_block_bits; /* of base surface data */
784 modifier |= AMD_FMT_MOD_SET(DCC_RETILE, 1);
785 afb->base.offsets[2] = render_dcc_offset;
787 if (adev->family >= AMDGPU_FAMILY_NV) {
790 if ((adev->ip_versions[GC_HWIP][0] >= IP_VERSION(10, 3, 0)) &&
791 pipes == packers && pipes > 1)
794 dcc_block_bits = max(20, 16 + pipes + extra_pipe);
796 modifier |= AMD_FMT_MOD_SET(RB, rb) |
797 AMD_FMT_MOD_SET(PIPE, pipes);
798 dcc_block_bits = max(20, 18 + rb);
801 dcc_block_bits -= ilog2(afb->base.format->cpp[0]);
802 afb->base.pitches[2] = ALIGN(afb->base.width,
803 1u << ((dcc_block_bits + 1) / 2));
805 format_info = amdgpu_lookup_format_info(afb->base.format->format,
810 afb->base.format = format_info;
814 afb->base.modifier = modifier;
815 afb->base.flags |= DRM_MODE_FB_MODIFIERS;
819 /* Mirrors the is_displayable check in radeonsi's gfx6_compute_surface */
820 static int check_tiling_flags_gfx6(struct amdgpu_framebuffer *afb)
824 /* Zero swizzle mode means linear */
825 if (AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE) == 0)
828 micro_tile_mode = AMDGPU_TILING_GET(afb->tiling_flags, MICRO_TILE_MODE);
829 switch (micro_tile_mode) {
830 case 0: /* DISPLAY */
834 drm_dbg_kms(afb->base.dev,
835 "Micro tile mode %llu not supported for scanout\n",
841 static void get_block_dimensions(unsigned int block_log2, unsigned int cpp,
842 unsigned int *width, unsigned int *height)
844 unsigned int cpp_log2 = ilog2(cpp);
845 unsigned int pixel_log2 = block_log2 - cpp_log2;
846 unsigned int width_log2 = (pixel_log2 + 1) / 2;
847 unsigned int height_log2 = pixel_log2 - width_log2;
849 *width = 1 << width_log2;
850 *height = 1 << height_log2;
853 static unsigned int get_dcc_block_size(uint64_t modifier, bool rb_aligned,
856 unsigned int ver = AMD_FMT_MOD_GET(TILE_VERSION, modifier);
859 case AMD_FMT_MOD_TILE_VER_GFX9: {
861 * TODO: for pipe aligned we may need to check the alignment of the
862 * total size of the surface, which may need to be bigger than the
863 * natural alignment due to some HW workarounds
865 return max(10 + (rb_aligned ? (int)AMD_FMT_MOD_GET(RB, modifier) : 0), 12);
867 case AMD_FMT_MOD_TILE_VER_GFX10:
868 case AMD_FMT_MOD_TILE_VER_GFX10_RBPLUS: {
869 int pipes_log2 = AMD_FMT_MOD_GET(PIPE_XOR_BITS, modifier);
871 if (ver == AMD_FMT_MOD_TILE_VER_GFX10_RBPLUS && pipes_log2 > 1 &&
872 AMD_FMT_MOD_GET(PACKERS, modifier) == pipes_log2)
875 return max(8 + (pipe_aligned ? pipes_log2 : 0), 12);
882 static int amdgpu_display_verify_plane(struct amdgpu_framebuffer *rfb, int plane,
883 const struct drm_format_info *format,
884 unsigned int block_width, unsigned int block_height,
885 unsigned int block_size_log2)
887 unsigned int width = rfb->base.width /
888 ((plane && plane < format->num_planes) ? format->hsub : 1);
889 unsigned int height = rfb->base.height /
890 ((plane && plane < format->num_planes) ? format->vsub : 1);
891 unsigned int cpp = plane < format->num_planes ? format->cpp[plane] : 1;
892 unsigned int block_pitch = block_width * cpp;
893 unsigned int min_pitch = ALIGN(width * cpp, block_pitch);
894 unsigned int block_size = 1 << block_size_log2;
897 if (rfb->base.pitches[plane] % block_pitch) {
898 drm_dbg_kms(rfb->base.dev,
899 "pitch %d for plane %d is not a multiple of block pitch %d\n",
900 rfb->base.pitches[plane], plane, block_pitch);
903 if (rfb->base.pitches[plane] < min_pitch) {
904 drm_dbg_kms(rfb->base.dev,
905 "pitch %d for plane %d is less than minimum pitch %d\n",
906 rfb->base.pitches[plane], plane, min_pitch);
910 /* Force at least natural alignment. */
911 if (rfb->base.offsets[plane] % block_size) {
912 drm_dbg_kms(rfb->base.dev,
913 "offset 0x%x for plane %d is not a multiple of block pitch 0x%x\n",
914 rfb->base.offsets[plane], plane, block_size);
918 size = rfb->base.offsets[plane] +
919 (uint64_t)rfb->base.pitches[plane] / block_pitch *
920 block_size * DIV_ROUND_UP(height, block_height);
922 if (rfb->base.obj[0]->size < size) {
923 drm_dbg_kms(rfb->base.dev,
924 "BO size 0x%zx is less than 0x%llx required for plane %d\n",
925 rfb->base.obj[0]->size, size, plane);
933 static int amdgpu_display_verify_sizes(struct amdgpu_framebuffer *rfb)
935 const struct drm_format_info *format_info = drm_format_info(rfb->base.format->format);
936 uint64_t modifier = rfb->base.modifier;
938 unsigned int i, block_width, block_height, block_size_log2;
940 if (rfb->base.dev->mode_config.fb_modifiers_not_supported)
943 for (i = 0; i < format_info->num_planes; ++i) {
944 if (modifier == DRM_FORMAT_MOD_LINEAR) {
945 block_width = 256 / format_info->cpp[i];
949 int swizzle = AMD_FMT_MOD_GET(TILE, modifier);
951 switch ((swizzle & ~3) + 1) {
957 block_size_log2 = 12;
962 block_size_log2 = 16;
965 drm_dbg_kms(rfb->base.dev,
966 "Swizzle mode with unknown block size: %d\n", swizzle);
970 get_block_dimensions(block_size_log2, format_info->cpp[i],
971 &block_width, &block_height);
974 ret = amdgpu_display_verify_plane(rfb, i, format_info,
975 block_width, block_height, block_size_log2);
980 if (AMD_FMT_MOD_GET(DCC, modifier)) {
981 if (AMD_FMT_MOD_GET(DCC_RETILE, modifier)) {
982 block_size_log2 = get_dcc_block_size(modifier, false, false);
983 get_block_dimensions(block_size_log2 + 8, format_info->cpp[0],
984 &block_width, &block_height);
985 ret = amdgpu_display_verify_plane(rfb, i, format_info,
986 block_width, block_height,
992 block_size_log2 = get_dcc_block_size(modifier, true, true);
994 bool pipe_aligned = AMD_FMT_MOD_GET(DCC_PIPE_ALIGN, modifier);
996 block_size_log2 = get_dcc_block_size(modifier, true, pipe_aligned);
998 get_block_dimensions(block_size_log2 + 8, format_info->cpp[0],
999 &block_width, &block_height);
1000 ret = amdgpu_display_verify_plane(rfb, i, format_info,
1001 block_width, block_height, block_size_log2);
1009 static int amdgpu_display_get_fb_info(const struct amdgpu_framebuffer *amdgpu_fb,
1010 uint64_t *tiling_flags, bool *tmz_surface)
1012 struct amdgpu_bo *rbo;
1017 *tmz_surface = false;
1021 rbo = gem_to_amdgpu_bo(amdgpu_fb->base.obj[0]);
1022 r = amdgpu_bo_reserve(rbo, false);
1025 /* Don't show error message when returning -ERESTARTSYS */
1026 if (r != -ERESTARTSYS)
1027 DRM_ERROR("Unable to reserve buffer: %d\n", r);
1032 amdgpu_bo_get_tiling_flags(rbo, tiling_flags);
1035 *tmz_surface = amdgpu_bo_encrypted(rbo);
1037 amdgpu_bo_unreserve(rbo);
1042 int amdgpu_display_gem_fb_init(struct drm_device *dev,
1043 struct amdgpu_framebuffer *rfb,
1044 const struct drm_mode_fb_cmd2 *mode_cmd,
1045 struct drm_gem_object *obj)
1049 rfb->base.obj[0] = obj;
1050 drm_helper_mode_fill_fb_struct(dev, &rfb->base, mode_cmd);
1052 ret = amdgpu_display_framebuffer_init(dev, rfb, mode_cmd, obj);
1056 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
1062 drm_dbg_kms(dev, "Failed to init gem fb: %d\n", ret);
1063 rfb->base.obj[0] = NULL;
1067 int amdgpu_display_gem_fb_verify_and_init(
1068 struct drm_device *dev, struct amdgpu_framebuffer *rfb,
1069 struct drm_file *file_priv, const struct drm_mode_fb_cmd2 *mode_cmd,
1070 struct drm_gem_object *obj)
1074 rfb->base.obj[0] = obj;
1075 drm_helper_mode_fill_fb_struct(dev, &rfb->base, mode_cmd);
1076 /* Verify that the modifier is supported. */
1077 if (!drm_any_plane_has_format(dev, mode_cmd->pixel_format,
1078 mode_cmd->modifier[0])) {
1080 "unsupported pixel format %p4cc / modifier 0x%llx\n",
1081 &mode_cmd->pixel_format, mode_cmd->modifier[0]);
1087 ret = amdgpu_display_framebuffer_init(dev, rfb, mode_cmd, obj);
1091 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
1097 drm_dbg_kms(dev, "Failed to verify and init gem fb: %d\n", ret);
1098 rfb->base.obj[0] = NULL;
1102 int amdgpu_display_framebuffer_init(struct drm_device *dev,
1103 struct amdgpu_framebuffer *rfb,
1104 const struct drm_mode_fb_cmd2 *mode_cmd,
1105 struct drm_gem_object *obj)
1107 struct amdgpu_device *adev = drm_to_adev(dev);
1111 * This needs to happen before modifier conversion as that might change
1112 * the number of planes.
1114 for (i = 1; i < rfb->base.format->num_planes; ++i) {
1115 if (mode_cmd->handles[i] != mode_cmd->handles[0]) {
1116 drm_dbg_kms(dev, "Plane 0 and %d have different BOs: %u vs. %u\n",
1117 i, mode_cmd->handles[0], mode_cmd->handles[i]);
1123 ret = amdgpu_display_get_fb_info(rfb, &rfb->tiling_flags, &rfb->tmz_surface);
1127 if (dev->mode_config.fb_modifiers_not_supported && !adev->enable_virtual_display) {
1128 drm_WARN_ONCE(dev, adev->family >= AMDGPU_FAMILY_AI,
1129 "GFX9+ requires FB check based on format modifier\n");
1130 ret = check_tiling_flags_gfx6(rfb);
1135 if (!dev->mode_config.fb_modifiers_not_supported &&
1136 !(rfb->base.flags & DRM_MODE_FB_MODIFIERS)) {
1137 ret = convert_tiling_flags_to_modifier(rfb);
1139 drm_dbg_kms(dev, "Failed to convert tiling flags 0x%llX to a modifier",
1145 ret = amdgpu_display_verify_sizes(rfb);
1149 for (i = 0; i < rfb->base.format->num_planes; ++i) {
1150 drm_gem_object_get(rfb->base.obj[0]);
1151 rfb->base.obj[i] = rfb->base.obj[0];
1157 struct drm_framebuffer *
1158 amdgpu_display_user_framebuffer_create(struct drm_device *dev,
1159 struct drm_file *file_priv,
1160 const struct drm_mode_fb_cmd2 *mode_cmd)
1162 struct amdgpu_framebuffer *amdgpu_fb;
1163 struct drm_gem_object *obj;
1164 struct amdgpu_bo *bo;
1168 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
1170 drm_dbg_kms(dev, "No GEM object associated to handle 0x%08X, "
1171 "can't create framebuffer\n", mode_cmd->handles[0]);
1172 return ERR_PTR(-ENOENT);
1175 /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */
1176 bo = gem_to_amdgpu_bo(obj);
1177 domains = amdgpu_display_supported_domains(drm_to_adev(dev), bo->flags);
1178 if (obj->import_attach && !(domains & AMDGPU_GEM_DOMAIN_GTT)) {
1179 drm_dbg_kms(dev, "Cannot create framebuffer from imported dma_buf\n");
1180 drm_gem_object_put(obj);
1181 return ERR_PTR(-EINVAL);
1184 amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL);
1185 if (amdgpu_fb == NULL) {
1186 drm_gem_object_put(obj);
1187 return ERR_PTR(-ENOMEM);
1190 ret = amdgpu_display_gem_fb_verify_and_init(dev, amdgpu_fb, file_priv,
1194 drm_gem_object_put(obj);
1195 return ERR_PTR(ret);
1198 drm_gem_object_put(obj);
1199 return &amdgpu_fb->base;
1202 const struct drm_mode_config_funcs amdgpu_mode_funcs = {
1203 .fb_create = amdgpu_display_user_framebuffer_create,
1204 .output_poll_changed = drm_fb_helper_output_poll_changed,
1207 static const struct drm_prop_enum_list amdgpu_underscan_enum_list[] =
1208 { { UNDERSCAN_OFF, "off" },
1209 { UNDERSCAN_ON, "on" },
1210 { UNDERSCAN_AUTO, "auto" },
1213 static const struct drm_prop_enum_list amdgpu_audio_enum_list[] =
1214 { { AMDGPU_AUDIO_DISABLE, "off" },
1215 { AMDGPU_AUDIO_ENABLE, "on" },
1216 { AMDGPU_AUDIO_AUTO, "auto" },
1219 /* XXX support different dither options? spatial, temporal, both, etc. */
1220 static const struct drm_prop_enum_list amdgpu_dither_enum_list[] =
1221 { { AMDGPU_FMT_DITHER_DISABLE, "off" },
1222 { AMDGPU_FMT_DITHER_ENABLE, "on" },
1225 int amdgpu_display_modeset_create_props(struct amdgpu_device *adev)
1229 adev->mode_info.coherent_mode_property =
1230 drm_property_create_range(adev_to_drm(adev), 0, "coherent", 0, 1);
1231 if (!adev->mode_info.coherent_mode_property)
1234 adev->mode_info.load_detect_property =
1235 drm_property_create_range(adev_to_drm(adev), 0, "load detection", 0, 1);
1236 if (!adev->mode_info.load_detect_property)
1239 drm_mode_create_scaling_mode_property(adev_to_drm(adev));
1241 sz = ARRAY_SIZE(amdgpu_underscan_enum_list);
1242 adev->mode_info.underscan_property =
1243 drm_property_create_enum(adev_to_drm(adev), 0,
1245 amdgpu_underscan_enum_list, sz);
1247 adev->mode_info.underscan_hborder_property =
1248 drm_property_create_range(adev_to_drm(adev), 0,
1249 "underscan hborder", 0, 128);
1250 if (!adev->mode_info.underscan_hborder_property)
1253 adev->mode_info.underscan_vborder_property =
1254 drm_property_create_range(adev_to_drm(adev), 0,
1255 "underscan vborder", 0, 128);
1256 if (!adev->mode_info.underscan_vborder_property)
1259 sz = ARRAY_SIZE(amdgpu_audio_enum_list);
1260 adev->mode_info.audio_property =
1261 drm_property_create_enum(adev_to_drm(adev), 0,
1263 amdgpu_audio_enum_list, sz);
1265 sz = ARRAY_SIZE(amdgpu_dither_enum_list);
1266 adev->mode_info.dither_property =
1267 drm_property_create_enum(adev_to_drm(adev), 0,
1269 amdgpu_dither_enum_list, sz);
1271 if (amdgpu_device_has_dc_support(adev)) {
1272 adev->mode_info.abm_level_property =
1273 drm_property_create_range(adev_to_drm(adev), 0,
1275 if (!adev->mode_info.abm_level_property)
1282 void amdgpu_display_update_priority(struct amdgpu_device *adev)
1284 /* adjustment options for the display watermarks */
1285 if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2))
1286 adev->mode_info.disp_priority = 0;
1288 adev->mode_info.disp_priority = amdgpu_disp_priority;
1292 static bool amdgpu_display_is_hdtv_mode(const struct drm_display_mode *mode)
1294 /* try and guess if this is a tv or a monitor */
1295 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
1296 (mode->vdisplay == 576) || /* 576p */
1297 (mode->vdisplay == 720) || /* 720p */
1298 (mode->vdisplay == 1080)) /* 1080p */
1304 bool amdgpu_display_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
1305 const struct drm_display_mode *mode,
1306 struct drm_display_mode *adjusted_mode)
1308 struct drm_device *dev = crtc->dev;
1309 struct drm_encoder *encoder;
1310 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1311 struct amdgpu_encoder *amdgpu_encoder;
1312 struct drm_connector *connector;
1313 u32 src_v = 1, dst_v = 1;
1314 u32 src_h = 1, dst_h = 1;
1316 amdgpu_crtc->h_border = 0;
1317 amdgpu_crtc->v_border = 0;
1319 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1320 if (encoder->crtc != crtc)
1322 amdgpu_encoder = to_amdgpu_encoder(encoder);
1323 connector = amdgpu_get_connector_for_encoder(encoder);
1326 if (amdgpu_encoder->rmx_type == RMX_OFF)
1327 amdgpu_crtc->rmx_type = RMX_OFF;
1328 else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay ||
1329 mode->vdisplay < amdgpu_encoder->native_mode.vdisplay)
1330 amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type;
1332 amdgpu_crtc->rmx_type = RMX_OFF;
1333 /* copy native mode */
1334 memcpy(&amdgpu_crtc->native_mode,
1335 &amdgpu_encoder->native_mode,
1336 sizeof(struct drm_display_mode));
1337 src_v = crtc->mode.vdisplay;
1338 dst_v = amdgpu_crtc->native_mode.vdisplay;
1339 src_h = crtc->mode.hdisplay;
1340 dst_h = amdgpu_crtc->native_mode.hdisplay;
1342 /* fix up for overscan on hdmi */
1343 if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
1344 ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) ||
1345 ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) &&
1346 connector->display_info.is_hdmi &&
1347 amdgpu_display_is_hdtv_mode(mode)))) {
1348 if (amdgpu_encoder->underscan_hborder != 0)
1349 amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder;
1351 amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16;
1352 if (amdgpu_encoder->underscan_vborder != 0)
1353 amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder;
1355 amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16;
1356 amdgpu_crtc->rmx_type = RMX_FULL;
1357 src_v = crtc->mode.vdisplay;
1358 dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2);
1359 src_h = crtc->mode.hdisplay;
1360 dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2);
1363 if (amdgpu_crtc->rmx_type != RMX_OFF) {
1365 a.full = dfixed_const(src_v);
1366 b.full = dfixed_const(dst_v);
1367 amdgpu_crtc->vsc.full = dfixed_div(a, b);
1368 a.full = dfixed_const(src_h);
1369 b.full = dfixed_const(dst_h);
1370 amdgpu_crtc->hsc.full = dfixed_div(a, b);
1372 amdgpu_crtc->vsc.full = dfixed_const(1);
1373 amdgpu_crtc->hsc.full = dfixed_const(1);
1379 * Retrieve current video scanout position of crtc on a given gpu, and
1380 * an optional accurate timestamp of when query happened.
1382 * \param dev Device to query.
1383 * \param pipe Crtc to query.
1384 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
1385 * For driver internal use only also supports these flags:
1387 * USE_REAL_VBLANKSTART to use the real start of vblank instead
1388 * of a fudged earlier start of vblank.
1390 * GET_DISTANCE_TO_VBLANKSTART to return distance to the
1391 * fudged earlier start of vblank in *vpos and the distance
1392 * to true start of vblank in *hpos.
1394 * \param *vpos Location where vertical scanout position should be stored.
1395 * \param *hpos Location where horizontal scanout position should go.
1396 * \param *stime Target location for timestamp taken immediately before
1397 * scanout position query. Can be NULL to skip timestamp.
1398 * \param *etime Target location for timestamp taken immediately after
1399 * scanout position query. Can be NULL to skip timestamp.
1401 * Returns vpos as a positive number while in active scanout area.
1402 * Returns vpos as a negative number inside vblank, counting the number
1403 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
1404 * until start of active scanout / end of vblank."
1406 * \return Flags, or'ed together as follows:
1408 * DRM_SCANOUTPOS_VALID = Query successful.
1409 * DRM_SCANOUTPOS_INVBL = Inside vblank.
1410 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
1411 * this flag means that returned position may be offset by a constant but
1412 * unknown small number of scanlines wrt. real scanout position.
1415 int amdgpu_display_get_crtc_scanoutpos(struct drm_device *dev,
1416 unsigned int pipe, unsigned int flags, int *vpos,
1417 int *hpos, ktime_t *stime, ktime_t *etime,
1418 const struct drm_display_mode *mode)
1420 u32 vbl = 0, position = 0;
1421 int vbl_start, vbl_end, vtotal, ret = 0;
1424 struct amdgpu_device *adev = drm_to_adev(dev);
1426 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
1428 /* Get optional system timestamp before query. */
1430 *stime = ktime_get();
1432 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0)
1433 ret |= DRM_SCANOUTPOS_VALID;
1435 /* Get optional system timestamp after query. */
1437 *etime = ktime_get();
1439 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
1441 /* Decode into vertical and horizontal scanout position. */
1442 *vpos = position & 0x1fff;
1443 *hpos = (position >> 16) & 0x1fff;
1445 /* Valid vblank area boundaries from gpu retrieved? */
1448 ret |= DRM_SCANOUTPOS_ACCURATE;
1449 vbl_start = vbl & 0x1fff;
1450 vbl_end = (vbl >> 16) & 0x1fff;
1453 /* No: Fake something reasonable which gives at least ok results. */
1454 vbl_start = mode->crtc_vdisplay;
1458 /* Called from driver internal vblank counter query code? */
1459 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
1460 /* Caller wants distance from real vbl_start in *hpos */
1461 *hpos = *vpos - vbl_start;
1464 /* Fudge vblank to start a few scanlines earlier to handle the
1465 * problem that vblank irqs fire a few scanlines before start
1466 * of vblank. Some driver internal callers need the true vblank
1467 * start to be used and signal this via the USE_REAL_VBLANKSTART flag.
1469 * The cause of the "early" vblank irq is that the irq is triggered
1470 * by the line buffer logic when the line buffer read position enters
1471 * the vblank, whereas our crtc scanout position naturally lags the
1472 * line buffer read position.
1474 if (!(flags & USE_REAL_VBLANKSTART))
1475 vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines;
1477 /* Test scanout position against vblank region. */
1478 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
1483 ret |= DRM_SCANOUTPOS_IN_VBLANK;
1485 /* Called from driver internal vblank counter query code? */
1486 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
1487 /* Caller wants distance from fudged earlier vbl_start */
1492 /* Check if inside vblank area and apply corrective offsets:
1493 * vpos will then be >=0 in video scanout area, but negative
1494 * within vblank area, counting down the number of lines until
1498 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
1499 if (in_vbl && (*vpos >= vbl_start)) {
1500 vtotal = mode->crtc_vtotal;
1502 /* With variable refresh rate displays the vpos can exceed
1503 * the vtotal value. Clamp to 0 to return -vbl_end instead
1504 * of guessing the remaining number of lines until scanout.
1506 *vpos = (*vpos < vtotal) ? (*vpos - vtotal) : 0;
1509 /* Correct for shifted end of vbl at vbl_end. */
1510 *vpos = *vpos - vbl_end;
1515 int amdgpu_display_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc)
1517 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
1518 return AMDGPU_CRTC_IRQ_NONE;
1522 return AMDGPU_CRTC_IRQ_VBLANK1;
1524 return AMDGPU_CRTC_IRQ_VBLANK2;
1526 return AMDGPU_CRTC_IRQ_VBLANK3;
1528 return AMDGPU_CRTC_IRQ_VBLANK4;
1530 return AMDGPU_CRTC_IRQ_VBLANK5;
1532 return AMDGPU_CRTC_IRQ_VBLANK6;
1534 return AMDGPU_CRTC_IRQ_NONE;
1538 bool amdgpu_crtc_get_scanout_position(struct drm_crtc *crtc,
1539 bool in_vblank_irq, int *vpos,
1540 int *hpos, ktime_t *stime, ktime_t *etime,
1541 const struct drm_display_mode *mode)
1543 struct drm_device *dev = crtc->dev;
1544 unsigned int pipe = crtc->index;
1546 return amdgpu_display_get_crtc_scanoutpos(dev, pipe, 0, vpos, hpos,
1547 stime, etime, mode);
1550 int amdgpu_display_suspend_helper(struct amdgpu_device *adev)
1552 struct drm_device *dev = adev_to_drm(adev);
1553 struct drm_crtc *crtc;
1554 struct drm_connector *connector;
1555 struct drm_connector_list_iter iter;
1558 /* turn off display hw */
1559 drm_modeset_lock_all(dev);
1560 drm_connector_list_iter_begin(dev, &iter);
1561 drm_for_each_connector_iter(connector, &iter)
1562 drm_helper_connector_dpms(connector,
1564 drm_connector_list_iter_end(&iter);
1565 drm_modeset_unlock_all(dev);
1566 /* unpin the front buffers and cursors */
1567 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1568 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1569 struct drm_framebuffer *fb = crtc->primary->fb;
1570 struct amdgpu_bo *robj;
1572 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
1573 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
1574 r = amdgpu_bo_reserve(aobj, true);
1576 amdgpu_bo_unpin(aobj);
1577 amdgpu_bo_unreserve(aobj);
1581 if (fb == NULL || fb->obj[0] == NULL) {
1584 robj = gem_to_amdgpu_bo(fb->obj[0]);
1585 r = amdgpu_bo_reserve(robj, true);
1587 amdgpu_bo_unpin(robj);
1588 amdgpu_bo_unreserve(robj);
1594 int amdgpu_display_resume_helper(struct amdgpu_device *adev)
1596 struct drm_device *dev = adev_to_drm(adev);
1597 struct drm_connector *connector;
1598 struct drm_connector_list_iter iter;
1599 struct drm_crtc *crtc;
1603 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1604 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1606 if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) {
1607 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
1608 r = amdgpu_bo_reserve(aobj, true);
1610 r = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM);
1612 dev_err(adev->dev, "Failed to pin cursor BO (%d)\n", r);
1613 amdgpu_crtc->cursor_addr = amdgpu_bo_gpu_offset(aobj);
1614 amdgpu_bo_unreserve(aobj);
1619 drm_helper_resume_force_mode(dev);
1621 /* turn on display hw */
1622 drm_modeset_lock_all(dev);
1624 drm_connector_list_iter_begin(dev, &iter);
1625 drm_for_each_connector_iter(connector, &iter)
1626 drm_helper_connector_dpms(connector,
1628 drm_connector_list_iter_end(&iter);
1630 drm_modeset_unlock_all(dev);