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_vblank.h>
43 static void amdgpu_display_flip_callback(struct dma_fence *f,
44 struct dma_fence_cb *cb)
46 struct amdgpu_flip_work *work =
47 container_of(cb, struct amdgpu_flip_work, cb);
50 schedule_work(&work->flip_work.work);
53 static bool amdgpu_display_flip_handle_fence(struct amdgpu_flip_work *work,
56 struct dma_fence *fence= *f;
63 if (!dma_fence_add_callback(fence, &work->cb,
64 amdgpu_display_flip_callback))
71 static void amdgpu_display_flip_work_func(struct work_struct *__work)
73 struct delayed_work *delayed_work =
74 container_of(__work, struct delayed_work, work);
75 struct amdgpu_flip_work *work =
76 container_of(delayed_work, struct amdgpu_flip_work, flip_work);
77 struct amdgpu_device *adev = work->adev;
78 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[work->crtc_id];
80 struct drm_crtc *crtc = &amdgpu_crtc->base;
85 if (amdgpu_display_flip_handle_fence(work, &work->excl))
88 for (i = 0; i < work->shared_count; ++i)
89 if (amdgpu_display_flip_handle_fence(work, &work->shared[i]))
92 /* Wait until we're out of the vertical blank period before the one
93 * targeted by the flip
95 if (amdgpu_crtc->enabled &&
96 (amdgpu_display_get_crtc_scanoutpos(adev->ddev, work->crtc_id, 0,
97 &vpos, &hpos, NULL, NULL,
99 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
100 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
101 (int)(work->target_vblank -
102 amdgpu_get_vblank_counter_kms(adev->ddev, amdgpu_crtc->crtc_id)) > 0) {
103 schedule_delayed_work(&work->flip_work, usecs_to_jiffies(1000));
107 /* We borrow the event spin lock for protecting flip_status */
108 spin_lock_irqsave(&crtc->dev->event_lock, flags);
110 /* Do the flip (mmio) */
111 adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base, work->async);
113 /* Set the flip status */
114 amdgpu_crtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
115 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
118 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_SUBMITTED, work: %p,\n",
119 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
124 * Handle unpin events outside the interrupt handler proper.
126 static void amdgpu_display_unpin_work_func(struct work_struct *__work)
128 struct amdgpu_flip_work *work =
129 container_of(__work, struct amdgpu_flip_work, unpin_work);
132 /* unpin of the old buffer */
133 r = amdgpu_bo_reserve(work->old_abo, true);
134 if (likely(r == 0)) {
135 r = amdgpu_bo_unpin(work->old_abo);
136 if (unlikely(r != 0)) {
137 DRM_ERROR("failed to unpin buffer after flip\n");
139 amdgpu_bo_unreserve(work->old_abo);
141 DRM_ERROR("failed to reserve buffer after flip\n");
143 amdgpu_bo_unref(&work->old_abo);
148 int 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)
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);
157 struct drm_gem_object *obj;
158 struct amdgpu_flip_work *work;
159 struct amdgpu_bo *new_abo;
164 work = kzalloc(sizeof *work, GFP_KERNEL);
168 INIT_DELAYED_WORK(&work->flip_work, amdgpu_display_flip_work_func);
169 INIT_WORK(&work->unpin_work, amdgpu_display_unpin_work_func);
173 work->crtc_id = amdgpu_crtc->crtc_id;
174 work->async = (page_flip_flags & DRM_MODE_PAGE_FLIP_ASYNC) != 0;
176 /* schedule unpin of the old buffer */
177 obj = crtc->primary->fb->obj[0];
179 /* take a reference to the old object */
180 work->old_abo = gem_to_amdgpu_bo(obj);
181 amdgpu_bo_ref(work->old_abo);
184 new_abo = gem_to_amdgpu_bo(obj);
186 /* pin the new buffer */
187 r = amdgpu_bo_reserve(new_abo, false);
188 if (unlikely(r != 0)) {
189 DRM_ERROR("failed to reserve new abo buffer before flip\n");
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");
201 r = amdgpu_ttm_alloc_gart(&new_abo->tbo);
202 if (unlikely(r != 0)) {
203 DRM_ERROR("%p bind failed\n", new_abo);
207 r = reservation_object_get_fences_rcu(new_abo->tbo.resv, &work->excl,
210 if (unlikely(r != 0)) {
211 DRM_ERROR("failed to get fences for buffer\n");
215 amdgpu_bo_get_tiling_flags(new_abo, &tiling_flags);
216 amdgpu_bo_unreserve(new_abo);
218 if (!adev->enable_virtual_display)
219 work->base = amdgpu_bo_gpu_offset(new_abo);
220 work->target_vblank = target - (uint32_t)drm_crtc_vblank_count(crtc) +
221 amdgpu_get_vblank_counter_kms(dev, work->crtc_id);
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);
232 amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING;
233 amdgpu_crtc->pflip_works = work;
236 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_PENDING, work: %p,\n",
237 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
239 crtc->primary->fb = fb;
240 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
241 amdgpu_display_flip_work_func(&work->flip_work.work);
245 if (unlikely(amdgpu_bo_reserve(new_abo, false) != 0)) {
246 DRM_ERROR("failed to reserve new abo in error path\n");
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");
255 amdgpu_bo_unreserve(new_abo);
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]);
268 int amdgpu_display_crtc_set_config(struct drm_mode_set *set,
269 struct drm_modeset_acquire_ctx *ctx)
271 struct drm_device *dev;
272 struct amdgpu_device *adev;
273 struct drm_crtc *crtc;
277 if (!set || !set->crtc)
280 dev = set->crtc->dev;
282 ret = pm_runtime_get_sync(dev->dev);
286 ret = drm_crtc_helper_set_config(set, ctx);
288 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
292 pm_runtime_mark_last_busy(dev->dev);
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;
301 /* if we have no active crtcs, then drop the power ref
303 if (!active && adev->have_disp_power_ref) {
304 pm_runtime_put_autosuspend(dev->dev);
305 adev->have_disp_power_ref = false;
308 /* drop the power reference we got coming in here */
309 pm_runtime_put_autosuspend(dev->dev);
313 static const char *encoder_names[41] = {
333 "INTERNAL_KLDSCP_TMDS1",
334 "INTERNAL_KLDSCP_DVO1",
335 "INTERNAL_KLDSCP_DAC1",
336 "INTERNAL_KLDSCP_DAC2",
345 "INTERNAL_KLDSCP_LVTMA",
357 static const char *hpd_names[6] = {
366 void amdgpu_display_print_display_setup(struct drm_device *dev)
368 struct drm_connector *connector;
369 struct amdgpu_connector *amdgpu_connector;
370 struct drm_encoder *encoder;
371 struct amdgpu_encoder *amdgpu_encoder;
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);
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)
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;
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]);
443 * amdgpu_display_ddc_probe
446 bool amdgpu_display_ddc_probe(struct amdgpu_connector *amdgpu_connector,
452 struct i2c_msg msgs[] = {
467 /* on hw with routers, select right port */
468 if (amdgpu_connector->router.ddc_valid)
469 amdgpu_i2c_router_select_ddc_port(amdgpu_connector);
472 ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2);
474 ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2);
478 /* Couldn't find an accessible DDC on this connector */
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
493 static const struct drm_framebuffer_funcs amdgpu_fb_funcs = {
494 .destroy = drm_gem_fb_destroy,
495 .create_handle = drm_gem_fb_create_handle,
498 uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev)
500 uint32_t domain = AMDGPU_GEM_DOMAIN_VRAM;
502 #if defined(CONFIG_DRM_AMD_DC)
503 if (adev->asic_type >= CHIP_CARRIZO && adev->asic_type < CHIP_RAVEN &&
504 adev->flags & AMD_IS_APU &&
505 amdgpu_device_asic_has_dc_support(adev->asic_type))
506 domain |= AMDGPU_GEM_DOMAIN_GTT;
512 int amdgpu_display_framebuffer_init(struct drm_device *dev,
513 struct amdgpu_framebuffer *rfb,
514 const struct drm_mode_fb_cmd2 *mode_cmd,
515 struct drm_gem_object *obj)
518 rfb->base.obj[0] = obj;
519 drm_helper_mode_fill_fb_struct(dev, &rfb->base, mode_cmd);
520 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
522 rfb->base.obj[0] = NULL;
528 struct drm_framebuffer *
529 amdgpu_display_user_framebuffer_create(struct drm_device *dev,
530 struct drm_file *file_priv,
531 const struct drm_mode_fb_cmd2 *mode_cmd)
533 struct drm_gem_object *obj;
534 struct amdgpu_framebuffer *amdgpu_fb;
537 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
539 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
540 "can't create framebuffer\n", mode_cmd->handles[0]);
541 return ERR_PTR(-ENOENT);
544 /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */
545 if (obj->import_attach) {
546 DRM_DEBUG_KMS("Cannot create framebuffer from imported dma_buf\n");
547 return ERR_PTR(-EINVAL);
550 amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL);
551 if (amdgpu_fb == NULL) {
552 drm_gem_object_put_unlocked(obj);
553 return ERR_PTR(-ENOMEM);
556 ret = amdgpu_display_framebuffer_init(dev, amdgpu_fb, mode_cmd, obj);
559 drm_gem_object_put_unlocked(obj);
563 return &amdgpu_fb->base;
566 const struct drm_mode_config_funcs amdgpu_mode_funcs = {
567 .fb_create = amdgpu_display_user_framebuffer_create,
568 .output_poll_changed = drm_fb_helper_output_poll_changed,
571 static const struct drm_prop_enum_list amdgpu_underscan_enum_list[] =
572 { { UNDERSCAN_OFF, "off" },
573 { UNDERSCAN_ON, "on" },
574 { UNDERSCAN_AUTO, "auto" },
577 static const struct drm_prop_enum_list amdgpu_audio_enum_list[] =
578 { { AMDGPU_AUDIO_DISABLE, "off" },
579 { AMDGPU_AUDIO_ENABLE, "on" },
580 { AMDGPU_AUDIO_AUTO, "auto" },
583 /* XXX support different dither options? spatial, temporal, both, etc. */
584 static const struct drm_prop_enum_list amdgpu_dither_enum_list[] =
585 { { AMDGPU_FMT_DITHER_DISABLE, "off" },
586 { AMDGPU_FMT_DITHER_ENABLE, "on" },
589 int amdgpu_display_modeset_create_props(struct amdgpu_device *adev)
593 adev->mode_info.coherent_mode_property =
594 drm_property_create_range(adev->ddev, 0 , "coherent", 0, 1);
595 if (!adev->mode_info.coherent_mode_property)
598 adev->mode_info.load_detect_property =
599 drm_property_create_range(adev->ddev, 0, "load detection", 0, 1);
600 if (!adev->mode_info.load_detect_property)
603 drm_mode_create_scaling_mode_property(adev->ddev);
605 sz = ARRAY_SIZE(amdgpu_underscan_enum_list);
606 adev->mode_info.underscan_property =
607 drm_property_create_enum(adev->ddev, 0,
609 amdgpu_underscan_enum_list, sz);
611 adev->mode_info.underscan_hborder_property =
612 drm_property_create_range(adev->ddev, 0,
613 "underscan hborder", 0, 128);
614 if (!adev->mode_info.underscan_hborder_property)
617 adev->mode_info.underscan_vborder_property =
618 drm_property_create_range(adev->ddev, 0,
619 "underscan vborder", 0, 128);
620 if (!adev->mode_info.underscan_vborder_property)
623 sz = ARRAY_SIZE(amdgpu_audio_enum_list);
624 adev->mode_info.audio_property =
625 drm_property_create_enum(adev->ddev, 0,
627 amdgpu_audio_enum_list, sz);
629 sz = ARRAY_SIZE(amdgpu_dither_enum_list);
630 adev->mode_info.dither_property =
631 drm_property_create_enum(adev->ddev, 0,
633 amdgpu_dither_enum_list, sz);
635 if (amdgpu_device_has_dc_support(adev)) {
636 adev->mode_info.abm_level_property =
637 drm_property_create_range(adev->ddev, 0,
639 if (!adev->mode_info.abm_level_property)
646 void amdgpu_display_update_priority(struct amdgpu_device *adev)
648 /* adjustment options for the display watermarks */
649 if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2))
650 adev->mode_info.disp_priority = 0;
652 adev->mode_info.disp_priority = amdgpu_disp_priority;
656 static bool amdgpu_display_is_hdtv_mode(const struct drm_display_mode *mode)
658 /* try and guess if this is a tv or a monitor */
659 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
660 (mode->vdisplay == 576) || /* 576p */
661 (mode->vdisplay == 720) || /* 720p */
662 (mode->vdisplay == 1080)) /* 1080p */
668 bool amdgpu_display_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
669 const struct drm_display_mode *mode,
670 struct drm_display_mode *adjusted_mode)
672 struct drm_device *dev = crtc->dev;
673 struct drm_encoder *encoder;
674 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
675 struct amdgpu_encoder *amdgpu_encoder;
676 struct drm_connector *connector;
677 struct amdgpu_connector *amdgpu_connector;
678 u32 src_v = 1, dst_v = 1;
679 u32 src_h = 1, dst_h = 1;
681 amdgpu_crtc->h_border = 0;
682 amdgpu_crtc->v_border = 0;
684 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
685 if (encoder->crtc != crtc)
687 amdgpu_encoder = to_amdgpu_encoder(encoder);
688 connector = amdgpu_get_connector_for_encoder(encoder);
689 amdgpu_connector = to_amdgpu_connector(connector);
692 if (amdgpu_encoder->rmx_type == RMX_OFF)
693 amdgpu_crtc->rmx_type = RMX_OFF;
694 else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay ||
695 mode->vdisplay < amdgpu_encoder->native_mode.vdisplay)
696 amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type;
698 amdgpu_crtc->rmx_type = RMX_OFF;
699 /* copy native mode */
700 memcpy(&amdgpu_crtc->native_mode,
701 &amdgpu_encoder->native_mode,
702 sizeof(struct drm_display_mode));
703 src_v = crtc->mode.vdisplay;
704 dst_v = amdgpu_crtc->native_mode.vdisplay;
705 src_h = crtc->mode.hdisplay;
706 dst_h = amdgpu_crtc->native_mode.hdisplay;
708 /* fix up for overscan on hdmi */
709 if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
710 ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) ||
711 ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) &&
712 drm_detect_hdmi_monitor(amdgpu_connector_edid(connector)) &&
713 amdgpu_display_is_hdtv_mode(mode)))) {
714 if (amdgpu_encoder->underscan_hborder != 0)
715 amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder;
717 amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16;
718 if (amdgpu_encoder->underscan_vborder != 0)
719 amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder;
721 amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16;
722 amdgpu_crtc->rmx_type = RMX_FULL;
723 src_v = crtc->mode.vdisplay;
724 dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2);
725 src_h = crtc->mode.hdisplay;
726 dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2);
729 if (amdgpu_crtc->rmx_type != RMX_OFF) {
731 a.full = dfixed_const(src_v);
732 b.full = dfixed_const(dst_v);
733 amdgpu_crtc->vsc.full = dfixed_div(a, b);
734 a.full = dfixed_const(src_h);
735 b.full = dfixed_const(dst_h);
736 amdgpu_crtc->hsc.full = dfixed_div(a, b);
738 amdgpu_crtc->vsc.full = dfixed_const(1);
739 amdgpu_crtc->hsc.full = dfixed_const(1);
745 * Retrieve current video scanout position of crtc on a given gpu, and
746 * an optional accurate timestamp of when query happened.
748 * \param dev Device to query.
749 * \param pipe Crtc to query.
750 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
751 * For driver internal use only also supports these flags:
753 * USE_REAL_VBLANKSTART to use the real start of vblank instead
754 * of a fudged earlier start of vblank.
756 * GET_DISTANCE_TO_VBLANKSTART to return distance to the
757 * fudged earlier start of vblank in *vpos and the distance
758 * to true start of vblank in *hpos.
760 * \param *vpos Location where vertical scanout position should be stored.
761 * \param *hpos Location where horizontal scanout position should go.
762 * \param *stime Target location for timestamp taken immediately before
763 * scanout position query. Can be NULL to skip timestamp.
764 * \param *etime Target location for timestamp taken immediately after
765 * scanout position query. Can be NULL to skip timestamp.
767 * Returns vpos as a positive number while in active scanout area.
768 * Returns vpos as a negative number inside vblank, counting the number
769 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
770 * until start of active scanout / end of vblank."
772 * \return Flags, or'ed together as follows:
774 * DRM_SCANOUTPOS_VALID = Query successful.
775 * DRM_SCANOUTPOS_INVBL = Inside vblank.
776 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
777 * this flag means that returned position may be offset by a constant but
778 * unknown small number of scanlines wrt. real scanout position.
781 int amdgpu_display_get_crtc_scanoutpos(struct drm_device *dev,
782 unsigned int pipe, unsigned int flags, int *vpos,
783 int *hpos, ktime_t *stime, ktime_t *etime,
784 const struct drm_display_mode *mode)
786 u32 vbl = 0, position = 0;
787 int vbl_start, vbl_end, vtotal, ret = 0;
790 struct amdgpu_device *adev = dev->dev_private;
792 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
794 /* Get optional system timestamp before query. */
796 *stime = ktime_get();
798 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0)
799 ret |= DRM_SCANOUTPOS_VALID;
801 /* Get optional system timestamp after query. */
803 *etime = ktime_get();
805 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
807 /* Decode into vertical and horizontal scanout position. */
808 *vpos = position & 0x1fff;
809 *hpos = (position >> 16) & 0x1fff;
811 /* Valid vblank area boundaries from gpu retrieved? */
814 ret |= DRM_SCANOUTPOS_ACCURATE;
815 vbl_start = vbl & 0x1fff;
816 vbl_end = (vbl >> 16) & 0x1fff;
819 /* No: Fake something reasonable which gives at least ok results. */
820 vbl_start = mode->crtc_vdisplay;
824 /* Called from driver internal vblank counter query code? */
825 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
826 /* Caller wants distance from real vbl_start in *hpos */
827 *hpos = *vpos - vbl_start;
830 /* Fudge vblank to start a few scanlines earlier to handle the
831 * problem that vblank irqs fire a few scanlines before start
832 * of vblank. Some driver internal callers need the true vblank
833 * start to be used and signal this via the USE_REAL_VBLANKSTART flag.
835 * The cause of the "early" vblank irq is that the irq is triggered
836 * by the line buffer logic when the line buffer read position enters
837 * the vblank, whereas our crtc scanout position naturally lags the
838 * line buffer read position.
840 if (!(flags & USE_REAL_VBLANKSTART))
841 vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines;
843 /* Test scanout position against vblank region. */
844 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
849 ret |= DRM_SCANOUTPOS_IN_VBLANK;
851 /* Called from driver internal vblank counter query code? */
852 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
853 /* Caller wants distance from fudged earlier vbl_start */
858 /* Check if inside vblank area and apply corrective offsets:
859 * vpos will then be >=0 in video scanout area, but negative
860 * within vblank area, counting down the number of lines until
864 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
865 if (in_vbl && (*vpos >= vbl_start)) {
866 vtotal = mode->crtc_vtotal;
868 /* With variable refresh rate displays the vpos can exceed
869 * the vtotal value. Clamp to 0 to return -vbl_end instead
870 * of guessing the remaining number of lines until scanout.
872 *vpos = (*vpos < vtotal) ? (*vpos - vtotal) : 0;
875 /* Correct for shifted end of vbl at vbl_end. */
876 *vpos = *vpos - vbl_end;
881 int amdgpu_display_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc)
883 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
884 return AMDGPU_CRTC_IRQ_NONE;
888 return AMDGPU_CRTC_IRQ_VBLANK1;
890 return AMDGPU_CRTC_IRQ_VBLANK2;
892 return AMDGPU_CRTC_IRQ_VBLANK3;
894 return AMDGPU_CRTC_IRQ_VBLANK4;
896 return AMDGPU_CRTC_IRQ_VBLANK5;
898 return AMDGPU_CRTC_IRQ_VBLANK6;
900 return AMDGPU_CRTC_IRQ_NONE;