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_callback(struct fence *f, struct fence_cb *cb)
40 struct amdgpu_flip_work *work =
41 container_of(cb, struct amdgpu_flip_work, cb);
44 schedule_work(&work->flip_work.work);
47 static bool amdgpu_flip_handle_fence(struct amdgpu_flip_work *work,
50 struct fence *fence= *f;
57 if (!fence_add_callback(fence, &work->cb, amdgpu_flip_callback))
64 static void amdgpu_flip_work_func(struct work_struct *__work)
66 struct delayed_work *delayed_work =
67 container_of(__work, struct delayed_work, work);
68 struct amdgpu_flip_work *work =
69 container_of(delayed_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;
78 if (amdgpu_flip_handle_fence(work, &work->excl))
81 for (i = 0; i < work->shared_count; ++i)
82 if (amdgpu_flip_handle_fence(work, &work->shared[i]))
85 /* Wait until we're out of the vertical blank period before the one
86 * targeted by the flip
88 if (amdgpuCrtc->enabled &&
89 (amdgpu_get_crtc_scanoutpos(adev->ddev, work->crtc_id, 0,
90 &vpos, &hpos, NULL, NULL,
92 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
93 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
94 (int)(work->target_vblank -
95 amdgpu_get_vblank_counter_kms(adev->ddev, amdgpuCrtc->crtc_id)) > 0) {
96 schedule_delayed_work(&work->flip_work, usecs_to_jiffies(1000));
100 /* We borrow the event spin lock for protecting flip_status */
101 spin_lock_irqsave(&crtc->dev->event_lock, flags);
103 /* Do the flip (mmio) */
104 adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base, work->async);
106 /* Set the flip status */
107 amdgpuCrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
108 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
111 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_SUBMITTED, work: %p,\n",
112 amdgpuCrtc->crtc_id, amdgpuCrtc, work);
117 * Handle unpin events outside the interrupt handler proper.
119 static void amdgpu_unpin_work_func(struct work_struct *__work)
121 struct amdgpu_flip_work *work =
122 container_of(__work, struct amdgpu_flip_work, unpin_work);
125 /* unpin of the old buffer */
126 r = amdgpu_bo_reserve(work->old_abo, false);
127 if (likely(r == 0)) {
128 r = amdgpu_bo_unpin(work->old_abo);
129 if (unlikely(r != 0)) {
130 DRM_ERROR("failed to unpin buffer after flip\n");
132 amdgpu_bo_unreserve(work->old_abo);
134 DRM_ERROR("failed to reserve buffer after flip\n");
136 amdgpu_bo_unref(&work->old_abo);
141 int amdgpu_crtc_page_flip_target(struct drm_crtc *crtc,
142 struct drm_framebuffer *fb,
143 struct drm_pending_vblank_event *event,
144 uint32_t page_flip_flags, uint32_t target)
146 struct drm_device *dev = crtc->dev;
147 struct amdgpu_device *adev = dev->dev_private;
148 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
149 struct amdgpu_framebuffer *old_amdgpu_fb;
150 struct amdgpu_framebuffer *new_amdgpu_fb;
151 struct drm_gem_object *obj;
152 struct amdgpu_flip_work *work;
153 struct amdgpu_bo *new_abo;
159 work = kzalloc(sizeof *work, GFP_KERNEL);
163 INIT_DELAYED_WORK(&work->flip_work, amdgpu_flip_work_func);
164 INIT_WORK(&work->unpin_work, amdgpu_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 old_amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb);
173 obj = old_amdgpu_fb->obj;
175 /* take a reference to the old object */
176 work->old_abo = gem_to_amdgpu_bo(obj);
177 amdgpu_bo_ref(work->old_abo);
179 new_amdgpu_fb = to_amdgpu_framebuffer(fb);
180 obj = new_amdgpu_fb->obj;
181 new_abo = gem_to_amdgpu_bo(obj);
183 /* pin the new buffer */
184 r = amdgpu_bo_reserve(new_abo, false);
185 if (unlikely(r != 0)) {
186 DRM_ERROR("failed to reserve new abo buffer before flip\n");
190 r = amdgpu_bo_pin_restricted(new_abo, AMDGPU_GEM_DOMAIN_VRAM, 0, 0, &base);
191 if (unlikely(r != 0)) {
193 DRM_ERROR("failed to pin new abo buffer before flip\n");
197 r = reservation_object_get_fences_rcu(new_abo->tbo.resv, &work->excl,
200 if (unlikely(r != 0)) {
201 DRM_ERROR("failed to get fences for buffer\n");
205 amdgpu_bo_get_tiling_flags(new_abo, &tiling_flags);
206 amdgpu_bo_unreserve(new_abo);
209 work->target_vblank = target - drm_crtc_vblank_count(crtc) +
210 amdgpu_get_vblank_counter_kms(dev, work->crtc_id);
212 /* we borrow the event spin lock for protecting flip_wrok */
213 spin_lock_irqsave(&crtc->dev->event_lock, flags);
214 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_NONE) {
215 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
216 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
221 amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING;
222 amdgpu_crtc->pflip_works = work;
225 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_PENDING, work: %p,\n",
226 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
228 crtc->primary->fb = fb;
229 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
230 amdgpu_flip_work_func(&work->flip_work.work);
234 if (unlikely(amdgpu_bo_reserve(new_abo, false) != 0)) {
235 DRM_ERROR("failed to reserve new abo in error path\n");
239 if (unlikely(amdgpu_bo_unpin(new_abo) != 0)) {
240 DRM_ERROR("failed to unpin new abo in error path\n");
243 amdgpu_bo_unreserve(new_abo);
246 amdgpu_bo_unref(&work->old_abo);
247 fence_put(work->excl);
248 for (i = 0; i < work->shared_count; ++i)
249 fence_put(work->shared[i]);
256 int amdgpu_crtc_set_config(struct drm_mode_set *set)
258 struct drm_device *dev;
259 struct amdgpu_device *adev;
260 struct drm_crtc *crtc;
264 if (!set || !set->crtc)
267 dev = set->crtc->dev;
269 ret = pm_runtime_get_sync(dev->dev);
273 ret = drm_crtc_helper_set_config(set);
275 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
279 pm_runtime_mark_last_busy(dev->dev);
281 adev = dev->dev_private;
282 /* if we have active crtcs and we don't have a power ref,
283 take the current one */
284 if (active && !adev->have_disp_power_ref) {
285 adev->have_disp_power_ref = true;
288 /* if we have no active crtcs, then drop the power ref
290 if (!active && adev->have_disp_power_ref) {
291 pm_runtime_put_autosuspend(dev->dev);
292 adev->have_disp_power_ref = false;
296 /* drop the power reference we got coming in here */
297 pm_runtime_put_autosuspend(dev->dev);
301 static const char *encoder_names[41] = {
321 "INTERNAL_KLDSCP_TMDS1",
322 "INTERNAL_KLDSCP_DVO1",
323 "INTERNAL_KLDSCP_DAC1",
324 "INTERNAL_KLDSCP_DAC2",
333 "INTERNAL_KLDSCP_LVTMA",
345 static const char *hpd_names[6] = {
354 void amdgpu_print_display_setup(struct drm_device *dev)
356 struct drm_connector *connector;
357 struct amdgpu_connector *amdgpu_connector;
358 struct drm_encoder *encoder;
359 struct amdgpu_encoder *amdgpu_encoder;
363 DRM_INFO("AMDGPU Display Connectors\n");
364 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
365 amdgpu_connector = to_amdgpu_connector(connector);
366 DRM_INFO("Connector %d:\n", i);
367 DRM_INFO(" %s\n", connector->name);
368 if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE)
369 DRM_INFO(" %s\n", hpd_names[amdgpu_connector->hpd.hpd]);
370 if (amdgpu_connector->ddc_bus) {
371 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
372 amdgpu_connector->ddc_bus->rec.mask_clk_reg,
373 amdgpu_connector->ddc_bus->rec.mask_data_reg,
374 amdgpu_connector->ddc_bus->rec.a_clk_reg,
375 amdgpu_connector->ddc_bus->rec.a_data_reg,
376 amdgpu_connector->ddc_bus->rec.en_clk_reg,
377 amdgpu_connector->ddc_bus->rec.en_data_reg,
378 amdgpu_connector->ddc_bus->rec.y_clk_reg,
379 amdgpu_connector->ddc_bus->rec.y_data_reg);
380 if (amdgpu_connector->router.ddc_valid)
381 DRM_INFO(" DDC Router 0x%x/0x%x\n",
382 amdgpu_connector->router.ddc_mux_control_pin,
383 amdgpu_connector->router.ddc_mux_state);
384 if (amdgpu_connector->router.cd_valid)
385 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
386 amdgpu_connector->router.cd_mux_control_pin,
387 amdgpu_connector->router.cd_mux_state);
389 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
390 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
391 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
392 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
393 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
394 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
395 DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n");
397 DRM_INFO(" Encoders:\n");
398 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
399 amdgpu_encoder = to_amdgpu_encoder(encoder);
400 devices = amdgpu_encoder->devices & amdgpu_connector->devices;
402 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
403 DRM_INFO(" CRT1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
404 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
405 DRM_INFO(" CRT2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
406 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
407 DRM_INFO(" LCD1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
408 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
409 DRM_INFO(" DFP1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
410 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
411 DRM_INFO(" DFP2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
412 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
413 DRM_INFO(" DFP3: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
414 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
415 DRM_INFO(" DFP4: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
416 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
417 DRM_INFO(" DFP5: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
418 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
419 DRM_INFO(" DFP6: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
420 if (devices & ATOM_DEVICE_TV1_SUPPORT)
421 DRM_INFO(" TV1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
422 if (devices & ATOM_DEVICE_CV_SUPPORT)
423 DRM_INFO(" CV: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
434 bool amdgpu_ddc_probe(struct amdgpu_connector *amdgpu_connector,
440 struct i2c_msg msgs[] = {
455 /* on hw with routers, select right port */
456 if (amdgpu_connector->router.ddc_valid)
457 amdgpu_i2c_router_select_ddc_port(amdgpu_connector);
460 ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2);
462 ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2);
466 /* Couldn't find an accessible DDC on this connector */
468 /* Probe also for valid EDID header
469 * EDID header starts with:
470 * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00.
471 * Only the first 6 bytes must be valid as
472 * drm_edid_block_valid() can fix the last 2 bytes */
473 if (drm_edid_header_is_valid(buf) < 6) {
474 /* Couldn't find an accessible EDID on this
481 static void amdgpu_user_framebuffer_destroy(struct drm_framebuffer *fb)
483 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
485 drm_gem_object_unreference_unlocked(amdgpu_fb->obj);
486 drm_framebuffer_cleanup(fb);
490 static int amdgpu_user_framebuffer_create_handle(struct drm_framebuffer *fb,
491 struct drm_file *file_priv,
492 unsigned int *handle)
494 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
496 return drm_gem_handle_create(file_priv, amdgpu_fb->obj, handle);
499 static const struct drm_framebuffer_funcs amdgpu_fb_funcs = {
500 .destroy = amdgpu_user_framebuffer_destroy,
501 .create_handle = amdgpu_user_framebuffer_create_handle,
505 amdgpu_framebuffer_init(struct drm_device *dev,
506 struct amdgpu_framebuffer *rfb,
507 const struct drm_mode_fb_cmd2 *mode_cmd,
508 struct drm_gem_object *obj)
512 drm_helper_mode_fill_fb_struct(&rfb->base, mode_cmd);
513 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
521 static struct drm_framebuffer *
522 amdgpu_user_framebuffer_create(struct drm_device *dev,
523 struct drm_file *file_priv,
524 const struct drm_mode_fb_cmd2 *mode_cmd)
526 struct drm_gem_object *obj;
527 struct amdgpu_framebuffer *amdgpu_fb;
530 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
532 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
533 "can't create framebuffer\n", mode_cmd->handles[0]);
534 return ERR_PTR(-ENOENT);
537 /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */
538 if (obj->import_attach) {
539 DRM_DEBUG_KMS("Cannot create framebuffer from imported dma_buf\n");
540 return ERR_PTR(-EINVAL);
543 amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL);
544 if (amdgpu_fb == NULL) {
545 drm_gem_object_unreference_unlocked(obj);
546 return ERR_PTR(-ENOMEM);
549 ret = amdgpu_framebuffer_init(dev, amdgpu_fb, mode_cmd, obj);
552 drm_gem_object_unreference_unlocked(obj);
556 return &amdgpu_fb->base;
559 static void amdgpu_output_poll_changed(struct drm_device *dev)
561 struct amdgpu_device *adev = dev->dev_private;
562 amdgpu_fb_output_poll_changed(adev);
565 const struct drm_mode_config_funcs amdgpu_mode_funcs = {
566 .fb_create = amdgpu_user_framebuffer_create,
567 .output_poll_changed = amdgpu_output_poll_changed
570 static const struct drm_prop_enum_list amdgpu_underscan_enum_list[] =
571 { { UNDERSCAN_OFF, "off" },
572 { UNDERSCAN_ON, "on" },
573 { UNDERSCAN_AUTO, "auto" },
576 static const struct drm_prop_enum_list amdgpu_audio_enum_list[] =
577 { { AMDGPU_AUDIO_DISABLE, "off" },
578 { AMDGPU_AUDIO_ENABLE, "on" },
579 { AMDGPU_AUDIO_AUTO, "auto" },
582 /* XXX support different dither options? spatial, temporal, both, etc. */
583 static const struct drm_prop_enum_list amdgpu_dither_enum_list[] =
584 { { AMDGPU_FMT_DITHER_DISABLE, "off" },
585 { AMDGPU_FMT_DITHER_ENABLE, "on" },
588 int amdgpu_modeset_create_props(struct amdgpu_device *adev)
592 if (adev->is_atom_bios) {
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)
599 adev->mode_info.load_detect_property =
600 drm_property_create_range(adev->ddev, 0, "load detection", 0, 1);
601 if (!adev->mode_info.load_detect_property)
604 drm_mode_create_scaling_mode_property(adev->ddev);
606 sz = ARRAY_SIZE(amdgpu_underscan_enum_list);
607 adev->mode_info.underscan_property =
608 drm_property_create_enum(adev->ddev, 0,
610 amdgpu_underscan_enum_list, sz);
612 adev->mode_info.underscan_hborder_property =
613 drm_property_create_range(adev->ddev, 0,
614 "underscan hborder", 0, 128);
615 if (!adev->mode_info.underscan_hborder_property)
618 adev->mode_info.underscan_vborder_property =
619 drm_property_create_range(adev->ddev, 0,
620 "underscan vborder", 0, 128);
621 if (!adev->mode_info.underscan_vborder_property)
624 sz = ARRAY_SIZE(amdgpu_audio_enum_list);
625 adev->mode_info.audio_property =
626 drm_property_create_enum(adev->ddev, 0,
628 amdgpu_audio_enum_list, sz);
630 sz = ARRAY_SIZE(amdgpu_dither_enum_list);
631 adev->mode_info.dither_property =
632 drm_property_create_enum(adev->ddev, 0,
634 amdgpu_dither_enum_list, sz);
639 void amdgpu_update_display_priority(struct amdgpu_device *adev)
641 /* adjustment options for the display watermarks */
642 if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2))
643 adev->mode_info.disp_priority = 0;
645 adev->mode_info.disp_priority = amdgpu_disp_priority;
649 static bool is_hdtv_mode(const struct drm_display_mode *mode)
651 /* try and guess if this is a tv or a monitor */
652 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
653 (mode->vdisplay == 576) || /* 576p */
654 (mode->vdisplay == 720) || /* 720p */
655 (mode->vdisplay == 1080)) /* 1080p */
661 bool amdgpu_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
662 const struct drm_display_mode *mode,
663 struct drm_display_mode *adjusted_mode)
665 struct drm_device *dev = crtc->dev;
666 struct drm_encoder *encoder;
667 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
668 struct amdgpu_encoder *amdgpu_encoder;
669 struct drm_connector *connector;
670 struct amdgpu_connector *amdgpu_connector;
671 u32 src_v = 1, dst_v = 1;
672 u32 src_h = 1, dst_h = 1;
674 amdgpu_crtc->h_border = 0;
675 amdgpu_crtc->v_border = 0;
677 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
678 if (encoder->crtc != crtc)
680 amdgpu_encoder = to_amdgpu_encoder(encoder);
681 connector = amdgpu_get_connector_for_encoder(encoder);
682 amdgpu_connector = to_amdgpu_connector(connector);
685 if (amdgpu_encoder->rmx_type == RMX_OFF)
686 amdgpu_crtc->rmx_type = RMX_OFF;
687 else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay ||
688 mode->vdisplay < amdgpu_encoder->native_mode.vdisplay)
689 amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type;
691 amdgpu_crtc->rmx_type = RMX_OFF;
692 /* copy native mode */
693 memcpy(&amdgpu_crtc->native_mode,
694 &amdgpu_encoder->native_mode,
695 sizeof(struct drm_display_mode));
696 src_v = crtc->mode.vdisplay;
697 dst_v = amdgpu_crtc->native_mode.vdisplay;
698 src_h = crtc->mode.hdisplay;
699 dst_h = amdgpu_crtc->native_mode.hdisplay;
701 /* fix up for overscan on hdmi */
702 if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
703 ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) ||
704 ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) &&
705 drm_detect_hdmi_monitor(amdgpu_connector_edid(connector)) &&
706 is_hdtv_mode(mode)))) {
707 if (amdgpu_encoder->underscan_hborder != 0)
708 amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder;
710 amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16;
711 if (amdgpu_encoder->underscan_vborder != 0)
712 amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder;
714 amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16;
715 amdgpu_crtc->rmx_type = RMX_FULL;
716 src_v = crtc->mode.vdisplay;
717 dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2);
718 src_h = crtc->mode.hdisplay;
719 dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2);
722 if (amdgpu_crtc->rmx_type != RMX_OFF) {
724 a.full = dfixed_const(src_v);
725 b.full = dfixed_const(dst_v);
726 amdgpu_crtc->vsc.full = dfixed_div(a, b);
727 a.full = dfixed_const(src_h);
728 b.full = dfixed_const(dst_h);
729 amdgpu_crtc->hsc.full = dfixed_div(a, b);
731 amdgpu_crtc->vsc.full = dfixed_const(1);
732 amdgpu_crtc->hsc.full = dfixed_const(1);
738 * Retrieve current video scanout position of crtc on a given gpu, and
739 * an optional accurate timestamp of when query happened.
741 * \param dev Device to query.
742 * \param pipe Crtc to query.
743 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
744 * For driver internal use only also supports these flags:
746 * USE_REAL_VBLANKSTART to use the real start of vblank instead
747 * of a fudged earlier start of vblank.
749 * GET_DISTANCE_TO_VBLANKSTART to return distance to the
750 * fudged earlier start of vblank in *vpos and the distance
751 * to true start of vblank in *hpos.
753 * \param *vpos Location where vertical scanout position should be stored.
754 * \param *hpos Location where horizontal scanout position should go.
755 * \param *stime Target location for timestamp taken immediately before
756 * scanout position query. Can be NULL to skip timestamp.
757 * \param *etime Target location for timestamp taken immediately after
758 * scanout position query. Can be NULL to skip timestamp.
760 * Returns vpos as a positive number while in active scanout area.
761 * Returns vpos as a negative number inside vblank, counting the number
762 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
763 * until start of active scanout / end of vblank."
765 * \return Flags, or'ed together as follows:
767 * DRM_SCANOUTPOS_VALID = Query successful.
768 * DRM_SCANOUTPOS_INVBL = Inside vblank.
769 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
770 * this flag means that returned position may be offset by a constant but
771 * unknown small number of scanlines wrt. real scanout position.
774 int amdgpu_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
775 unsigned int flags, int *vpos, int *hpos,
776 ktime_t *stime, ktime_t *etime,
777 const struct drm_display_mode *mode)
779 u32 vbl = 0, position = 0;
780 int vbl_start, vbl_end, vtotal, ret = 0;
783 struct amdgpu_device *adev = dev->dev_private;
785 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
787 /* Get optional system timestamp before query. */
789 *stime = ktime_get();
791 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0)
792 ret |= DRM_SCANOUTPOS_VALID;
794 /* Get optional system timestamp after query. */
796 *etime = ktime_get();
798 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
800 /* Decode into vertical and horizontal scanout position. */
801 *vpos = position & 0x1fff;
802 *hpos = (position >> 16) & 0x1fff;
804 /* Valid vblank area boundaries from gpu retrieved? */
807 ret |= DRM_SCANOUTPOS_ACCURATE;
808 vbl_start = vbl & 0x1fff;
809 vbl_end = (vbl >> 16) & 0x1fff;
812 /* No: Fake something reasonable which gives at least ok results. */
813 vbl_start = mode->crtc_vdisplay;
817 /* Called from driver internal vblank counter query code? */
818 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
819 /* Caller wants distance from real vbl_start in *hpos */
820 *hpos = *vpos - vbl_start;
823 /* Fudge vblank to start a few scanlines earlier to handle the
824 * problem that vblank irqs fire a few scanlines before start
825 * of vblank. Some driver internal callers need the true vblank
826 * start to be used and signal this via the USE_REAL_VBLANKSTART flag.
828 * The cause of the "early" vblank irq is that the irq is triggered
829 * by the line buffer logic when the line buffer read position enters
830 * the vblank, whereas our crtc scanout position naturally lags the
831 * line buffer read position.
833 if (!(flags & USE_REAL_VBLANKSTART))
834 vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines;
836 /* Test scanout position against vblank region. */
837 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
842 ret |= DRM_SCANOUTPOS_IN_VBLANK;
844 /* Called from driver internal vblank counter query code? */
845 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
846 /* Caller wants distance from fudged earlier vbl_start */
851 /* Check if inside vblank area and apply corrective offsets:
852 * vpos will then be >=0 in video scanout area, but negative
853 * within vblank area, counting down the number of lines until
857 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
858 if (in_vbl && (*vpos >= vbl_start)) {
859 vtotal = mode->crtc_vtotal;
860 *vpos = *vpos - vtotal;
863 /* Correct for shifted end of vbl at vbl_end. */
864 *vpos = *vpos - vbl_end;
869 int amdgpu_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc)
871 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
872 return AMDGPU_CRTC_IRQ_NONE;
876 return AMDGPU_CRTC_IRQ_VBLANK1;
878 return AMDGPU_CRTC_IRQ_VBLANK2;
880 return AMDGPU_CRTC_IRQ_VBLANK3;
882 return AMDGPU_CRTC_IRQ_VBLANK4;
884 return AMDGPU_CRTC_IRQ_VBLANK5;
886 return AMDGPU_CRTC_IRQ_VBLANK6;
888 return AMDGPU_CRTC_IRQ_NONE;