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 <asm/div64.h>
34 #include <linux/pm_runtime.h>
35 #include <drm/drm_crtc_helper.h>
36 #include <drm/drm_edid.h>
38 static void amdgpu_flip_wait_fence(struct amdgpu_device *adev,
41 struct amdgpu_fence *fence;
47 fence = to_amdgpu_fence(*f);
49 r = fence_wait(&fence->base, false);
51 r = amdgpu_gpu_reset(adev);
53 r = fence_wait(*f, false);
56 DRM_ERROR("failed to wait on page flip fence (%ld)!\n", r);
58 /* We continue with the page flip even if we failed to wait on
59 * the fence, otherwise the DRM core and userspace will be
60 * confused about which BO the CRTC is scanning out
66 static void amdgpu_flip_work_func(struct work_struct *__work)
68 struct amdgpu_flip_work *work =
69 container_of(__work, struct amdgpu_flip_work, flip_work);
70 struct amdgpu_device *adev = work->adev;
71 struct amdgpu_crtc *amdgpuCrtc = adev->mode_info.crtcs[work->crtc_id];
73 struct drm_crtc *crtc = &amdgpuCrtc->base;
75 unsigned i, repcnt = 4;
76 int vpos, hpos, stat, min_udelay = 0;
77 struct drm_vblank_crtc *vblank = &crtc->dev->vblank[work->crtc_id];
79 amdgpu_flip_wait_fence(adev, &work->excl);
80 for (i = 0; i < work->shared_count; ++i)
81 amdgpu_flip_wait_fence(adev, &work->shared[i]);
83 /* We borrow the event spin lock for protecting flip_status */
84 spin_lock_irqsave(&crtc->dev->event_lock, flags);
86 /* If this happens to execute within the "virtually extended" vblank
87 * interval before the start of the real vblank interval then it needs
88 * to delay programming the mmio flip until the real vblank is entered.
89 * This prevents completing a flip too early due to the way we fudge
90 * our vblank counter and vblank timestamps in order to work around the
91 * problem that the hw fires vblank interrupts before actual start of
92 * vblank (when line buffer refilling is done for a frame). It
93 * complements the fudging logic in amdgpu_get_crtc_scanoutpos() for
94 * timestamping and amdgpu_get_vblank_counter_kms() for vblank counts.
96 * In practice this won't execute very often unless on very fast
97 * machines because the time window for this to happen is very small.
99 while (amdgpuCrtc->enabled && --repcnt) {
100 /* GET_DISTANCE_TO_VBLANKSTART returns distance to real vblank
101 * start in hpos, and to the "fudged earlier" vblank start in
104 stat = amdgpu_get_crtc_scanoutpos(adev->ddev, work->crtc_id,
105 GET_DISTANCE_TO_VBLANKSTART,
106 &vpos, &hpos, NULL, NULL,
109 if ((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
110 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE) ||
111 !(vpos >= 0 && hpos <= 0))
114 /* Sleep at least until estimated real start of hw vblank */
115 min_udelay = (-hpos + 1) * max(vblank->linedur_ns / 1000, 5);
116 if (min_udelay > vblank->framedur_ns / 2000) {
117 /* Don't wait ridiculously long - something is wrong */
121 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
122 usleep_range(min_udelay, 2 * min_udelay);
123 spin_lock_irqsave(&crtc->dev->event_lock, flags);
127 DRM_DEBUG_DRIVER("Delay problem on crtc %d: min_udelay %d, "
128 "framedur %d, linedur %d, stat %d, vpos %d, "
129 "hpos %d\n", work->crtc_id, min_udelay,
130 vblank->framedur_ns / 1000,
131 vblank->linedur_ns / 1000, stat, vpos, hpos);
133 /* do the flip (mmio) */
134 adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base);
135 /* set the flip status */
136 amdgpuCrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
138 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
142 * Handle unpin events outside the interrupt handler proper.
144 static void amdgpu_unpin_work_func(struct work_struct *__work)
146 struct amdgpu_flip_work *work =
147 container_of(__work, struct amdgpu_flip_work, unpin_work);
150 /* unpin of the old buffer */
151 r = amdgpu_bo_reserve(work->old_rbo, false);
152 if (likely(r == 0)) {
153 r = amdgpu_bo_unpin(work->old_rbo);
154 if (unlikely(r != 0)) {
155 DRM_ERROR("failed to unpin buffer after flip\n");
157 amdgpu_bo_unreserve(work->old_rbo);
159 DRM_ERROR("failed to reserve buffer after flip\n");
161 amdgpu_bo_unref(&work->old_rbo);
166 int amdgpu_crtc_page_flip(struct drm_crtc *crtc,
167 struct drm_framebuffer *fb,
168 struct drm_pending_vblank_event *event,
169 uint32_t page_flip_flags)
171 struct drm_device *dev = crtc->dev;
172 struct amdgpu_device *adev = dev->dev_private;
173 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
174 struct amdgpu_framebuffer *old_amdgpu_fb;
175 struct amdgpu_framebuffer *new_amdgpu_fb;
176 struct drm_gem_object *obj;
177 struct amdgpu_flip_work *work;
178 struct amdgpu_bo *new_rbo;
184 work = kzalloc(sizeof *work, GFP_KERNEL);
188 INIT_WORK(&work->flip_work, amdgpu_flip_work_func);
189 INIT_WORK(&work->unpin_work, amdgpu_unpin_work_func);
193 work->crtc_id = amdgpu_crtc->crtc_id;
195 /* schedule unpin of the old buffer */
196 old_amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb);
197 obj = old_amdgpu_fb->obj;
199 /* take a reference to the old object */
200 work->old_rbo = gem_to_amdgpu_bo(obj);
201 amdgpu_bo_ref(work->old_rbo);
203 new_amdgpu_fb = to_amdgpu_framebuffer(fb);
204 obj = new_amdgpu_fb->obj;
205 new_rbo = gem_to_amdgpu_bo(obj);
207 /* pin the new buffer */
208 r = amdgpu_bo_reserve(new_rbo, false);
209 if (unlikely(r != 0)) {
210 DRM_ERROR("failed to reserve new rbo buffer before flip\n");
214 r = amdgpu_bo_pin_restricted(new_rbo, AMDGPU_GEM_DOMAIN_VRAM, 0, 0, &base);
215 if (unlikely(r != 0)) {
216 amdgpu_bo_unreserve(new_rbo);
218 DRM_ERROR("failed to pin new rbo buffer before flip\n");
222 r = reservation_object_get_fences_rcu(new_rbo->tbo.resv, &work->excl,
225 if (unlikely(r != 0)) {
226 amdgpu_bo_unreserve(new_rbo);
227 DRM_ERROR("failed to get fences for buffer\n");
231 amdgpu_bo_get_tiling_flags(new_rbo, &tiling_flags);
232 amdgpu_bo_unreserve(new_rbo);
236 r = drm_vblank_get(crtc->dev, amdgpu_crtc->crtc_id);
238 DRM_ERROR("failed to get vblank before flip\n");
242 /* we borrow the event spin lock for protecting flip_wrok */
243 spin_lock_irqsave(&crtc->dev->event_lock, flags);
244 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_NONE) {
245 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
246 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
251 amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING;
252 amdgpu_crtc->pflip_works = work;
255 crtc->primary->fb = fb;
256 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
257 queue_work(amdgpu_crtc->pflip_queue, &work->flip_work);
261 drm_vblank_put(crtc->dev, amdgpu_crtc->crtc_id);
264 if (unlikely(amdgpu_bo_reserve(new_rbo, false) != 0)) {
265 DRM_ERROR("failed to reserve new rbo in error path\n");
268 if (unlikely(amdgpu_bo_unpin(new_rbo) != 0)) {
269 DRM_ERROR("failed to unpin new rbo in error path\n");
271 amdgpu_bo_unreserve(new_rbo);
274 amdgpu_bo_unref(&work->old_rbo);
275 fence_put(work->excl);
276 for (i = 0; i < work->shared_count; ++i)
277 fence_put(work->shared[i]);
284 int amdgpu_crtc_set_config(struct drm_mode_set *set)
286 struct drm_device *dev;
287 struct amdgpu_device *adev;
288 struct drm_crtc *crtc;
292 if (!set || !set->crtc)
295 dev = set->crtc->dev;
297 ret = pm_runtime_get_sync(dev->dev);
301 ret = drm_crtc_helper_set_config(set);
303 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
307 pm_runtime_mark_last_busy(dev->dev);
309 adev = dev->dev_private;
310 /* if we have active crtcs and we don't have a power ref,
311 take the current one */
312 if (active && !adev->have_disp_power_ref) {
313 adev->have_disp_power_ref = true;
316 /* if we have no active crtcs, then drop the power ref
318 if (!active && adev->have_disp_power_ref) {
319 pm_runtime_put_autosuspend(dev->dev);
320 adev->have_disp_power_ref = false;
323 /* drop the power reference we got coming in here */
324 pm_runtime_put_autosuspend(dev->dev);
328 static const char *encoder_names[38] = {
348 "INTERNAL_KLDSCP_TMDS1",
349 "INTERNAL_KLDSCP_DVO1",
350 "INTERNAL_KLDSCP_DAC1",
351 "INTERNAL_KLDSCP_DAC2",
360 "INTERNAL_KLDSCP_LVTMA",
369 static const char *hpd_names[6] = {
378 void amdgpu_print_display_setup(struct drm_device *dev)
380 struct drm_connector *connector;
381 struct amdgpu_connector *amdgpu_connector;
382 struct drm_encoder *encoder;
383 struct amdgpu_encoder *amdgpu_encoder;
387 DRM_INFO("AMDGPU Display Connectors\n");
388 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
389 amdgpu_connector = to_amdgpu_connector(connector);
390 DRM_INFO("Connector %d:\n", i);
391 DRM_INFO(" %s\n", connector->name);
392 if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE)
393 DRM_INFO(" %s\n", hpd_names[amdgpu_connector->hpd.hpd]);
394 if (amdgpu_connector->ddc_bus) {
395 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
396 amdgpu_connector->ddc_bus->rec.mask_clk_reg,
397 amdgpu_connector->ddc_bus->rec.mask_data_reg,
398 amdgpu_connector->ddc_bus->rec.a_clk_reg,
399 amdgpu_connector->ddc_bus->rec.a_data_reg,
400 amdgpu_connector->ddc_bus->rec.en_clk_reg,
401 amdgpu_connector->ddc_bus->rec.en_data_reg,
402 amdgpu_connector->ddc_bus->rec.y_clk_reg,
403 amdgpu_connector->ddc_bus->rec.y_data_reg);
404 if (amdgpu_connector->router.ddc_valid)
405 DRM_INFO(" DDC Router 0x%x/0x%x\n",
406 amdgpu_connector->router.ddc_mux_control_pin,
407 amdgpu_connector->router.ddc_mux_state);
408 if (amdgpu_connector->router.cd_valid)
409 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
410 amdgpu_connector->router.cd_mux_control_pin,
411 amdgpu_connector->router.cd_mux_state);
413 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
414 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
415 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
416 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
417 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
418 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
421 DRM_INFO(" Encoders:\n");
422 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
423 amdgpu_encoder = to_amdgpu_encoder(encoder);
424 devices = amdgpu_encoder->devices & amdgpu_connector->devices;
426 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
427 DRM_INFO(" CRT1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
428 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
429 DRM_INFO(" CRT2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
430 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
431 DRM_INFO(" LCD1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
432 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
433 DRM_INFO(" DFP1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
434 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
435 DRM_INFO(" DFP2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
436 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
437 DRM_INFO(" DFP3: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
438 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
439 DRM_INFO(" DFP4: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
440 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
441 DRM_INFO(" DFP5: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
442 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
443 DRM_INFO(" DFP6: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
444 if (devices & ATOM_DEVICE_TV1_SUPPORT)
445 DRM_INFO(" TV1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
446 if (devices & ATOM_DEVICE_CV_SUPPORT)
447 DRM_INFO(" CV: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
458 bool amdgpu_ddc_probe(struct amdgpu_connector *amdgpu_connector,
464 struct i2c_msg msgs[] = {
479 /* on hw with routers, select right port */
480 if (amdgpu_connector->router.ddc_valid)
481 amdgpu_i2c_router_select_ddc_port(amdgpu_connector);
484 ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2);
486 ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2);
490 /* Couldn't find an accessible DDC on this connector */
492 /* Probe also for valid EDID header
493 * EDID header starts with:
494 * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00.
495 * Only the first 6 bytes must be valid as
496 * drm_edid_block_valid() can fix the last 2 bytes */
497 if (drm_edid_header_is_valid(buf) < 6) {
498 /* Couldn't find an accessible EDID on this
505 static void amdgpu_user_framebuffer_destroy(struct drm_framebuffer *fb)
507 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
509 if (amdgpu_fb->obj) {
510 drm_gem_object_unreference_unlocked(amdgpu_fb->obj);
512 drm_framebuffer_cleanup(fb);
516 static int amdgpu_user_framebuffer_create_handle(struct drm_framebuffer *fb,
517 struct drm_file *file_priv,
518 unsigned int *handle)
520 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
522 return drm_gem_handle_create(file_priv, amdgpu_fb->obj, handle);
525 static const struct drm_framebuffer_funcs amdgpu_fb_funcs = {
526 .destroy = amdgpu_user_framebuffer_destroy,
527 .create_handle = amdgpu_user_framebuffer_create_handle,
531 amdgpu_framebuffer_init(struct drm_device *dev,
532 struct amdgpu_framebuffer *rfb,
533 const struct drm_mode_fb_cmd2 *mode_cmd,
534 struct drm_gem_object *obj)
538 drm_helper_mode_fill_fb_struct(&rfb->base, mode_cmd);
539 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
547 static struct drm_framebuffer *
548 amdgpu_user_framebuffer_create(struct drm_device *dev,
549 struct drm_file *file_priv,
550 const struct drm_mode_fb_cmd2 *mode_cmd)
552 struct drm_gem_object *obj;
553 struct amdgpu_framebuffer *amdgpu_fb;
556 obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]);
558 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
559 "can't create framebuffer\n", mode_cmd->handles[0]);
560 return ERR_PTR(-ENOENT);
563 amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL);
564 if (amdgpu_fb == NULL) {
565 drm_gem_object_unreference_unlocked(obj);
566 return ERR_PTR(-ENOMEM);
569 ret = amdgpu_framebuffer_init(dev, amdgpu_fb, mode_cmd, obj);
572 drm_gem_object_unreference_unlocked(obj);
576 return &amdgpu_fb->base;
579 static void amdgpu_output_poll_changed(struct drm_device *dev)
581 struct amdgpu_device *adev = dev->dev_private;
582 amdgpu_fb_output_poll_changed(adev);
585 const struct drm_mode_config_funcs amdgpu_mode_funcs = {
586 .fb_create = amdgpu_user_framebuffer_create,
587 .output_poll_changed = amdgpu_output_poll_changed
590 static struct drm_prop_enum_list amdgpu_underscan_enum_list[] =
591 { { UNDERSCAN_OFF, "off" },
592 { UNDERSCAN_ON, "on" },
593 { UNDERSCAN_AUTO, "auto" },
596 static struct drm_prop_enum_list amdgpu_audio_enum_list[] =
597 { { AMDGPU_AUDIO_DISABLE, "off" },
598 { AMDGPU_AUDIO_ENABLE, "on" },
599 { AMDGPU_AUDIO_AUTO, "auto" },
602 /* XXX support different dither options? spatial, temporal, both, etc. */
603 static struct drm_prop_enum_list amdgpu_dither_enum_list[] =
604 { { AMDGPU_FMT_DITHER_DISABLE, "off" },
605 { AMDGPU_FMT_DITHER_ENABLE, "on" },
608 int amdgpu_modeset_create_props(struct amdgpu_device *adev)
612 if (adev->is_atom_bios) {
613 adev->mode_info.coherent_mode_property =
614 drm_property_create_range(adev->ddev, 0 , "coherent", 0, 1);
615 if (!adev->mode_info.coherent_mode_property)
619 adev->mode_info.load_detect_property =
620 drm_property_create_range(adev->ddev, 0, "load detection", 0, 1);
621 if (!adev->mode_info.load_detect_property)
624 drm_mode_create_scaling_mode_property(adev->ddev);
626 sz = ARRAY_SIZE(amdgpu_underscan_enum_list);
627 adev->mode_info.underscan_property =
628 drm_property_create_enum(adev->ddev, 0,
630 amdgpu_underscan_enum_list, sz);
632 adev->mode_info.underscan_hborder_property =
633 drm_property_create_range(adev->ddev, 0,
634 "underscan hborder", 0, 128);
635 if (!adev->mode_info.underscan_hborder_property)
638 adev->mode_info.underscan_vborder_property =
639 drm_property_create_range(adev->ddev, 0,
640 "underscan vborder", 0, 128);
641 if (!adev->mode_info.underscan_vborder_property)
644 sz = ARRAY_SIZE(amdgpu_audio_enum_list);
645 adev->mode_info.audio_property =
646 drm_property_create_enum(adev->ddev, 0,
648 amdgpu_audio_enum_list, sz);
650 sz = ARRAY_SIZE(amdgpu_dither_enum_list);
651 adev->mode_info.dither_property =
652 drm_property_create_enum(adev->ddev, 0,
654 amdgpu_dither_enum_list, sz);
659 void amdgpu_update_display_priority(struct amdgpu_device *adev)
661 /* adjustment options for the display watermarks */
662 if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2))
663 adev->mode_info.disp_priority = 0;
665 adev->mode_info.disp_priority = amdgpu_disp_priority;
669 static bool is_hdtv_mode(const struct drm_display_mode *mode)
671 /* try and guess if this is a tv or a monitor */
672 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
673 (mode->vdisplay == 576) || /* 576p */
674 (mode->vdisplay == 720) || /* 720p */
675 (mode->vdisplay == 1080)) /* 1080p */
681 bool amdgpu_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
682 const struct drm_display_mode *mode,
683 struct drm_display_mode *adjusted_mode)
685 struct drm_device *dev = crtc->dev;
686 struct drm_encoder *encoder;
687 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
688 struct amdgpu_encoder *amdgpu_encoder;
689 struct drm_connector *connector;
690 struct amdgpu_connector *amdgpu_connector;
691 u32 src_v = 1, dst_v = 1;
692 u32 src_h = 1, dst_h = 1;
694 amdgpu_crtc->h_border = 0;
695 amdgpu_crtc->v_border = 0;
697 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
698 if (encoder->crtc != crtc)
700 amdgpu_encoder = to_amdgpu_encoder(encoder);
701 connector = amdgpu_get_connector_for_encoder(encoder);
702 amdgpu_connector = to_amdgpu_connector(connector);
705 if (amdgpu_encoder->rmx_type == RMX_OFF)
706 amdgpu_crtc->rmx_type = RMX_OFF;
707 else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay ||
708 mode->vdisplay < amdgpu_encoder->native_mode.vdisplay)
709 amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type;
711 amdgpu_crtc->rmx_type = RMX_OFF;
712 /* copy native mode */
713 memcpy(&amdgpu_crtc->native_mode,
714 &amdgpu_encoder->native_mode,
715 sizeof(struct drm_display_mode));
716 src_v = crtc->mode.vdisplay;
717 dst_v = amdgpu_crtc->native_mode.vdisplay;
718 src_h = crtc->mode.hdisplay;
719 dst_h = amdgpu_crtc->native_mode.hdisplay;
721 /* fix up for overscan on hdmi */
722 if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
723 ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) ||
724 ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) &&
725 drm_detect_hdmi_monitor(amdgpu_connector_edid(connector)) &&
726 is_hdtv_mode(mode)))) {
727 if (amdgpu_encoder->underscan_hborder != 0)
728 amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder;
730 amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16;
731 if (amdgpu_encoder->underscan_vborder != 0)
732 amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder;
734 amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16;
735 amdgpu_crtc->rmx_type = RMX_FULL;
736 src_v = crtc->mode.vdisplay;
737 dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2);
738 src_h = crtc->mode.hdisplay;
739 dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2);
742 if (amdgpu_crtc->rmx_type != RMX_OFF) {
744 a.full = dfixed_const(src_v);
745 b.full = dfixed_const(dst_v);
746 amdgpu_crtc->vsc.full = dfixed_div(a, b);
747 a.full = dfixed_const(src_h);
748 b.full = dfixed_const(dst_h);
749 amdgpu_crtc->hsc.full = dfixed_div(a, b);
751 amdgpu_crtc->vsc.full = dfixed_const(1);
752 amdgpu_crtc->hsc.full = dfixed_const(1);
758 * Retrieve current video scanout position of crtc on a given gpu, and
759 * an optional accurate timestamp of when query happened.
761 * \param dev Device to query.
762 * \param pipe Crtc to query.
763 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
764 * For driver internal use only also supports these flags:
766 * USE_REAL_VBLANKSTART to use the real start of vblank instead
767 * of a fudged earlier start of vblank.
769 * GET_DISTANCE_TO_VBLANKSTART to return distance to the
770 * fudged earlier start of vblank in *vpos and the distance
771 * to true start of vblank in *hpos.
773 * \param *vpos Location where vertical scanout position should be stored.
774 * \param *hpos Location where horizontal scanout position should go.
775 * \param *stime Target location for timestamp taken immediately before
776 * scanout position query. Can be NULL to skip timestamp.
777 * \param *etime Target location for timestamp taken immediately after
778 * scanout position query. Can be NULL to skip timestamp.
780 * Returns vpos as a positive number while in active scanout area.
781 * Returns vpos as a negative number inside vblank, counting the number
782 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
783 * until start of active scanout / end of vblank."
785 * \return Flags, or'ed together as follows:
787 * DRM_SCANOUTPOS_VALID = Query successful.
788 * DRM_SCANOUTPOS_INVBL = Inside vblank.
789 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
790 * this flag means that returned position may be offset by a constant but
791 * unknown small number of scanlines wrt. real scanout position.
794 int amdgpu_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
795 unsigned int flags, int *vpos, int *hpos,
796 ktime_t *stime, ktime_t *etime,
797 const struct drm_display_mode *mode)
799 u32 vbl = 0, position = 0;
800 int vbl_start, vbl_end, vtotal, ret = 0;
803 struct amdgpu_device *adev = dev->dev_private;
805 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
807 /* Get optional system timestamp before query. */
809 *stime = ktime_get();
811 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0)
812 ret |= DRM_SCANOUTPOS_VALID;
814 /* Get optional system timestamp after query. */
816 *etime = ktime_get();
818 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
820 /* Decode into vertical and horizontal scanout position. */
821 *vpos = position & 0x1fff;
822 *hpos = (position >> 16) & 0x1fff;
824 /* Valid vblank area boundaries from gpu retrieved? */
827 ret |= DRM_SCANOUTPOS_ACCURATE;
828 vbl_start = vbl & 0x1fff;
829 vbl_end = (vbl >> 16) & 0x1fff;
832 /* No: Fake something reasonable which gives at least ok results. */
833 vbl_start = mode->crtc_vdisplay;
837 /* Called from driver internal vblank counter query code? */
838 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
839 /* Caller wants distance from real vbl_start in *hpos */
840 *hpos = *vpos - vbl_start;
843 /* Fudge vblank to start a few scanlines earlier to handle the
844 * problem that vblank irqs fire a few scanlines before start
845 * of vblank. Some driver internal callers need the true vblank
846 * start to be used and signal this via the USE_REAL_VBLANKSTART flag.
848 * The cause of the "early" vblank irq is that the irq is triggered
849 * by the line buffer logic when the line buffer read position enters
850 * the vblank, whereas our crtc scanout position naturally lags the
851 * line buffer read position.
853 if (!(flags & USE_REAL_VBLANKSTART))
854 vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines;
856 /* Test scanout position against vblank region. */
857 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
862 ret |= DRM_SCANOUTPOS_IN_VBLANK;
864 /* Called from driver internal vblank counter query code? */
865 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
866 /* Caller wants distance from fudged earlier vbl_start */
871 /* Check if inside vblank area and apply corrective offsets:
872 * vpos will then be >=0 in video scanout area, but negative
873 * within vblank area, counting down the number of lines until
877 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
878 if (in_vbl && (*vpos >= vbl_start)) {
879 vtotal = mode->crtc_vtotal;
880 *vpos = *vpos - vtotal;
883 /* Correct for shifted end of vbl at vbl_end. */
884 *vpos = *vpos - vbl_end;
889 int amdgpu_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc)
891 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
892 return AMDGPU_CRTC_IRQ_NONE;
896 return AMDGPU_CRTC_IRQ_VBLANK1;
898 return AMDGPU_CRTC_IRQ_VBLANK2;
900 return AMDGPU_CRTC_IRQ_VBLANK3;
902 return AMDGPU_CRTC_IRQ_VBLANK4;
904 return AMDGPU_CRTC_IRQ_VBLANK5;
906 return AMDGPU_CRTC_IRQ_VBLANK6;
908 return AMDGPU_CRTC_IRQ_NONE;