blob: 8ede2645a06c417b1bc5e8784e042b1d1dce9d47 [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"
Christian König5d43be02017-10-26 18:06:23 +020032#include "amdgpu_display.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040033#include <asm/div64.h>
34
35#include <linux/pm_runtime.h>
36#include <drm/drm_crtc_helper.h>
37#include <drm/drm_edid.h>
Noralf Trønnesab77e022017-12-05 19:24:55 +010038#include <drm/drm_fb_helper.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040039
Chris Wilsonf54d1862016-10-25 13:00:45 +010040static void amdgpu_flip_callback(struct dma_fence *f, struct dma_fence_cb *cb)
Christian König1ffd2652015-08-11 17:29:52 +020041{
Christian Königc3874b72016-02-11 15:48:30 +010042 struct amdgpu_flip_work *work =
43 container_of(cb, struct amdgpu_flip_work, cb);
Christian König1ffd2652015-08-11 17:29:52 +020044
Chris Wilsonf54d1862016-10-25 13:00:45 +010045 dma_fence_put(f);
Michel Dänzer325cbba2016-08-04 12:39:37 +090046 schedule_work(&work->flip_work.work);
Christian Königc3874b72016-02-11 15:48:30 +010047}
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,
Chris Wilsonf54d1862016-10-25 13:00:45 +010050 struct dma_fence **f)
Christian Königc3874b72016-02-11 15:48:30 +010051{
Chris Wilsonf54d1862016-10-25 13:00:45 +010052 struct dma_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
Chris Wilsonf54d1862016-10-25 13:00:45 +010059 if (!dma_fence_add_callback(fence, &work->cb, amdgpu_flip_callback))
Christian Königc3874b72016-02-11 15:48:30 +010060 return true;
61
Chris Wilsonf54d1862016-10-25 13:00:45 +010062 dma_fence_put(fence);
Christian Königc3874b72016-02-11 15:48:30 +010063 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{
Michel Dänzer325cbba2016-08-04 12:39:37 +090068 struct delayed_work *delayed_work =
69 container_of(__work, struct delayed_work, work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040070 struct amdgpu_flip_work *work =
Michel Dänzer325cbba2016-08-04 12:39:37 +090071 container_of(delayed_work, struct amdgpu_flip_work, flip_work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040072 struct amdgpu_device *adev = work->adev;
Alex Deucherf93932b2016-10-21 16:36:12 -040073 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[work->crtc_id];
Alex Deucherd38ceaf2015-04-20 16:55:21 -040074
Alex Deucherf93932b2016-10-21 16:36:12 -040075 struct drm_crtc *crtc = &amdgpu_crtc->base;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040076 unsigned long flags;
Michel Dänzer325cbba2016-08-04 12:39:37 +090077 unsigned i;
78 int vpos, hpos;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040079
Christian Königc3874b72016-02-11 15:48:30 +010080 if (amdgpu_flip_handle_fence(work, &work->excl))
81 return;
82
Christian König1ffd2652015-08-11 17:29:52 +020083 for (i = 0; i < work->shared_count; ++i)
Christian Königc3874b72016-02-11 15:48:30 +010084 if (amdgpu_flip_handle_fence(work, &work->shared[i]))
85 return;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040086
Michel Dänzer325cbba2016-08-04 12:39:37 +090087 /* Wait until we're out of the vertical blank period before the one
88 * targeted by the flip
Alex Deucher8e36f9d2015-12-03 12:31:56 -050089 */
Alex Deucherf93932b2016-10-21 16:36:12 -040090 if (amdgpu_crtc->enabled &&
Michel Dänzer325cbba2016-08-04 12:39:37 +090091 (amdgpu_get_crtc_scanoutpos(adev->ddev, work->crtc_id, 0,
92 &vpos, &hpos, NULL, NULL,
93 &crtc->hwmode)
94 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
95 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
96 (int)(work->target_vblank -
Alex Deucherf93932b2016-10-21 16:36:12 -040097 amdgpu_get_vblank_counter_kms(adev->ddev, amdgpu_crtc->crtc_id)) > 0) {
Michel Dänzer325cbba2016-08-04 12:39:37 +090098 schedule_delayed_work(&work->flip_work, usecs_to_jiffies(1000));
99 return;
Edward O'Callaghan9c3578a2016-07-12 10:17:51 +1000100 }
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500101
Michel Dänzer325cbba2016-08-04 12:39:37 +0900102 /* We borrow the event spin lock for protecting flip_status */
103 spin_lock_irqsave(&crtc->dev->event_lock, flags);
Mario Kleinere1d09dc2016-02-19 02:06:39 +0100104
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400105 /* Do the flip (mmio) */
Alex Deuchercb9e59d2016-05-05 16:03:57 -0400106 adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base, work->async);
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400107
108 /* Set the flip status */
Alex Deucherf93932b2016-10-21 16:36:12 -0400109 amdgpu_crtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400110 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
Vitaly Prosyak6bd9e872015-10-20 15:02:03 -0400111
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400112
113 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_SUBMITTED, work: %p,\n",
Alex Deucherf93932b2016-10-21 16:36:12 -0400114 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400115
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400116}
117
118/*
119 * Handle unpin events outside the interrupt handler proper.
120 */
121static void amdgpu_unpin_work_func(struct work_struct *__work)
122{
123 struct amdgpu_flip_work *work =
124 container_of(__work, struct amdgpu_flip_work, unpin_work);
125 int r;
126
127 /* unpin of the old buffer */
Michel Dänzerc81a1a72017-04-28 17:28:14 +0900128 r = amdgpu_bo_reserve(work->old_abo, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400129 if (likely(r == 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200130 r = amdgpu_bo_unpin(work->old_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 if (unlikely(r != 0)) {
132 DRM_ERROR("failed to unpin buffer after flip\n");
133 }
Christian König765e7fb2016-09-15 15:06:50 +0200134 amdgpu_bo_unreserve(work->old_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400135 } else
136 DRM_ERROR("failed to reserve buffer after flip\n");
137
Christian König765e7fb2016-09-15 15:06:50 +0200138 amdgpu_bo_unref(&work->old_abo);
Christian König1ffd2652015-08-11 17:29:52 +0200139 kfree(work->shared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400140 kfree(work);
141}
142
Harry Wentland5f42aa32017-09-13 15:17:19 -0400143int amdgpu_crtc_page_flip_target(struct drm_crtc *crtc,
144 struct drm_framebuffer *fb,
145 struct drm_pending_vblank_event *event,
146 uint32_t page_flip_flags, uint32_t target,
147 struct drm_modeset_acquire_ctx *ctx)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400148{
149 struct drm_device *dev = crtc->dev;
150 struct amdgpu_device *adev = dev->dev_private;
151 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
152 struct amdgpu_framebuffer *old_amdgpu_fb;
153 struct amdgpu_framebuffer *new_amdgpu_fb;
154 struct drm_gem_object *obj;
155 struct amdgpu_flip_work *work;
Christian König765e7fb2016-09-15 15:06:50 +0200156 struct amdgpu_bo *new_abo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157 unsigned long flags;
158 u64 tiling_flags;
159 u64 base;
Harry Wentland5f42aa32017-09-13 15:17:19 -0400160 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400161
162 work = kzalloc(sizeof *work, GFP_KERNEL);
163 if (work == NULL)
164 return -ENOMEM;
165
Michel Dänzer325cbba2016-08-04 12:39:37 +0900166 INIT_DELAYED_WORK(&work->flip_work, amdgpu_flip_work_func);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400167 INIT_WORK(&work->unpin_work, amdgpu_unpin_work_func);
168
169 work->event = event;
170 work->adev = adev;
171 work->crtc_id = amdgpu_crtc->crtc_id;
Alex Deuchercb9e59d2016-05-05 16:03:57 -0400172 work->async = (page_flip_flags & DRM_MODE_PAGE_FLIP_ASYNC) != 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400173
174 /* schedule unpin of the old buffer */
175 old_amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb);
176 obj = old_amdgpu_fb->obj;
177
178 /* take a reference to the old object */
Christian König765e7fb2016-09-15 15:06:50 +0200179 work->old_abo = gem_to_amdgpu_bo(obj);
180 amdgpu_bo_ref(work->old_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400181
182 new_amdgpu_fb = to_amdgpu_framebuffer(fb);
183 obj = new_amdgpu_fb->obj;
Christian König765e7fb2016-09-15 15:06:50 +0200184 new_abo = gem_to_amdgpu_bo(obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185
186 /* pin the new buffer */
Christian König765e7fb2016-09-15 15:06:50 +0200187 r = amdgpu_bo_reserve(new_abo, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400188 if (unlikely(r != 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200189 DRM_ERROR("failed to reserve new abo buffer before flip\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400190 goto cleanup;
191 }
192
Christian König5d43be02017-10-26 18:06:23 +0200193 r = amdgpu_bo_pin(new_abo, amdgpu_display_framebuffer_domains(adev), &base);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400194 if (unlikely(r != 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200195 DRM_ERROR("failed to pin new abo buffer before flip\n");
Michel Dänzeree7fd952016-06-24 17:30:08 +0900196 goto unreserve;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400197 }
198
Christian König765e7fb2016-09-15 15:06:50 +0200199 r = reservation_object_get_fences_rcu(new_abo->tbo.resv, &work->excl,
Christian König1ffd2652015-08-11 17:29:52 +0200200 &work->shared_count,
201 &work->shared);
202 if (unlikely(r != 0)) {
Christian König1ffd2652015-08-11 17:29:52 +0200203 DRM_ERROR("failed to get fences for buffer\n");
Michel Dänzeree7fd952016-06-24 17:30:08 +0900204 goto unpin;
Christian König1ffd2652015-08-11 17:29:52 +0200205 }
206
Christian König765e7fb2016-09-15 15:06:50 +0200207 amdgpu_bo_get_tiling_flags(new_abo, &tiling_flags);
208 amdgpu_bo_unreserve(new_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400209
210 work->base = base;
Michel Dänzer325cbba2016-08-04 12:39:37 +0900211 work->target_vblank = target - drm_crtc_vblank_count(crtc) +
212 amdgpu_get_vblank_counter_kms(dev, work->crtc_id);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400213
214 /* we borrow the event spin lock for protecting flip_wrok */
215 spin_lock_irqsave(&crtc->dev->event_lock, flags);
216 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_NONE) {
217 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
218 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
219 r = -EBUSY;
Michel Dänzer325cbba2016-08-04 12:39:37 +0900220 goto pflip_cleanup;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400221 }
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400222
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400223 amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING;
224 amdgpu_crtc->pflip_works = work;
225
Harry Wentland5f42aa32017-09-13 15:17:19 -0400226
227 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_PENDING, work: %p,\n",
228 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400229 /* update crtc fb */
230 crtc->primary->fb = fb;
231 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400232 amdgpu_flip_work_func(&work->flip_work.work);
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400233 return 0;
Harry Wentland5f42aa32017-09-13 15:17:19 -0400234
235pflip_cleanup:
236 if (unlikely(amdgpu_bo_reserve(new_abo, false) != 0)) {
237 DRM_ERROR("failed to reserve new abo in error path\n");
238 goto cleanup;
239 }
240unpin:
241 if (unlikely(amdgpu_bo_unpin(new_abo) != 0)) {
242 DRM_ERROR("failed to unpin new abo in error path\n");
243 }
244unreserve:
245 amdgpu_bo_unreserve(new_abo);
246
247cleanup:
248 amdgpu_bo_unref(&work->old_abo);
249 dma_fence_put(work->excl);
250 for (i = 0; i < work->shared_count; ++i)
251 dma_fence_put(work->shared[i]);
252 kfree(work->shared);
253 kfree(work);
254
255 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400256}
257
Daniel Vettera4eff9a2017-03-22 22:50:57 +0100258int amdgpu_crtc_set_config(struct drm_mode_set *set,
259 struct drm_modeset_acquire_ctx *ctx)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400260{
261 struct drm_device *dev;
262 struct amdgpu_device *adev;
263 struct drm_crtc *crtc;
264 bool active = false;
265 int ret;
266
267 if (!set || !set->crtc)
268 return -EINVAL;
269
270 dev = set->crtc->dev;
271
272 ret = pm_runtime_get_sync(dev->dev);
273 if (ret < 0)
274 return ret;
275
Daniel Vettera4eff9a2017-03-22 22:50:57 +0100276 ret = drm_crtc_helper_set_config(set, ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400277
278 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
279 if (crtc->enabled)
280 active = true;
281
282 pm_runtime_mark_last_busy(dev->dev);
283
284 adev = dev->dev_private;
285 /* if we have active crtcs and we don't have a power ref,
286 take the current one */
287 if (active && !adev->have_disp_power_ref) {
288 adev->have_disp_power_ref = true;
289 return ret;
290 }
291 /* if we have no active crtcs, then drop the power ref
292 we got before */
293 if (!active && adev->have_disp_power_ref) {
294 pm_runtime_put_autosuspend(dev->dev);
295 adev->have_disp_power_ref = false;
296 }
297
298 /* drop the power reference we got coming in here */
299 pm_runtime_put_autosuspend(dev->dev);
300 return ret;
301}
302
Emily Dengc6e14f42016-08-08 11:30:50 +0800303static const char *encoder_names[41] = {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400304 "NONE",
305 "INTERNAL_LVDS",
306 "INTERNAL_TMDS1",
307 "INTERNAL_TMDS2",
308 "INTERNAL_DAC1",
309 "INTERNAL_DAC2",
310 "INTERNAL_SDVOA",
311 "INTERNAL_SDVOB",
312 "SI170B",
313 "CH7303",
314 "CH7301",
315 "INTERNAL_DVO1",
316 "EXTERNAL_SDVOA",
317 "EXTERNAL_SDVOB",
318 "TITFP513",
319 "INTERNAL_LVTM1",
320 "VT1623",
321 "HDMI_SI1930",
322 "HDMI_INTERNAL",
323 "INTERNAL_KLDSCP_TMDS1",
324 "INTERNAL_KLDSCP_DVO1",
325 "INTERNAL_KLDSCP_DAC1",
326 "INTERNAL_KLDSCP_DAC2",
327 "SI178",
328 "MVPU_FPGA",
329 "INTERNAL_DDI",
330 "VT1625",
331 "HDMI_SI1932",
332 "DP_AN9801",
333 "DP_DP501",
334 "INTERNAL_UNIPHY",
335 "INTERNAL_KLDSCP_LVTMA",
336 "INTERNAL_UNIPHY1",
337 "INTERNAL_UNIPHY2",
338 "NUTMEG",
339 "TRAVIS",
340 "INTERNAL_VCE",
341 "INTERNAL_UNIPHY3",
Emily Dengc6e14f42016-08-08 11:30:50 +0800342 "HDMI_ANX9805",
343 "INTERNAL_AMCLK",
344 "VIRTUAL",
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400345};
346
347static const char *hpd_names[6] = {
348 "HPD1",
349 "HPD2",
350 "HPD3",
351 "HPD4",
352 "HPD5",
353 "HPD6",
354};
355
356void amdgpu_print_display_setup(struct drm_device *dev)
357{
358 struct drm_connector *connector;
359 struct amdgpu_connector *amdgpu_connector;
360 struct drm_encoder *encoder;
361 struct amdgpu_encoder *amdgpu_encoder;
362 uint32_t devices;
363 int i = 0;
364
365 DRM_INFO("AMDGPU Display Connectors\n");
366 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
367 amdgpu_connector = to_amdgpu_connector(connector);
368 DRM_INFO("Connector %d:\n", i);
369 DRM_INFO(" %s\n", connector->name);
370 if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE)
371 DRM_INFO(" %s\n", hpd_names[amdgpu_connector->hpd.hpd]);
372 if (amdgpu_connector->ddc_bus) {
373 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
374 amdgpu_connector->ddc_bus->rec.mask_clk_reg,
375 amdgpu_connector->ddc_bus->rec.mask_data_reg,
376 amdgpu_connector->ddc_bus->rec.a_clk_reg,
377 amdgpu_connector->ddc_bus->rec.a_data_reg,
378 amdgpu_connector->ddc_bus->rec.en_clk_reg,
379 amdgpu_connector->ddc_bus->rec.en_data_reg,
380 amdgpu_connector->ddc_bus->rec.y_clk_reg,
381 amdgpu_connector->ddc_bus->rec.y_data_reg);
382 if (amdgpu_connector->router.ddc_valid)
383 DRM_INFO(" DDC Router 0x%x/0x%x\n",
384 amdgpu_connector->router.ddc_mux_control_pin,
385 amdgpu_connector->router.ddc_mux_state);
386 if (amdgpu_connector->router.cd_valid)
387 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
388 amdgpu_connector->router.cd_mux_control_pin,
389 amdgpu_connector->router.cd_mux_state);
390 } else {
391 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
392 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
393 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
394 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
395 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
396 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
397 DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n");
398 }
399 DRM_INFO(" Encoders:\n");
400 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
401 amdgpu_encoder = to_amdgpu_encoder(encoder);
402 devices = amdgpu_encoder->devices & amdgpu_connector->devices;
403 if (devices) {
404 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
405 DRM_INFO(" CRT1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
406 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
407 DRM_INFO(" CRT2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
408 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
409 DRM_INFO(" LCD1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
410 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
411 DRM_INFO(" DFP1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
412 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
413 DRM_INFO(" DFP2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
414 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
415 DRM_INFO(" DFP3: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
416 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
417 DRM_INFO(" DFP4: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
418 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
419 DRM_INFO(" DFP5: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
420 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
421 DRM_INFO(" DFP6: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
422 if (devices & ATOM_DEVICE_TV1_SUPPORT)
423 DRM_INFO(" TV1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
424 if (devices & ATOM_DEVICE_CV_SUPPORT)
425 DRM_INFO(" CV: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
426 }
427 }
428 i++;
429 }
430}
431
432/**
433 * amdgpu_ddc_probe
434 *
435 */
436bool amdgpu_ddc_probe(struct amdgpu_connector *amdgpu_connector,
437 bool use_aux)
438{
439 u8 out = 0x0;
440 u8 buf[8];
441 int ret;
442 struct i2c_msg msgs[] = {
443 {
444 .addr = DDC_ADDR,
445 .flags = 0,
446 .len = 1,
447 .buf = &out,
448 },
449 {
450 .addr = DDC_ADDR,
451 .flags = I2C_M_RD,
452 .len = 8,
453 .buf = buf,
454 }
455 };
456
457 /* on hw with routers, select right port */
458 if (amdgpu_connector->router.ddc_valid)
459 amdgpu_i2c_router_select_ddc_port(amdgpu_connector);
460
461 if (use_aux) {
462 ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2);
463 } else {
464 ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2);
465 }
466
467 if (ret != 2)
468 /* Couldn't find an accessible DDC on this connector */
469 return false;
470 /* Probe also for valid EDID header
471 * EDID header starts with:
472 * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00.
473 * Only the first 6 bytes must be valid as
474 * drm_edid_block_valid() can fix the last 2 bytes */
475 if (drm_edid_header_is_valid(buf) < 6) {
476 /* Couldn't find an accessible EDID on this
477 * connector */
478 return false;
479 }
480 return true;
481}
482
483static void amdgpu_user_framebuffer_destroy(struct drm_framebuffer *fb)
484{
485 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
486
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300487 drm_gem_object_put_unlocked(amdgpu_fb->obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400488 drm_framebuffer_cleanup(fb);
489 kfree(amdgpu_fb);
490}
491
492static int amdgpu_user_framebuffer_create_handle(struct drm_framebuffer *fb,
493 struct drm_file *file_priv,
494 unsigned int *handle)
495{
496 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
497
498 return drm_gem_handle_create(file_priv, amdgpu_fb->obj, handle);
499}
500
501static const struct drm_framebuffer_funcs amdgpu_fb_funcs = {
502 .destroy = amdgpu_user_framebuffer_destroy,
503 .create_handle = amdgpu_user_framebuffer_create_handle,
504};
505
Christian König5d43be02017-10-26 18:06:23 +0200506uint32_t amdgpu_display_framebuffer_domains(struct amdgpu_device *adev)
507{
508 uint32_t domain = AMDGPU_GEM_DOMAIN_VRAM;
509
510 if (adev->asic_type >= CHIP_CARRIZO && adev->asic_type < CHIP_RAVEN &&
511 adev->flags & AMD_IS_APU)
512 domain |= AMDGPU_GEM_DOMAIN_GTT;
513
514 return domain;
515}
516
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400517int
518amdgpu_framebuffer_init(struct drm_device *dev,
519 struct amdgpu_framebuffer *rfb,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200520 const struct drm_mode_fb_cmd2 *mode_cmd,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400521 struct drm_gem_object *obj)
522{
523 int ret;
524 rfb->obj = obj;
Ville Syrjäläa3f913c2016-12-14 22:48:59 +0200525 drm_helper_mode_fill_fb_struct(dev, &rfb->base, mode_cmd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400526 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
527 if (ret) {
528 rfb->obj = NULL;
529 return ret;
530 }
531 return 0;
532}
533
Harry Wentlandb0fb6322017-01-12 09:07:38 -0500534struct drm_framebuffer *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400535amdgpu_user_framebuffer_create(struct drm_device *dev,
536 struct drm_file *file_priv,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200537 const struct drm_mode_fb_cmd2 *mode_cmd)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400538{
539 struct drm_gem_object *obj;
540 struct amdgpu_framebuffer *amdgpu_fb;
541 int ret;
542
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100543 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400544 if (obj == NULL) {
545 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
546 "can't create framebuffer\n", mode_cmd->handles[0]);
547 return ERR_PTR(-ENOENT);
548 }
549
Christopher James Halse Rogers17691522017-03-29 15:02:11 +1100550 /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */
551 if (obj->import_attach) {
552 DRM_DEBUG_KMS("Cannot create framebuffer from imported dma_buf\n");
553 return ERR_PTR(-EINVAL);
554 }
555
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400556 amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL);
557 if (amdgpu_fb == NULL) {
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300558 drm_gem_object_put_unlocked(obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400559 return ERR_PTR(-ENOMEM);
560 }
561
562 ret = amdgpu_framebuffer_init(dev, amdgpu_fb, mode_cmd, obj);
563 if (ret) {
564 kfree(amdgpu_fb);
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300565 drm_gem_object_put_unlocked(obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400566 return ERR_PTR(ret);
567 }
568
569 return &amdgpu_fb->base;
570}
571
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400572const struct drm_mode_config_funcs amdgpu_mode_funcs = {
573 .fb_create = amdgpu_user_framebuffer_create,
Noralf Trønnesab77e022017-12-05 19:24:55 +0100574 .output_poll_changed = drm_fb_helper_output_poll_changed,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400575};
576
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200577static const struct drm_prop_enum_list amdgpu_underscan_enum_list[] =
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400578{ { UNDERSCAN_OFF, "off" },
579 { UNDERSCAN_ON, "on" },
580 { UNDERSCAN_AUTO, "auto" },
581};
582
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200583static const struct drm_prop_enum_list amdgpu_audio_enum_list[] =
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400584{ { AMDGPU_AUDIO_DISABLE, "off" },
585 { AMDGPU_AUDIO_ENABLE, "on" },
586 { AMDGPU_AUDIO_AUTO, "auto" },
587};
588
589/* XXX support different dither options? spatial, temporal, both, etc. */
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200590static const struct drm_prop_enum_list amdgpu_dither_enum_list[] =
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400591{ { AMDGPU_FMT_DITHER_DISABLE, "off" },
592 { AMDGPU_FMT_DITHER_ENABLE, "on" },
593};
594
595int amdgpu_modeset_create_props(struct amdgpu_device *adev)
596{
597 int sz;
598
Nils Wallméniusf7e9e9f2016-12-14 21:52:45 +0100599 adev->mode_info.coherent_mode_property =
600 drm_property_create_range(adev->ddev, 0 , "coherent", 0, 1);
601 if (!adev->mode_info.coherent_mode_property)
602 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400603
604 adev->mode_info.load_detect_property =
605 drm_property_create_range(adev->ddev, 0, "load detection", 0, 1);
606 if (!adev->mode_info.load_detect_property)
607 return -ENOMEM;
608
609 drm_mode_create_scaling_mode_property(adev->ddev);
610
611 sz = ARRAY_SIZE(amdgpu_underscan_enum_list);
612 adev->mode_info.underscan_property =
613 drm_property_create_enum(adev->ddev, 0,
614 "underscan",
615 amdgpu_underscan_enum_list, sz);
616
617 adev->mode_info.underscan_hborder_property =
618 drm_property_create_range(adev->ddev, 0,
619 "underscan hborder", 0, 128);
620 if (!adev->mode_info.underscan_hborder_property)
621 return -ENOMEM;
622
623 adev->mode_info.underscan_vborder_property =
624 drm_property_create_range(adev->ddev, 0,
625 "underscan vborder", 0, 128);
626 if (!adev->mode_info.underscan_vborder_property)
627 return -ENOMEM;
628
629 sz = ARRAY_SIZE(amdgpu_audio_enum_list);
630 adev->mode_info.audio_property =
631 drm_property_create_enum(adev->ddev, 0,
632 "audio",
633 amdgpu_audio_enum_list, sz);
634
635 sz = ARRAY_SIZE(amdgpu_dither_enum_list);
636 adev->mode_info.dither_property =
637 drm_property_create_enum(adev->ddev, 0,
638 "dither",
639 amdgpu_dither_enum_list, sz);
640
641 return 0;
642}
643
644void amdgpu_update_display_priority(struct amdgpu_device *adev)
645{
646 /* adjustment options for the display watermarks */
647 if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2))
648 adev->mode_info.disp_priority = 0;
649 else
650 adev->mode_info.disp_priority = amdgpu_disp_priority;
651
652}
653
654static bool is_hdtv_mode(const struct drm_display_mode *mode)
655{
656 /* try and guess if this is a tv or a monitor */
657 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
658 (mode->vdisplay == 576) || /* 576p */
659 (mode->vdisplay == 720) || /* 720p */
660 (mode->vdisplay == 1080)) /* 1080p */
661 return true;
662 else
663 return false;
664}
665
666bool amdgpu_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
667 const struct drm_display_mode *mode,
668 struct drm_display_mode *adjusted_mode)
669{
670 struct drm_device *dev = crtc->dev;
671 struct drm_encoder *encoder;
672 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
673 struct amdgpu_encoder *amdgpu_encoder;
674 struct drm_connector *connector;
675 struct amdgpu_connector *amdgpu_connector;
676 u32 src_v = 1, dst_v = 1;
677 u32 src_h = 1, dst_h = 1;
678
679 amdgpu_crtc->h_border = 0;
680 amdgpu_crtc->v_border = 0;
681
682 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
683 if (encoder->crtc != crtc)
684 continue;
685 amdgpu_encoder = to_amdgpu_encoder(encoder);
686 connector = amdgpu_get_connector_for_encoder(encoder);
687 amdgpu_connector = to_amdgpu_connector(connector);
688
689 /* set scaling */
690 if (amdgpu_encoder->rmx_type == RMX_OFF)
691 amdgpu_crtc->rmx_type = RMX_OFF;
692 else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay ||
693 mode->vdisplay < amdgpu_encoder->native_mode.vdisplay)
694 amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type;
695 else
696 amdgpu_crtc->rmx_type = RMX_OFF;
697 /* copy native mode */
698 memcpy(&amdgpu_crtc->native_mode,
699 &amdgpu_encoder->native_mode,
700 sizeof(struct drm_display_mode));
701 src_v = crtc->mode.vdisplay;
702 dst_v = amdgpu_crtc->native_mode.vdisplay;
703 src_h = crtc->mode.hdisplay;
704 dst_h = amdgpu_crtc->native_mode.hdisplay;
705
706 /* fix up for overscan on hdmi */
707 if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
708 ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) ||
709 ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) &&
710 drm_detect_hdmi_monitor(amdgpu_connector_edid(connector)) &&
711 is_hdtv_mode(mode)))) {
712 if (amdgpu_encoder->underscan_hborder != 0)
713 amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder;
714 else
715 amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16;
716 if (amdgpu_encoder->underscan_vborder != 0)
717 amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder;
718 else
719 amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16;
720 amdgpu_crtc->rmx_type = RMX_FULL;
721 src_v = crtc->mode.vdisplay;
722 dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2);
723 src_h = crtc->mode.hdisplay;
724 dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2);
725 }
726 }
727 if (amdgpu_crtc->rmx_type != RMX_OFF) {
728 fixed20_12 a, b;
729 a.full = dfixed_const(src_v);
730 b.full = dfixed_const(dst_v);
731 amdgpu_crtc->vsc.full = dfixed_div(a, b);
732 a.full = dfixed_const(src_h);
733 b.full = dfixed_const(dst_h);
734 amdgpu_crtc->hsc.full = dfixed_div(a, b);
735 } else {
736 amdgpu_crtc->vsc.full = dfixed_const(1);
737 amdgpu_crtc->hsc.full = dfixed_const(1);
738 }
739 return true;
740}
741
742/*
743 * Retrieve current video scanout position of crtc on a given gpu, and
744 * an optional accurate timestamp of when query happened.
745 *
746 * \param dev Device to query.
Thierry Reding88e72712015-09-24 18:35:31 +0200747 * \param pipe Crtc to query.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400748 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500749 * For driver internal use only also supports these flags:
750 *
751 * USE_REAL_VBLANKSTART to use the real start of vblank instead
752 * of a fudged earlier start of vblank.
753 *
754 * GET_DISTANCE_TO_VBLANKSTART to return distance to the
755 * fudged earlier start of vblank in *vpos and the distance
756 * to true start of vblank in *hpos.
757 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400758 * \param *vpos Location where vertical scanout position should be stored.
759 * \param *hpos Location where horizontal scanout position should go.
760 * \param *stime Target location for timestamp taken immediately before
761 * scanout position query. Can be NULL to skip timestamp.
762 * \param *etime Target location for timestamp taken immediately after
763 * scanout position query. Can be NULL to skip timestamp.
764 *
765 * Returns vpos as a positive number while in active scanout area.
766 * Returns vpos as a negative number inside vblank, counting the number
767 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
768 * until start of active scanout / end of vblank."
769 *
770 * \return Flags, or'ed together as follows:
771 *
772 * DRM_SCANOUTPOS_VALID = Query successful.
773 * DRM_SCANOUTPOS_INVBL = Inside vblank.
774 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
775 * this flag means that returned position may be offset by a constant but
776 * unknown small number of scanlines wrt. real scanout position.
777 *
778 */
Thierry Reding88e72712015-09-24 18:35:31 +0200779int amdgpu_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
780 unsigned int flags, int *vpos, int *hpos,
781 ktime_t *stime, ktime_t *etime,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300782 const struct drm_display_mode *mode)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400783{
784 u32 vbl = 0, position = 0;
785 int vbl_start, vbl_end, vtotal, ret = 0;
786 bool in_vbl = true;
787
788 struct amdgpu_device *adev = dev->dev_private;
789
790 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
791
792 /* Get optional system timestamp before query. */
793 if (stime)
794 *stime = ktime_get();
795
Thierry Reding88e72712015-09-24 18:35:31 +0200796 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400797 ret |= DRM_SCANOUTPOS_VALID;
798
799 /* Get optional system timestamp after query. */
800 if (etime)
801 *etime = ktime_get();
802
803 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
804
805 /* Decode into vertical and horizontal scanout position. */
806 *vpos = position & 0x1fff;
807 *hpos = (position >> 16) & 0x1fff;
808
809 /* Valid vblank area boundaries from gpu retrieved? */
810 if (vbl > 0) {
811 /* Yes: Decode. */
812 ret |= DRM_SCANOUTPOS_ACCURATE;
813 vbl_start = vbl & 0x1fff;
814 vbl_end = (vbl >> 16) & 0x1fff;
815 }
816 else {
817 /* No: Fake something reasonable which gives at least ok results. */
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300818 vbl_start = mode->crtc_vdisplay;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400819 vbl_end = 0;
820 }
821
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500822 /* Called from driver internal vblank counter query code? */
823 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
824 /* Caller wants distance from real vbl_start in *hpos */
825 *hpos = *vpos - vbl_start;
826 }
827
828 /* Fudge vblank to start a few scanlines earlier to handle the
829 * problem that vblank irqs fire a few scanlines before start
830 * of vblank. Some driver internal callers need the true vblank
831 * start to be used and signal this via the USE_REAL_VBLANKSTART flag.
832 *
833 * The cause of the "early" vblank irq is that the irq is triggered
834 * by the line buffer logic when the line buffer read position enters
835 * the vblank, whereas our crtc scanout position naturally lags the
836 * line buffer read position.
837 */
838 if (!(flags & USE_REAL_VBLANKSTART))
839 vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines;
840
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400841 /* Test scanout position against vblank region. */
842 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
843 in_vbl = false;
844
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500845 /* In vblank? */
846 if (in_vbl)
847 ret |= DRM_SCANOUTPOS_IN_VBLANK;
848
849 /* Called from driver internal vblank counter query code? */
850 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
851 /* Caller wants distance from fudged earlier vbl_start */
852 *vpos -= vbl_start;
853 return ret;
854 }
855
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400856 /* Check if inside vblank area and apply corrective offsets:
857 * vpos will then be >=0 in video scanout area, but negative
858 * within vblank area, counting down the number of lines until
859 * start of scanout.
860 */
861
862 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
863 if (in_vbl && (*vpos >= vbl_start)) {
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300864 vtotal = mode->crtc_vtotal;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400865 *vpos = *vpos - vtotal;
866 }
867
868 /* Correct for shifted end of vbl at vbl_end. */
869 *vpos = *vpos - vbl_end;
870
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400871 return ret;
872}
873
874int amdgpu_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc)
875{
876 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
877 return AMDGPU_CRTC_IRQ_NONE;
878
879 switch (crtc) {
880 case 0:
881 return AMDGPU_CRTC_IRQ_VBLANK1;
882 case 1:
883 return AMDGPU_CRTC_IRQ_VBLANK2;
884 case 2:
885 return AMDGPU_CRTC_IRQ_VBLANK3;
886 case 3:
887 return AMDGPU_CRTC_IRQ_VBLANK4;
888 case 4:
889 return AMDGPU_CRTC_IRQ_VBLANK5;
890 case 5:
891 return AMDGPU_CRTC_IRQ_VBLANK6;
892 default:
893 return AMDGPU_CRTC_IRQ_NONE;
894 }
895}