blob: edf91593ac87d07bc79ad89c8ba3f232c3ed794e [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors: Dave Airlie
24 * Alex Deucher
25 */
26#include <drm/drmP.h>
27#include <drm/amdgpu_drm.h>
28#include "amdgpu.h"
29#include "amdgpu_i2c.h"
30#include "atom.h"
31#include "amdgpu_connectors.h"
32#include <asm/div64.h>
33
34#include <linux/pm_runtime.h>
35#include <drm/drm_crtc_helper.h>
36#include <drm/drm_edid.h>
37
Christian Königc3874b72016-02-11 15:48:30 +010038static void amdgpu_flip_callback(struct fence *f, struct fence_cb *cb)
Christian König1ffd2652015-08-11 17:29:52 +020039{
Christian Königc3874b72016-02-11 15:48:30 +010040 struct amdgpu_flip_work *work =
41 container_of(cb, struct amdgpu_flip_work, cb);
42 struct amdgpu_device *adev = work->adev;
43 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[work->crtc_id];
Christian König1ffd2652015-08-11 17:29:52 +020044
Christian Königc3874b72016-02-11 15:48:30 +010045 fence_put(f);
46 queue_work(amdgpu_crtc->pflip_queue, &work->flip_work);
47}
Christian König1ffd2652015-08-11 17:29:52 +020048
Christian Königc3874b72016-02-11 15:48:30 +010049static bool amdgpu_flip_handle_fence(struct amdgpu_flip_work *work,
50 struct fence **f)
51{
52 struct fence *fence= *f;
Christian König1ffd2652015-08-11 17:29:52 +020053
Christian Königc3874b72016-02-11 15:48:30 +010054 if (fence == NULL)
55 return false;
56
Christian König1ffd2652015-08-11 17:29:52 +020057 *f = NULL;
Christian Königc3874b72016-02-11 15:48:30 +010058
59 if (!fence_add_callback(fence, &work->cb, amdgpu_flip_callback))
60 return true;
61
62 fence_put(*f);
63 return false;
Christian König1ffd2652015-08-11 17:29:52 +020064}
Alex Deucherd38ceaf2015-04-20 16:55:21 -040065
66static void amdgpu_flip_work_func(struct work_struct *__work)
67{
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];
72
73 struct drm_crtc *crtc = &amdgpuCrtc->base;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040074 unsigned long flags;
Christian König1ffd2652015-08-11 17:29:52 +020075 unsigned i;
Alex Deucher8e36f9d2015-12-03 12:31:56 -050076 int vpos, hpos, stat, min_udelay;
77 struct drm_vblank_crtc *vblank = &crtc->dev->vblank[work->crtc_id];
Alex Deucherd38ceaf2015-04-20 16:55:21 -040078
Christian Königc3874b72016-02-11 15:48:30 +010079 if (amdgpu_flip_handle_fence(work, &work->excl))
80 return;
81
Christian König1ffd2652015-08-11 17:29:52 +020082 for (i = 0; i < work->shared_count; ++i)
Christian Königc3874b72016-02-11 15:48:30 +010083 if (amdgpu_flip_handle_fence(work, &work->shared[i]))
84 return;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040085
86 /* We borrow the event spin lock for protecting flip_status */
87 spin_lock_irqsave(&crtc->dev->event_lock, flags);
88
Alex Deucher8e36f9d2015-12-03 12:31:56 -050089 /* If this happens to execute within the "virtually extended" vblank
90 * interval before the start of the real vblank interval then it needs
91 * to delay programming the mmio flip until the real vblank is entered.
92 * This prevents completing a flip too early due to the way we fudge
93 * our vblank counter and vblank timestamps in order to work around the
94 * problem that the hw fires vblank interrupts before actual start of
95 * vblank (when line buffer refilling is done for a frame). It
96 * complements the fudging logic in amdgpu_get_crtc_scanoutpos() for
97 * timestamping and amdgpu_get_vblank_counter_kms() for vblank counts.
98 *
99 * In practice this won't execute very often unless on very fast
100 * machines because the time window for this to happen is very small.
101 */
102 for (;;) {
103 /* GET_DISTANCE_TO_VBLANKSTART returns distance to real vblank
104 * start in hpos, and to the "fudged earlier" vblank start in
105 * vpos.
106 */
107 stat = amdgpu_get_crtc_scanoutpos(adev->ddev, work->crtc_id,
108 GET_DISTANCE_TO_VBLANKSTART,
109 &vpos, &hpos, NULL, NULL,
110 &crtc->hwmode);
111
112 if ((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
113 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE) ||
114 !(vpos >= 0 && hpos <= 0))
115 break;
116
117 /* Sleep at least until estimated real start of hw vblank */
118 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
119 min_udelay = (-hpos + 1) * max(vblank->linedur_ns / 1000, 5);
120 usleep_range(min_udelay, 2 * min_udelay);
121 spin_lock_irqsave(&crtc->dev->event_lock, flags);
122 };
123
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124 /* set the flip status */
125 amdgpuCrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400126 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
Vitaly Prosyak6bd9e872015-10-20 15:02:03 -0400127
128 /* Do the flip (mmio) */
129 adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130}
131
132/*
133 * Handle unpin events outside the interrupt handler proper.
134 */
135static void amdgpu_unpin_work_func(struct work_struct *__work)
136{
137 struct amdgpu_flip_work *work =
138 container_of(__work, struct amdgpu_flip_work, unpin_work);
139 int r;
140
141 /* unpin of the old buffer */
142 r = amdgpu_bo_reserve(work->old_rbo, false);
143 if (likely(r == 0)) {
144 r = amdgpu_bo_unpin(work->old_rbo);
145 if (unlikely(r != 0)) {
146 DRM_ERROR("failed to unpin buffer after flip\n");
147 }
148 amdgpu_bo_unreserve(work->old_rbo);
149 } else
150 DRM_ERROR("failed to reserve buffer after flip\n");
151
Christian Könige9d951a2015-12-03 19:55:51 +0100152 amdgpu_bo_unref(&work->old_rbo);
Christian König1ffd2652015-08-11 17:29:52 +0200153 kfree(work->shared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400154 kfree(work);
155}
156
157int amdgpu_crtc_page_flip(struct drm_crtc *crtc,
158 struct drm_framebuffer *fb,
159 struct drm_pending_vblank_event *event,
160 uint32_t page_flip_flags)
161{
162 struct drm_device *dev = crtc->dev;
163 struct amdgpu_device *adev = dev->dev_private;
164 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
165 struct amdgpu_framebuffer *old_amdgpu_fb;
166 struct amdgpu_framebuffer *new_amdgpu_fb;
167 struct drm_gem_object *obj;
168 struct amdgpu_flip_work *work;
169 struct amdgpu_bo *new_rbo;
170 unsigned long flags;
171 u64 tiling_flags;
172 u64 base;
Christian König1ffd2652015-08-11 17:29:52 +0200173 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174
175 work = kzalloc(sizeof *work, GFP_KERNEL);
176 if (work == NULL)
177 return -ENOMEM;
178
179 INIT_WORK(&work->flip_work, amdgpu_flip_work_func);
180 INIT_WORK(&work->unpin_work, amdgpu_unpin_work_func);
181
182 work->event = event;
183 work->adev = adev;
184 work->crtc_id = amdgpu_crtc->crtc_id;
185
186 /* schedule unpin of the old buffer */
187 old_amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb);
188 obj = old_amdgpu_fb->obj;
189
190 /* take a reference to the old object */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400191 work->old_rbo = gem_to_amdgpu_bo(obj);
Christian Könige9d951a2015-12-03 19:55:51 +0100192 amdgpu_bo_ref(work->old_rbo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400193
194 new_amdgpu_fb = to_amdgpu_framebuffer(fb);
195 obj = new_amdgpu_fb->obj;
196 new_rbo = gem_to_amdgpu_bo(obj);
197
198 /* pin the new buffer */
199 r = amdgpu_bo_reserve(new_rbo, false);
200 if (unlikely(r != 0)) {
201 DRM_ERROR("failed to reserve new rbo buffer before flip\n");
202 goto cleanup;
203 }
204
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800205 r = amdgpu_bo_pin_restricted(new_rbo, AMDGPU_GEM_DOMAIN_VRAM, 0, 0, &base);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400206 if (unlikely(r != 0)) {
207 amdgpu_bo_unreserve(new_rbo);
208 r = -EINVAL;
209 DRM_ERROR("failed to pin new rbo buffer before flip\n");
210 goto cleanup;
211 }
212
Christian König1ffd2652015-08-11 17:29:52 +0200213 r = reservation_object_get_fences_rcu(new_rbo->tbo.resv, &work->excl,
214 &work->shared_count,
215 &work->shared);
216 if (unlikely(r != 0)) {
217 amdgpu_bo_unreserve(new_rbo);
218 DRM_ERROR("failed to get fences for buffer\n");
219 goto cleanup;
220 }
221
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400222 amdgpu_bo_get_tiling_flags(new_rbo, &tiling_flags);
223 amdgpu_bo_unreserve(new_rbo);
224
225 work->base = base;
226
227 r = drm_vblank_get(crtc->dev, amdgpu_crtc->crtc_id);
228 if (r) {
229 DRM_ERROR("failed to get vblank before flip\n");
230 goto pflip_cleanup;
231 }
232
233 /* we borrow the event spin lock for protecting flip_wrok */
234 spin_lock_irqsave(&crtc->dev->event_lock, flags);
235 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_NONE) {
236 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
237 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
238 r = -EBUSY;
239 goto vblank_cleanup;
240 }
241
242 amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING;
243 amdgpu_crtc->pflip_works = work;
244
245 /* update crtc fb */
246 crtc->primary->fb = fb;
247 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
Christian Königc3874b72016-02-11 15:48:30 +0100248 amdgpu_flip_work_func(&work->flip_work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400249 return 0;
250
251vblank_cleanup:
252 drm_vblank_put(crtc->dev, amdgpu_crtc->crtc_id);
253
254pflip_cleanup:
255 if (unlikely(amdgpu_bo_reserve(new_rbo, false) != 0)) {
256 DRM_ERROR("failed to reserve new rbo in error path\n");
257 goto cleanup;
258 }
259 if (unlikely(amdgpu_bo_unpin(new_rbo) != 0)) {
260 DRM_ERROR("failed to unpin new rbo in error path\n");
261 }
262 amdgpu_bo_unreserve(new_rbo);
263
264cleanup:
Christian Könige9d951a2015-12-03 19:55:51 +0100265 amdgpu_bo_unref(&work->old_rbo);
Christian König1ffd2652015-08-11 17:29:52 +0200266 fence_put(work->excl);
267 for (i = 0; i < work->shared_count; ++i)
268 fence_put(work->shared[i]);
269 kfree(work->shared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400270 kfree(work);
271
272 return r;
273}
274
275int amdgpu_crtc_set_config(struct drm_mode_set *set)
276{
277 struct drm_device *dev;
278 struct amdgpu_device *adev;
279 struct drm_crtc *crtc;
280 bool active = false;
281 int ret;
282
283 if (!set || !set->crtc)
284 return -EINVAL;
285
286 dev = set->crtc->dev;
287
288 ret = pm_runtime_get_sync(dev->dev);
289 if (ret < 0)
290 return ret;
291
292 ret = drm_crtc_helper_set_config(set);
293
294 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
295 if (crtc->enabled)
296 active = true;
297
298 pm_runtime_mark_last_busy(dev->dev);
299
300 adev = dev->dev_private;
301 /* if we have active crtcs and we don't have a power ref,
302 take the current one */
303 if (active && !adev->have_disp_power_ref) {
304 adev->have_disp_power_ref = true;
305 return ret;
306 }
307 /* if we have no active crtcs, then drop the power ref
308 we got before */
309 if (!active && adev->have_disp_power_ref) {
310 pm_runtime_put_autosuspend(dev->dev);
311 adev->have_disp_power_ref = false;
312 }
313
314 /* drop the power reference we got coming in here */
315 pm_runtime_put_autosuspend(dev->dev);
316 return ret;
317}
318
319static const char *encoder_names[38] = {
320 "NONE",
321 "INTERNAL_LVDS",
322 "INTERNAL_TMDS1",
323 "INTERNAL_TMDS2",
324 "INTERNAL_DAC1",
325 "INTERNAL_DAC2",
326 "INTERNAL_SDVOA",
327 "INTERNAL_SDVOB",
328 "SI170B",
329 "CH7303",
330 "CH7301",
331 "INTERNAL_DVO1",
332 "EXTERNAL_SDVOA",
333 "EXTERNAL_SDVOB",
334 "TITFP513",
335 "INTERNAL_LVTM1",
336 "VT1623",
337 "HDMI_SI1930",
338 "HDMI_INTERNAL",
339 "INTERNAL_KLDSCP_TMDS1",
340 "INTERNAL_KLDSCP_DVO1",
341 "INTERNAL_KLDSCP_DAC1",
342 "INTERNAL_KLDSCP_DAC2",
343 "SI178",
344 "MVPU_FPGA",
345 "INTERNAL_DDI",
346 "VT1625",
347 "HDMI_SI1932",
348 "DP_AN9801",
349 "DP_DP501",
350 "INTERNAL_UNIPHY",
351 "INTERNAL_KLDSCP_LVTMA",
352 "INTERNAL_UNIPHY1",
353 "INTERNAL_UNIPHY2",
354 "NUTMEG",
355 "TRAVIS",
356 "INTERNAL_VCE",
357 "INTERNAL_UNIPHY3",
358};
359
360static const char *hpd_names[6] = {
361 "HPD1",
362 "HPD2",
363 "HPD3",
364 "HPD4",
365 "HPD5",
366 "HPD6",
367};
368
369void amdgpu_print_display_setup(struct drm_device *dev)
370{
371 struct drm_connector *connector;
372 struct amdgpu_connector *amdgpu_connector;
373 struct drm_encoder *encoder;
374 struct amdgpu_encoder *amdgpu_encoder;
375 uint32_t devices;
376 int i = 0;
377
378 DRM_INFO("AMDGPU Display Connectors\n");
379 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
380 amdgpu_connector = to_amdgpu_connector(connector);
381 DRM_INFO("Connector %d:\n", i);
382 DRM_INFO(" %s\n", connector->name);
383 if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE)
384 DRM_INFO(" %s\n", hpd_names[amdgpu_connector->hpd.hpd]);
385 if (amdgpu_connector->ddc_bus) {
386 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
387 amdgpu_connector->ddc_bus->rec.mask_clk_reg,
388 amdgpu_connector->ddc_bus->rec.mask_data_reg,
389 amdgpu_connector->ddc_bus->rec.a_clk_reg,
390 amdgpu_connector->ddc_bus->rec.a_data_reg,
391 amdgpu_connector->ddc_bus->rec.en_clk_reg,
392 amdgpu_connector->ddc_bus->rec.en_data_reg,
393 amdgpu_connector->ddc_bus->rec.y_clk_reg,
394 amdgpu_connector->ddc_bus->rec.y_data_reg);
395 if (amdgpu_connector->router.ddc_valid)
396 DRM_INFO(" DDC Router 0x%x/0x%x\n",
397 amdgpu_connector->router.ddc_mux_control_pin,
398 amdgpu_connector->router.ddc_mux_state);
399 if (amdgpu_connector->router.cd_valid)
400 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
401 amdgpu_connector->router.cd_mux_control_pin,
402 amdgpu_connector->router.cd_mux_state);
403 } else {
404 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
405 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
406 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
407 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
408 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
409 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
410 DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n");
411 }
412 DRM_INFO(" Encoders:\n");
413 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
414 amdgpu_encoder = to_amdgpu_encoder(encoder);
415 devices = amdgpu_encoder->devices & amdgpu_connector->devices;
416 if (devices) {
417 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
418 DRM_INFO(" CRT1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
419 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
420 DRM_INFO(" CRT2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
421 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
422 DRM_INFO(" LCD1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
423 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
424 DRM_INFO(" DFP1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
425 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
426 DRM_INFO(" DFP2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
427 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
428 DRM_INFO(" DFP3: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
429 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
430 DRM_INFO(" DFP4: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
431 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
432 DRM_INFO(" DFP5: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
433 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
434 DRM_INFO(" DFP6: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
435 if (devices & ATOM_DEVICE_TV1_SUPPORT)
436 DRM_INFO(" TV1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
437 if (devices & ATOM_DEVICE_CV_SUPPORT)
438 DRM_INFO(" CV: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
439 }
440 }
441 i++;
442 }
443}
444
445/**
446 * amdgpu_ddc_probe
447 *
448 */
449bool amdgpu_ddc_probe(struct amdgpu_connector *amdgpu_connector,
450 bool use_aux)
451{
452 u8 out = 0x0;
453 u8 buf[8];
454 int ret;
455 struct i2c_msg msgs[] = {
456 {
457 .addr = DDC_ADDR,
458 .flags = 0,
459 .len = 1,
460 .buf = &out,
461 },
462 {
463 .addr = DDC_ADDR,
464 .flags = I2C_M_RD,
465 .len = 8,
466 .buf = buf,
467 }
468 };
469
470 /* on hw with routers, select right port */
471 if (amdgpu_connector->router.ddc_valid)
472 amdgpu_i2c_router_select_ddc_port(amdgpu_connector);
473
474 if (use_aux) {
475 ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2);
476 } else {
477 ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2);
478 }
479
480 if (ret != 2)
481 /* Couldn't find an accessible DDC on this connector */
482 return false;
483 /* Probe also for valid EDID header
484 * EDID header starts with:
485 * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00.
486 * Only the first 6 bytes must be valid as
487 * drm_edid_block_valid() can fix the last 2 bytes */
488 if (drm_edid_header_is_valid(buf) < 6) {
489 /* Couldn't find an accessible EDID on this
490 * connector */
491 return false;
492 }
493 return true;
494}
495
496static void amdgpu_user_framebuffer_destroy(struct drm_framebuffer *fb)
497{
498 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
499
500 if (amdgpu_fb->obj) {
501 drm_gem_object_unreference_unlocked(amdgpu_fb->obj);
502 }
503 drm_framebuffer_cleanup(fb);
504 kfree(amdgpu_fb);
505}
506
507static int amdgpu_user_framebuffer_create_handle(struct drm_framebuffer *fb,
508 struct drm_file *file_priv,
509 unsigned int *handle)
510{
511 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
512
513 return drm_gem_handle_create(file_priv, amdgpu_fb->obj, handle);
514}
515
516static const struct drm_framebuffer_funcs amdgpu_fb_funcs = {
517 .destroy = amdgpu_user_framebuffer_destroy,
518 .create_handle = amdgpu_user_framebuffer_create_handle,
519};
520
521int
522amdgpu_framebuffer_init(struct drm_device *dev,
523 struct amdgpu_framebuffer *rfb,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200524 const struct drm_mode_fb_cmd2 *mode_cmd,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400525 struct drm_gem_object *obj)
526{
527 int ret;
528 rfb->obj = obj;
529 drm_helper_mode_fill_fb_struct(&rfb->base, mode_cmd);
530 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
531 if (ret) {
532 rfb->obj = NULL;
533 return ret;
534 }
535 return 0;
536}
537
538static struct drm_framebuffer *
539amdgpu_user_framebuffer_create(struct drm_device *dev,
540 struct drm_file *file_priv,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200541 const struct drm_mode_fb_cmd2 *mode_cmd)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400542{
543 struct drm_gem_object *obj;
544 struct amdgpu_framebuffer *amdgpu_fb;
545 int ret;
546
547 obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]);
548 if (obj == NULL) {
549 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
550 "can't create framebuffer\n", mode_cmd->handles[0]);
551 return ERR_PTR(-ENOENT);
552 }
553
554 amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL);
555 if (amdgpu_fb == NULL) {
556 drm_gem_object_unreference_unlocked(obj);
557 return ERR_PTR(-ENOMEM);
558 }
559
560 ret = amdgpu_framebuffer_init(dev, amdgpu_fb, mode_cmd, obj);
561 if (ret) {
562 kfree(amdgpu_fb);
563 drm_gem_object_unreference_unlocked(obj);
564 return ERR_PTR(ret);
565 }
566
567 return &amdgpu_fb->base;
568}
569
570static void amdgpu_output_poll_changed(struct drm_device *dev)
571{
572 struct amdgpu_device *adev = dev->dev_private;
573 amdgpu_fb_output_poll_changed(adev);
574}
575
576const struct drm_mode_config_funcs amdgpu_mode_funcs = {
577 .fb_create = amdgpu_user_framebuffer_create,
578 .output_poll_changed = amdgpu_output_poll_changed
579};
580
581static struct drm_prop_enum_list amdgpu_underscan_enum_list[] =
582{ { UNDERSCAN_OFF, "off" },
583 { UNDERSCAN_ON, "on" },
584 { UNDERSCAN_AUTO, "auto" },
585};
586
587static struct drm_prop_enum_list amdgpu_audio_enum_list[] =
588{ { AMDGPU_AUDIO_DISABLE, "off" },
589 { AMDGPU_AUDIO_ENABLE, "on" },
590 { AMDGPU_AUDIO_AUTO, "auto" },
591};
592
593/* XXX support different dither options? spatial, temporal, both, etc. */
594static struct drm_prop_enum_list amdgpu_dither_enum_list[] =
595{ { AMDGPU_FMT_DITHER_DISABLE, "off" },
596 { AMDGPU_FMT_DITHER_ENABLE, "on" },
597};
598
599int amdgpu_modeset_create_props(struct amdgpu_device *adev)
600{
601 int sz;
602
603 if (adev->is_atom_bios) {
604 adev->mode_info.coherent_mode_property =
605 drm_property_create_range(adev->ddev, 0 , "coherent", 0, 1);
606 if (!adev->mode_info.coherent_mode_property)
607 return -ENOMEM;
608 }
609
610 adev->mode_info.load_detect_property =
611 drm_property_create_range(adev->ddev, 0, "load detection", 0, 1);
612 if (!adev->mode_info.load_detect_property)
613 return -ENOMEM;
614
615 drm_mode_create_scaling_mode_property(adev->ddev);
616
617 sz = ARRAY_SIZE(amdgpu_underscan_enum_list);
618 adev->mode_info.underscan_property =
619 drm_property_create_enum(adev->ddev, 0,
620 "underscan",
621 amdgpu_underscan_enum_list, sz);
622
623 adev->mode_info.underscan_hborder_property =
624 drm_property_create_range(adev->ddev, 0,
625 "underscan hborder", 0, 128);
626 if (!adev->mode_info.underscan_hborder_property)
627 return -ENOMEM;
628
629 adev->mode_info.underscan_vborder_property =
630 drm_property_create_range(adev->ddev, 0,
631 "underscan vborder", 0, 128);
632 if (!adev->mode_info.underscan_vborder_property)
633 return -ENOMEM;
634
635 sz = ARRAY_SIZE(amdgpu_audio_enum_list);
636 adev->mode_info.audio_property =
637 drm_property_create_enum(adev->ddev, 0,
638 "audio",
639 amdgpu_audio_enum_list, sz);
640
641 sz = ARRAY_SIZE(amdgpu_dither_enum_list);
642 adev->mode_info.dither_property =
643 drm_property_create_enum(adev->ddev, 0,
644 "dither",
645 amdgpu_dither_enum_list, sz);
646
647 return 0;
648}
649
650void amdgpu_update_display_priority(struct amdgpu_device *adev)
651{
652 /* adjustment options for the display watermarks */
653 if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2))
654 adev->mode_info.disp_priority = 0;
655 else
656 adev->mode_info.disp_priority = amdgpu_disp_priority;
657
658}
659
660static bool is_hdtv_mode(const struct drm_display_mode *mode)
661{
662 /* try and guess if this is a tv or a monitor */
663 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
664 (mode->vdisplay == 576) || /* 576p */
665 (mode->vdisplay == 720) || /* 720p */
666 (mode->vdisplay == 1080)) /* 1080p */
667 return true;
668 else
669 return false;
670}
671
672bool amdgpu_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
673 const struct drm_display_mode *mode,
674 struct drm_display_mode *adjusted_mode)
675{
676 struct drm_device *dev = crtc->dev;
677 struct drm_encoder *encoder;
678 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
679 struct amdgpu_encoder *amdgpu_encoder;
680 struct drm_connector *connector;
681 struct amdgpu_connector *amdgpu_connector;
682 u32 src_v = 1, dst_v = 1;
683 u32 src_h = 1, dst_h = 1;
684
685 amdgpu_crtc->h_border = 0;
686 amdgpu_crtc->v_border = 0;
687
688 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
689 if (encoder->crtc != crtc)
690 continue;
691 amdgpu_encoder = to_amdgpu_encoder(encoder);
692 connector = amdgpu_get_connector_for_encoder(encoder);
693 amdgpu_connector = to_amdgpu_connector(connector);
694
695 /* set scaling */
696 if (amdgpu_encoder->rmx_type == RMX_OFF)
697 amdgpu_crtc->rmx_type = RMX_OFF;
698 else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay ||
699 mode->vdisplay < amdgpu_encoder->native_mode.vdisplay)
700 amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type;
701 else
702 amdgpu_crtc->rmx_type = RMX_OFF;
703 /* copy native mode */
704 memcpy(&amdgpu_crtc->native_mode,
705 &amdgpu_encoder->native_mode,
706 sizeof(struct drm_display_mode));
707 src_v = crtc->mode.vdisplay;
708 dst_v = amdgpu_crtc->native_mode.vdisplay;
709 src_h = crtc->mode.hdisplay;
710 dst_h = amdgpu_crtc->native_mode.hdisplay;
711
712 /* fix up for overscan on hdmi */
713 if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
714 ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) ||
715 ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) &&
716 drm_detect_hdmi_monitor(amdgpu_connector_edid(connector)) &&
717 is_hdtv_mode(mode)))) {
718 if (amdgpu_encoder->underscan_hborder != 0)
719 amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder;
720 else
721 amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16;
722 if (amdgpu_encoder->underscan_vborder != 0)
723 amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder;
724 else
725 amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16;
726 amdgpu_crtc->rmx_type = RMX_FULL;
727 src_v = crtc->mode.vdisplay;
728 dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2);
729 src_h = crtc->mode.hdisplay;
730 dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2);
731 }
732 }
733 if (amdgpu_crtc->rmx_type != RMX_OFF) {
734 fixed20_12 a, b;
735 a.full = dfixed_const(src_v);
736 b.full = dfixed_const(dst_v);
737 amdgpu_crtc->vsc.full = dfixed_div(a, b);
738 a.full = dfixed_const(src_h);
739 b.full = dfixed_const(dst_h);
740 amdgpu_crtc->hsc.full = dfixed_div(a, b);
741 } else {
742 amdgpu_crtc->vsc.full = dfixed_const(1);
743 amdgpu_crtc->hsc.full = dfixed_const(1);
744 }
745 return true;
746}
747
748/*
749 * Retrieve current video scanout position of crtc on a given gpu, and
750 * an optional accurate timestamp of when query happened.
751 *
752 * \param dev Device to query.
Thierry Reding88e72712015-09-24 18:35:31 +0200753 * \param pipe Crtc to query.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400754 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500755 * For driver internal use only also supports these flags:
756 *
757 * USE_REAL_VBLANKSTART to use the real start of vblank instead
758 * of a fudged earlier start of vblank.
759 *
760 * GET_DISTANCE_TO_VBLANKSTART to return distance to the
761 * fudged earlier start of vblank in *vpos and the distance
762 * to true start of vblank in *hpos.
763 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400764 * \param *vpos Location where vertical scanout position should be stored.
765 * \param *hpos Location where horizontal scanout position should go.
766 * \param *stime Target location for timestamp taken immediately before
767 * scanout position query. Can be NULL to skip timestamp.
768 * \param *etime Target location for timestamp taken immediately after
769 * scanout position query. Can be NULL to skip timestamp.
770 *
771 * Returns vpos as a positive number while in active scanout area.
772 * Returns vpos as a negative number inside vblank, counting the number
773 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
774 * until start of active scanout / end of vblank."
775 *
776 * \return Flags, or'ed together as follows:
777 *
778 * DRM_SCANOUTPOS_VALID = Query successful.
779 * DRM_SCANOUTPOS_INVBL = Inside vblank.
780 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
781 * this flag means that returned position may be offset by a constant but
782 * unknown small number of scanlines wrt. real scanout position.
783 *
784 */
Thierry Reding88e72712015-09-24 18:35:31 +0200785int amdgpu_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
786 unsigned int flags, int *vpos, int *hpos,
787 ktime_t *stime, ktime_t *etime,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300788 const struct drm_display_mode *mode)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400789{
790 u32 vbl = 0, position = 0;
791 int vbl_start, vbl_end, vtotal, ret = 0;
792 bool in_vbl = true;
793
794 struct amdgpu_device *adev = dev->dev_private;
795
796 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
797
798 /* Get optional system timestamp before query. */
799 if (stime)
800 *stime = ktime_get();
801
Thierry Reding88e72712015-09-24 18:35:31 +0200802 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400803 ret |= DRM_SCANOUTPOS_VALID;
804
805 /* Get optional system timestamp after query. */
806 if (etime)
807 *etime = ktime_get();
808
809 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
810
811 /* Decode into vertical and horizontal scanout position. */
812 *vpos = position & 0x1fff;
813 *hpos = (position >> 16) & 0x1fff;
814
815 /* Valid vblank area boundaries from gpu retrieved? */
816 if (vbl > 0) {
817 /* Yes: Decode. */
818 ret |= DRM_SCANOUTPOS_ACCURATE;
819 vbl_start = vbl & 0x1fff;
820 vbl_end = (vbl >> 16) & 0x1fff;
821 }
822 else {
823 /* No: Fake something reasonable which gives at least ok results. */
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300824 vbl_start = mode->crtc_vdisplay;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400825 vbl_end = 0;
826 }
827
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500828 /* Called from driver internal vblank counter query code? */
829 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
830 /* Caller wants distance from real vbl_start in *hpos */
831 *hpos = *vpos - vbl_start;
832 }
833
834 /* Fudge vblank to start a few scanlines earlier to handle the
835 * problem that vblank irqs fire a few scanlines before start
836 * of vblank. Some driver internal callers need the true vblank
837 * start to be used and signal this via the USE_REAL_VBLANKSTART flag.
838 *
839 * The cause of the "early" vblank irq is that the irq is triggered
840 * by the line buffer logic when the line buffer read position enters
841 * the vblank, whereas our crtc scanout position naturally lags the
842 * line buffer read position.
843 */
844 if (!(flags & USE_REAL_VBLANKSTART))
845 vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines;
846
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400847 /* Test scanout position against vblank region. */
848 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
849 in_vbl = false;
850
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500851 /* In vblank? */
852 if (in_vbl)
853 ret |= DRM_SCANOUTPOS_IN_VBLANK;
854
855 /* Called from driver internal vblank counter query code? */
856 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
857 /* Caller wants distance from fudged earlier vbl_start */
858 *vpos -= vbl_start;
859 return ret;
860 }
861
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400862 /* Check if inside vblank area and apply corrective offsets:
863 * vpos will then be >=0 in video scanout area, but negative
864 * within vblank area, counting down the number of lines until
865 * start of scanout.
866 */
867
868 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
869 if (in_vbl && (*vpos >= vbl_start)) {
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300870 vtotal = mode->crtc_vtotal;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400871 *vpos = *vpos - vtotal;
872 }
873
874 /* Correct for shifted end of vbl at vbl_end. */
875 *vpos = *vpos - vbl_end;
876
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400877 return ret;
878}
879
880int amdgpu_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc)
881{
882 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
883 return AMDGPU_CRTC_IRQ_NONE;
884
885 switch (crtc) {
886 case 0:
887 return AMDGPU_CRTC_IRQ_VBLANK1;
888 case 1:
889 return AMDGPU_CRTC_IRQ_VBLANK2;
890 case 2:
891 return AMDGPU_CRTC_IRQ_VBLANK3;
892 case 3:
893 return AMDGPU_CRTC_IRQ_VBLANK4;
894 case 4:
895 return AMDGPU_CRTC_IRQ_VBLANK5;
896 case 5:
897 return AMDGPU_CRTC_IRQ_VBLANK6;
898 default:
899 return AMDGPU_CRTC_IRQ_NONE;
900 }
901}