blob: 38d47559f0985e71bac60088c5714ac8c27743b5 [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>
Noralf Trønnesab77e022017-12-05 19:24:55 +010037#include <drm/drm_fb_helper.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040038
Chris Wilsonf54d1862016-10-25 13:00:45 +010039static void amdgpu_flip_callback(struct dma_fence *f, struct dma_fence_cb *cb)
Christian König1ffd2652015-08-11 17:29:52 +020040{
Christian Königc3874b72016-02-11 15:48:30 +010041 struct amdgpu_flip_work *work =
42 container_of(cb, struct amdgpu_flip_work, cb);
Christian König1ffd2652015-08-11 17:29:52 +020043
Chris Wilsonf54d1862016-10-25 13:00:45 +010044 dma_fence_put(f);
Michel Dänzer325cbba2016-08-04 12:39:37 +090045 schedule_work(&work->flip_work.work);
Christian Königc3874b72016-02-11 15:48:30 +010046}
Christian König1ffd2652015-08-11 17:29:52 +020047
Christian Königc3874b72016-02-11 15:48:30 +010048static bool amdgpu_flip_handle_fence(struct amdgpu_flip_work *work,
Chris Wilsonf54d1862016-10-25 13:00:45 +010049 struct dma_fence **f)
Christian Königc3874b72016-02-11 15:48:30 +010050{
Chris Wilsonf54d1862016-10-25 13:00:45 +010051 struct dma_fence *fence= *f;
Christian König1ffd2652015-08-11 17:29:52 +020052
Christian Königc3874b72016-02-11 15:48:30 +010053 if (fence == NULL)
54 return false;
55
Christian König1ffd2652015-08-11 17:29:52 +020056 *f = NULL;
Christian Königc3874b72016-02-11 15:48:30 +010057
Chris Wilsonf54d1862016-10-25 13:00:45 +010058 if (!dma_fence_add_callback(fence, &work->cb, amdgpu_flip_callback))
Christian Königc3874b72016-02-11 15:48:30 +010059 return true;
60
Chris Wilsonf54d1862016-10-25 13:00:45 +010061 dma_fence_put(fence);
Christian Königc3874b72016-02-11 15:48:30 +010062 return false;
Christian König1ffd2652015-08-11 17:29:52 +020063}
Alex Deucherd38ceaf2015-04-20 16:55:21 -040064
65static void amdgpu_flip_work_func(struct work_struct *__work)
66{
Michel Dänzer325cbba2016-08-04 12:39:37 +090067 struct delayed_work *delayed_work =
68 container_of(__work, struct delayed_work, work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040069 struct amdgpu_flip_work *work =
Michel Dänzer325cbba2016-08-04 12:39:37 +090070 container_of(delayed_work, struct amdgpu_flip_work, flip_work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040071 struct amdgpu_device *adev = work->adev;
Alex Deucherf93932b2016-10-21 16:36:12 -040072 struct amdgpu_crtc *amdgpu_crtc = adev->mode_info.crtcs[work->crtc_id];
Alex Deucherd38ceaf2015-04-20 16:55:21 -040073
Alex Deucherf93932b2016-10-21 16:36:12 -040074 struct drm_crtc *crtc = &amdgpu_crtc->base;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040075 unsigned long flags;
Michel Dänzer325cbba2016-08-04 12:39:37 +090076 unsigned i;
77 int vpos, hpos;
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
Michel Dänzer325cbba2016-08-04 12:39:37 +090086 /* Wait until we're out of the vertical blank period before the one
87 * targeted by the flip
Alex Deucher8e36f9d2015-12-03 12:31:56 -050088 */
Alex Deucherf93932b2016-10-21 16:36:12 -040089 if (amdgpu_crtc->enabled &&
Michel Dänzer325cbba2016-08-04 12:39:37 +090090 (amdgpu_get_crtc_scanoutpos(adev->ddev, work->crtc_id, 0,
91 &vpos, &hpos, NULL, NULL,
92 &crtc->hwmode)
93 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
94 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
95 (int)(work->target_vblank -
Alex Deucherf93932b2016-10-21 16:36:12 -040096 amdgpu_get_vblank_counter_kms(adev->ddev, amdgpu_crtc->crtc_id)) > 0) {
Michel Dänzer325cbba2016-08-04 12:39:37 +090097 schedule_delayed_work(&work->flip_work, usecs_to_jiffies(1000));
98 return;
Edward O'Callaghan9c3578a2016-07-12 10:17:51 +100099 }
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500100
Michel Dänzer325cbba2016-08-04 12:39:37 +0900101 /* We borrow the event spin lock for protecting flip_status */
102 spin_lock_irqsave(&crtc->dev->event_lock, flags);
Mario Kleinere1d09dc2016-02-19 02:06:39 +0100103
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400104 /* Do the flip (mmio) */
Alex Deuchercb9e59d2016-05-05 16:03:57 -0400105 adev->mode_info.funcs->page_flip(adev, work->crtc_id, work->base, work->async);
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400106
107 /* Set the flip status */
Alex Deucherf93932b2016-10-21 16:36:12 -0400108 amdgpu_crtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400109 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
Vitaly Prosyak6bd9e872015-10-20 15:02:03 -0400110
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400111
112 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_SUBMITTED, work: %p,\n",
Alex Deucherf93932b2016-10-21 16:36:12 -0400113 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
Andrey Grodzovskybd4c72d2016-03-30 17:34:27 -0400114
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115}
116
117/*
118 * Handle unpin events outside the interrupt handler proper.
119 */
120static void amdgpu_unpin_work_func(struct work_struct *__work)
121{
122 struct amdgpu_flip_work *work =
123 container_of(__work, struct amdgpu_flip_work, unpin_work);
124 int r;
125
126 /* unpin of the old buffer */
Michel Dänzerc81a1a72017-04-28 17:28:14 +0900127 r = amdgpu_bo_reserve(work->old_abo, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400128 if (likely(r == 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200129 r = amdgpu_bo_unpin(work->old_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130 if (unlikely(r != 0)) {
131 DRM_ERROR("failed to unpin buffer after flip\n");
132 }
Christian König765e7fb2016-09-15 15:06:50 +0200133 amdgpu_bo_unreserve(work->old_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134 } else
135 DRM_ERROR("failed to reserve buffer after flip\n");
136
Christian König765e7fb2016-09-15 15:06:50 +0200137 amdgpu_bo_unref(&work->old_abo);
Christian König1ffd2652015-08-11 17:29:52 +0200138 kfree(work->shared);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400139 kfree(work);
140}
141
Harry Wentland5f42aa32017-09-13 15:17:19 -0400142int amdgpu_crtc_page_flip_target(struct drm_crtc *crtc,
143 struct drm_framebuffer *fb,
144 struct drm_pending_vblank_event *event,
145 uint32_t page_flip_flags, uint32_t target,
146 struct drm_modeset_acquire_ctx *ctx)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400147{
148 struct drm_device *dev = crtc->dev;
149 struct amdgpu_device *adev = dev->dev_private;
150 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
151 struct amdgpu_framebuffer *old_amdgpu_fb;
152 struct amdgpu_framebuffer *new_amdgpu_fb;
153 struct drm_gem_object *obj;
154 struct amdgpu_flip_work *work;
Christian König765e7fb2016-09-15 15:06:50 +0200155 struct amdgpu_bo *new_abo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400156 unsigned long flags;
157 u64 tiling_flags;
158 u64 base;
Harry Wentland5f42aa32017-09-13 15:17:19 -0400159 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400160
161 work = kzalloc(sizeof *work, GFP_KERNEL);
162 if (work == NULL)
163 return -ENOMEM;
164
Michel Dänzer325cbba2016-08-04 12:39:37 +0900165 INIT_DELAYED_WORK(&work->flip_work, amdgpu_flip_work_func);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400166 INIT_WORK(&work->unpin_work, amdgpu_unpin_work_func);
167
168 work->event = event;
169 work->adev = adev;
170 work->crtc_id = amdgpu_crtc->crtc_id;
Alex Deuchercb9e59d2016-05-05 16:03:57 -0400171 work->async = (page_flip_flags & DRM_MODE_PAGE_FLIP_ASYNC) != 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400172
173 /* schedule unpin of the old buffer */
174 old_amdgpu_fb = to_amdgpu_framebuffer(crtc->primary->fb);
175 obj = old_amdgpu_fb->obj;
176
177 /* take a reference to the old object */
Christian König765e7fb2016-09-15 15:06:50 +0200178 work->old_abo = gem_to_amdgpu_bo(obj);
179 amdgpu_bo_ref(work->old_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400180
181 new_amdgpu_fb = to_amdgpu_framebuffer(fb);
182 obj = new_amdgpu_fb->obj;
Christian König765e7fb2016-09-15 15:06:50 +0200183 new_abo = gem_to_amdgpu_bo(obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400184
185 /* pin the new buffer */
Christian König765e7fb2016-09-15 15:06:50 +0200186 r = amdgpu_bo_reserve(new_abo, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400187 if (unlikely(r != 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200188 DRM_ERROR("failed to reserve new abo buffer before flip\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400189 goto cleanup;
190 }
191
Alex Deucher7fe28572016-12-07 16:14:38 -0500192 r = amdgpu_bo_pin(new_abo, AMDGPU_GEM_DOMAIN_VRAM, &base);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400193 if (unlikely(r != 0)) {
Christian König765e7fb2016-09-15 15:06:50 +0200194 DRM_ERROR("failed to pin new abo buffer before flip\n");
Michel Dänzeree7fd952016-06-24 17:30:08 +0900195 goto unreserve;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400196 }
197
Christian König765e7fb2016-09-15 15:06:50 +0200198 r = reservation_object_get_fences_rcu(new_abo->tbo.resv, &work->excl,
Christian König1ffd2652015-08-11 17:29:52 +0200199 &work->shared_count,
200 &work->shared);
201 if (unlikely(r != 0)) {
Christian König1ffd2652015-08-11 17:29:52 +0200202 DRM_ERROR("failed to get fences for buffer\n");
Michel Dänzeree7fd952016-06-24 17:30:08 +0900203 goto unpin;
Christian König1ffd2652015-08-11 17:29:52 +0200204 }
205
Christian König765e7fb2016-09-15 15:06:50 +0200206 amdgpu_bo_get_tiling_flags(new_abo, &tiling_flags);
207 amdgpu_bo_unreserve(new_abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400208
209 work->base = base;
Michel Dänzer325cbba2016-08-04 12:39:37 +0900210 work->target_vblank = target - drm_crtc_vblank_count(crtc) +
211 amdgpu_get_vblank_counter_kms(dev, work->crtc_id);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400212
213 /* we borrow the event spin lock for protecting flip_wrok */
214 spin_lock_irqsave(&crtc->dev->event_lock, flags);
215 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_NONE) {
216 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
217 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
218 r = -EBUSY;
Michel Dänzer325cbba2016-08-04 12:39:37 +0900219 goto pflip_cleanup;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400220 }
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400221
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400222 amdgpu_crtc->pflip_status = AMDGPU_FLIP_PENDING;
223 amdgpu_crtc->pflip_works = work;
224
Harry Wentland5f42aa32017-09-13 15:17:19 -0400225
226 DRM_DEBUG_DRIVER("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_PENDING, work: %p,\n",
227 amdgpu_crtc->crtc_id, amdgpu_crtc, work);
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400228 /* update crtc fb */
229 crtc->primary->fb = fb;
230 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400231 amdgpu_flip_work_func(&work->flip_work.work);
Harry Wentland9c5b2b02017-09-13 10:03:31 -0400232 return 0;
Harry Wentland5f42aa32017-09-13 15:17:19 -0400233
234pflip_cleanup:
235 if (unlikely(amdgpu_bo_reserve(new_abo, false) != 0)) {
236 DRM_ERROR("failed to reserve new abo in error path\n");
237 goto cleanup;
238 }
239unpin:
240 if (unlikely(amdgpu_bo_unpin(new_abo) != 0)) {
241 DRM_ERROR("failed to unpin new abo in error path\n");
242 }
243unreserve:
244 amdgpu_bo_unreserve(new_abo);
245
246cleanup:
247 amdgpu_bo_unref(&work->old_abo);
248 dma_fence_put(work->excl);
249 for (i = 0; i < work->shared_count; ++i)
250 dma_fence_put(work->shared[i]);
251 kfree(work->shared);
252 kfree(work);
253
254 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400255}
256
Daniel Vettera4eff9a2017-03-22 22:50:57 +0100257int amdgpu_crtc_set_config(struct drm_mode_set *set,
258 struct drm_modeset_acquire_ctx *ctx)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400259{
260 struct drm_device *dev;
261 struct amdgpu_device *adev;
262 struct drm_crtc *crtc;
263 bool active = false;
264 int ret;
265
266 if (!set || !set->crtc)
267 return -EINVAL;
268
269 dev = set->crtc->dev;
270
271 ret = pm_runtime_get_sync(dev->dev);
272 if (ret < 0)
273 return ret;
274
Daniel Vettera4eff9a2017-03-22 22:50:57 +0100275 ret = drm_crtc_helper_set_config(set, ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276
277 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
278 if (crtc->enabled)
279 active = true;
280
281 pm_runtime_mark_last_busy(dev->dev);
282
283 adev = dev->dev_private;
284 /* if we have active crtcs and we don't have a power ref,
285 take the current one */
286 if (active && !adev->have_disp_power_ref) {
287 adev->have_disp_power_ref = true;
288 return ret;
289 }
290 /* if we have no active crtcs, then drop the power ref
291 we got before */
292 if (!active && adev->have_disp_power_ref) {
293 pm_runtime_put_autosuspend(dev->dev);
294 adev->have_disp_power_ref = false;
295 }
296
297 /* drop the power reference we got coming in here */
298 pm_runtime_put_autosuspend(dev->dev);
299 return ret;
300}
301
Emily Dengc6e14f42016-08-08 11:30:50 +0800302static const char *encoder_names[41] = {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400303 "NONE",
304 "INTERNAL_LVDS",
305 "INTERNAL_TMDS1",
306 "INTERNAL_TMDS2",
307 "INTERNAL_DAC1",
308 "INTERNAL_DAC2",
309 "INTERNAL_SDVOA",
310 "INTERNAL_SDVOB",
311 "SI170B",
312 "CH7303",
313 "CH7301",
314 "INTERNAL_DVO1",
315 "EXTERNAL_SDVOA",
316 "EXTERNAL_SDVOB",
317 "TITFP513",
318 "INTERNAL_LVTM1",
319 "VT1623",
320 "HDMI_SI1930",
321 "HDMI_INTERNAL",
322 "INTERNAL_KLDSCP_TMDS1",
323 "INTERNAL_KLDSCP_DVO1",
324 "INTERNAL_KLDSCP_DAC1",
325 "INTERNAL_KLDSCP_DAC2",
326 "SI178",
327 "MVPU_FPGA",
328 "INTERNAL_DDI",
329 "VT1625",
330 "HDMI_SI1932",
331 "DP_AN9801",
332 "DP_DP501",
333 "INTERNAL_UNIPHY",
334 "INTERNAL_KLDSCP_LVTMA",
335 "INTERNAL_UNIPHY1",
336 "INTERNAL_UNIPHY2",
337 "NUTMEG",
338 "TRAVIS",
339 "INTERNAL_VCE",
340 "INTERNAL_UNIPHY3",
Emily Dengc6e14f42016-08-08 11:30:50 +0800341 "HDMI_ANX9805",
342 "INTERNAL_AMCLK",
343 "VIRTUAL",
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400344};
345
346static const char *hpd_names[6] = {
347 "HPD1",
348 "HPD2",
349 "HPD3",
350 "HPD4",
351 "HPD5",
352 "HPD6",
353};
354
355void amdgpu_print_display_setup(struct drm_device *dev)
356{
357 struct drm_connector *connector;
358 struct amdgpu_connector *amdgpu_connector;
359 struct drm_encoder *encoder;
360 struct amdgpu_encoder *amdgpu_encoder;
361 uint32_t devices;
362 int i = 0;
363
364 DRM_INFO("AMDGPU Display Connectors\n");
365 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
366 amdgpu_connector = to_amdgpu_connector(connector);
367 DRM_INFO("Connector %d:\n", i);
368 DRM_INFO(" %s\n", connector->name);
369 if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE)
370 DRM_INFO(" %s\n", hpd_names[amdgpu_connector->hpd.hpd]);
371 if (amdgpu_connector->ddc_bus) {
372 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
373 amdgpu_connector->ddc_bus->rec.mask_clk_reg,
374 amdgpu_connector->ddc_bus->rec.mask_data_reg,
375 amdgpu_connector->ddc_bus->rec.a_clk_reg,
376 amdgpu_connector->ddc_bus->rec.a_data_reg,
377 amdgpu_connector->ddc_bus->rec.en_clk_reg,
378 amdgpu_connector->ddc_bus->rec.en_data_reg,
379 amdgpu_connector->ddc_bus->rec.y_clk_reg,
380 amdgpu_connector->ddc_bus->rec.y_data_reg);
381 if (amdgpu_connector->router.ddc_valid)
382 DRM_INFO(" DDC Router 0x%x/0x%x\n",
383 amdgpu_connector->router.ddc_mux_control_pin,
384 amdgpu_connector->router.ddc_mux_state);
385 if (amdgpu_connector->router.cd_valid)
386 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
387 amdgpu_connector->router.cd_mux_control_pin,
388 amdgpu_connector->router.cd_mux_state);
389 } else {
390 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
391 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
392 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
393 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
394 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
395 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
396 DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n");
397 }
398 DRM_INFO(" Encoders:\n");
399 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
400 amdgpu_encoder = to_amdgpu_encoder(encoder);
401 devices = amdgpu_encoder->devices & amdgpu_connector->devices;
402 if (devices) {
403 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
404 DRM_INFO(" CRT1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
405 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
406 DRM_INFO(" CRT2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
407 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
408 DRM_INFO(" LCD1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
409 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
410 DRM_INFO(" DFP1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
411 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
412 DRM_INFO(" DFP2: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
413 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
414 DRM_INFO(" DFP3: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
415 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
416 DRM_INFO(" DFP4: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
417 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
418 DRM_INFO(" DFP5: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
419 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
420 DRM_INFO(" DFP6: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
421 if (devices & ATOM_DEVICE_TV1_SUPPORT)
422 DRM_INFO(" TV1: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
423 if (devices & ATOM_DEVICE_CV_SUPPORT)
424 DRM_INFO(" CV: %s\n", encoder_names[amdgpu_encoder->encoder_id]);
425 }
426 }
427 i++;
428 }
429}
430
431/**
432 * amdgpu_ddc_probe
433 *
434 */
435bool amdgpu_ddc_probe(struct amdgpu_connector *amdgpu_connector,
436 bool use_aux)
437{
438 u8 out = 0x0;
439 u8 buf[8];
440 int ret;
441 struct i2c_msg msgs[] = {
442 {
443 .addr = DDC_ADDR,
444 .flags = 0,
445 .len = 1,
446 .buf = &out,
447 },
448 {
449 .addr = DDC_ADDR,
450 .flags = I2C_M_RD,
451 .len = 8,
452 .buf = buf,
453 }
454 };
455
456 /* on hw with routers, select right port */
457 if (amdgpu_connector->router.ddc_valid)
458 amdgpu_i2c_router_select_ddc_port(amdgpu_connector);
459
460 if (use_aux) {
461 ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2);
462 } else {
463 ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2);
464 }
465
466 if (ret != 2)
467 /* Couldn't find an accessible DDC on this connector */
468 return false;
469 /* Probe also for valid EDID header
470 * EDID header starts with:
471 * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00.
472 * Only the first 6 bytes must be valid as
473 * drm_edid_block_valid() can fix the last 2 bytes */
474 if (drm_edid_header_is_valid(buf) < 6) {
475 /* Couldn't find an accessible EDID on this
476 * connector */
477 return false;
478 }
479 return true;
480}
481
482static void amdgpu_user_framebuffer_destroy(struct drm_framebuffer *fb)
483{
484 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
485
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300486 drm_gem_object_put_unlocked(amdgpu_fb->obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400487 drm_framebuffer_cleanup(fb);
488 kfree(amdgpu_fb);
489}
490
491static int amdgpu_user_framebuffer_create_handle(struct drm_framebuffer *fb,
492 struct drm_file *file_priv,
493 unsigned int *handle)
494{
495 struct amdgpu_framebuffer *amdgpu_fb = to_amdgpu_framebuffer(fb);
496
497 return drm_gem_handle_create(file_priv, amdgpu_fb->obj, handle);
498}
499
500static const struct drm_framebuffer_funcs amdgpu_fb_funcs = {
501 .destroy = amdgpu_user_framebuffer_destroy,
502 .create_handle = amdgpu_user_framebuffer_create_handle,
503};
504
505int
506amdgpu_framebuffer_init(struct drm_device *dev,
507 struct amdgpu_framebuffer *rfb,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200508 const struct drm_mode_fb_cmd2 *mode_cmd,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400509 struct drm_gem_object *obj)
510{
511 int ret;
512 rfb->obj = obj;
Ville Syrjäläa3f913c2016-12-14 22:48:59 +0200513 drm_helper_mode_fill_fb_struct(dev, &rfb->base, mode_cmd);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400514 ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs);
515 if (ret) {
516 rfb->obj = NULL;
517 return ret;
518 }
519 return 0;
520}
521
Harry Wentlandb0fb6322017-01-12 09:07:38 -0500522struct drm_framebuffer *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400523amdgpu_user_framebuffer_create(struct drm_device *dev,
524 struct drm_file *file_priv,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200525 const struct drm_mode_fb_cmd2 *mode_cmd)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400526{
527 struct drm_gem_object *obj;
528 struct amdgpu_framebuffer *amdgpu_fb;
529 int ret;
530
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100531 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400532 if (obj == NULL) {
533 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
534 "can't create framebuffer\n", mode_cmd->handles[0]);
535 return ERR_PTR(-ENOENT);
536 }
537
Christopher James Halse Rogers17691522017-03-29 15:02:11 +1100538 /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */
539 if (obj->import_attach) {
540 DRM_DEBUG_KMS("Cannot create framebuffer from imported dma_buf\n");
541 return ERR_PTR(-EINVAL);
542 }
543
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400544 amdgpu_fb = kzalloc(sizeof(*amdgpu_fb), GFP_KERNEL);
545 if (amdgpu_fb == NULL) {
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300546 drm_gem_object_put_unlocked(obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400547 return ERR_PTR(-ENOMEM);
548 }
549
550 ret = amdgpu_framebuffer_init(dev, amdgpu_fb, mode_cmd, obj);
551 if (ret) {
552 kfree(amdgpu_fb);
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300553 drm_gem_object_put_unlocked(obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400554 return ERR_PTR(ret);
555 }
556
557 return &amdgpu_fb->base;
558}
559
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400560const struct drm_mode_config_funcs amdgpu_mode_funcs = {
561 .fb_create = amdgpu_user_framebuffer_create,
Noralf Trønnesab77e022017-12-05 19:24:55 +0100562 .output_poll_changed = drm_fb_helper_output_poll_changed,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400563};
564
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200565static const struct drm_prop_enum_list amdgpu_underscan_enum_list[] =
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400566{ { UNDERSCAN_OFF, "off" },
567 { UNDERSCAN_ON, "on" },
568 { UNDERSCAN_AUTO, "auto" },
569};
570
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200571static const struct drm_prop_enum_list amdgpu_audio_enum_list[] =
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400572{ { AMDGPU_AUDIO_DISABLE, "off" },
573 { AMDGPU_AUDIO_ENABLE, "on" },
574 { AMDGPU_AUDIO_AUTO, "auto" },
575};
576
577/* XXX support different dither options? spatial, temporal, both, etc. */
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200578static const struct drm_prop_enum_list amdgpu_dither_enum_list[] =
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400579{ { AMDGPU_FMT_DITHER_DISABLE, "off" },
580 { AMDGPU_FMT_DITHER_ENABLE, "on" },
581};
582
583int amdgpu_modeset_create_props(struct amdgpu_device *adev)
584{
585 int sz;
586
Nils Wallméniusf7e9e9f2016-12-14 21:52:45 +0100587 adev->mode_info.coherent_mode_property =
588 drm_property_create_range(adev->ddev, 0 , "coherent", 0, 1);
589 if (!adev->mode_info.coherent_mode_property)
590 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400591
592 adev->mode_info.load_detect_property =
593 drm_property_create_range(adev->ddev, 0, "load detection", 0, 1);
594 if (!adev->mode_info.load_detect_property)
595 return -ENOMEM;
596
597 drm_mode_create_scaling_mode_property(adev->ddev);
598
599 sz = ARRAY_SIZE(amdgpu_underscan_enum_list);
600 adev->mode_info.underscan_property =
601 drm_property_create_enum(adev->ddev, 0,
602 "underscan",
603 amdgpu_underscan_enum_list, sz);
604
605 adev->mode_info.underscan_hborder_property =
606 drm_property_create_range(adev->ddev, 0,
607 "underscan hborder", 0, 128);
608 if (!adev->mode_info.underscan_hborder_property)
609 return -ENOMEM;
610
611 adev->mode_info.underscan_vborder_property =
612 drm_property_create_range(adev->ddev, 0,
613 "underscan vborder", 0, 128);
614 if (!adev->mode_info.underscan_vborder_property)
615 return -ENOMEM;
616
617 sz = ARRAY_SIZE(amdgpu_audio_enum_list);
618 adev->mode_info.audio_property =
619 drm_property_create_enum(adev->ddev, 0,
620 "audio",
621 amdgpu_audio_enum_list, sz);
622
623 sz = ARRAY_SIZE(amdgpu_dither_enum_list);
624 adev->mode_info.dither_property =
625 drm_property_create_enum(adev->ddev, 0,
626 "dither",
627 amdgpu_dither_enum_list, sz);
628
629 return 0;
630}
631
632void amdgpu_update_display_priority(struct amdgpu_device *adev)
633{
634 /* adjustment options for the display watermarks */
635 if ((amdgpu_disp_priority == 0) || (amdgpu_disp_priority > 2))
636 adev->mode_info.disp_priority = 0;
637 else
638 adev->mode_info.disp_priority = amdgpu_disp_priority;
639
640}
641
642static bool is_hdtv_mode(const struct drm_display_mode *mode)
643{
644 /* try and guess if this is a tv or a monitor */
645 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
646 (mode->vdisplay == 576) || /* 576p */
647 (mode->vdisplay == 720) || /* 720p */
648 (mode->vdisplay == 1080)) /* 1080p */
649 return true;
650 else
651 return false;
652}
653
654bool amdgpu_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
655 const struct drm_display_mode *mode,
656 struct drm_display_mode *adjusted_mode)
657{
658 struct drm_device *dev = crtc->dev;
659 struct drm_encoder *encoder;
660 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
661 struct amdgpu_encoder *amdgpu_encoder;
662 struct drm_connector *connector;
663 struct amdgpu_connector *amdgpu_connector;
664 u32 src_v = 1, dst_v = 1;
665 u32 src_h = 1, dst_h = 1;
666
667 amdgpu_crtc->h_border = 0;
668 amdgpu_crtc->v_border = 0;
669
670 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
671 if (encoder->crtc != crtc)
672 continue;
673 amdgpu_encoder = to_amdgpu_encoder(encoder);
674 connector = amdgpu_get_connector_for_encoder(encoder);
675 amdgpu_connector = to_amdgpu_connector(connector);
676
677 /* set scaling */
678 if (amdgpu_encoder->rmx_type == RMX_OFF)
679 amdgpu_crtc->rmx_type = RMX_OFF;
680 else if (mode->hdisplay < amdgpu_encoder->native_mode.hdisplay ||
681 mode->vdisplay < amdgpu_encoder->native_mode.vdisplay)
682 amdgpu_crtc->rmx_type = amdgpu_encoder->rmx_type;
683 else
684 amdgpu_crtc->rmx_type = RMX_OFF;
685 /* copy native mode */
686 memcpy(&amdgpu_crtc->native_mode,
687 &amdgpu_encoder->native_mode,
688 sizeof(struct drm_display_mode));
689 src_v = crtc->mode.vdisplay;
690 dst_v = amdgpu_crtc->native_mode.vdisplay;
691 src_h = crtc->mode.hdisplay;
692 dst_h = amdgpu_crtc->native_mode.hdisplay;
693
694 /* fix up for overscan on hdmi */
695 if ((!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
696 ((amdgpu_encoder->underscan_type == UNDERSCAN_ON) ||
697 ((amdgpu_encoder->underscan_type == UNDERSCAN_AUTO) &&
698 drm_detect_hdmi_monitor(amdgpu_connector_edid(connector)) &&
699 is_hdtv_mode(mode)))) {
700 if (amdgpu_encoder->underscan_hborder != 0)
701 amdgpu_crtc->h_border = amdgpu_encoder->underscan_hborder;
702 else
703 amdgpu_crtc->h_border = (mode->hdisplay >> 5) + 16;
704 if (amdgpu_encoder->underscan_vborder != 0)
705 amdgpu_crtc->v_border = amdgpu_encoder->underscan_vborder;
706 else
707 amdgpu_crtc->v_border = (mode->vdisplay >> 5) + 16;
708 amdgpu_crtc->rmx_type = RMX_FULL;
709 src_v = crtc->mode.vdisplay;
710 dst_v = crtc->mode.vdisplay - (amdgpu_crtc->v_border * 2);
711 src_h = crtc->mode.hdisplay;
712 dst_h = crtc->mode.hdisplay - (amdgpu_crtc->h_border * 2);
713 }
714 }
715 if (amdgpu_crtc->rmx_type != RMX_OFF) {
716 fixed20_12 a, b;
717 a.full = dfixed_const(src_v);
718 b.full = dfixed_const(dst_v);
719 amdgpu_crtc->vsc.full = dfixed_div(a, b);
720 a.full = dfixed_const(src_h);
721 b.full = dfixed_const(dst_h);
722 amdgpu_crtc->hsc.full = dfixed_div(a, b);
723 } else {
724 amdgpu_crtc->vsc.full = dfixed_const(1);
725 amdgpu_crtc->hsc.full = dfixed_const(1);
726 }
727 return true;
728}
729
730/*
731 * Retrieve current video scanout position of crtc on a given gpu, and
732 * an optional accurate timestamp of when query happened.
733 *
734 * \param dev Device to query.
Thierry Reding88e72712015-09-24 18:35:31 +0200735 * \param pipe Crtc to query.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400736 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500737 * For driver internal use only also supports these flags:
738 *
739 * USE_REAL_VBLANKSTART to use the real start of vblank instead
740 * of a fudged earlier start of vblank.
741 *
742 * GET_DISTANCE_TO_VBLANKSTART to return distance to the
743 * fudged earlier start of vblank in *vpos and the distance
744 * to true start of vblank in *hpos.
745 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400746 * \param *vpos Location where vertical scanout position should be stored.
747 * \param *hpos Location where horizontal scanout position should go.
748 * \param *stime Target location for timestamp taken immediately before
749 * scanout position query. Can be NULL to skip timestamp.
750 * \param *etime Target location for timestamp taken immediately after
751 * scanout position query. Can be NULL to skip timestamp.
752 *
753 * Returns vpos as a positive number while in active scanout area.
754 * Returns vpos as a negative number inside vblank, counting the number
755 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
756 * until start of active scanout / end of vblank."
757 *
758 * \return Flags, or'ed together as follows:
759 *
760 * DRM_SCANOUTPOS_VALID = Query successful.
761 * DRM_SCANOUTPOS_INVBL = Inside vblank.
762 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
763 * this flag means that returned position may be offset by a constant but
764 * unknown small number of scanlines wrt. real scanout position.
765 *
766 */
Thierry Reding88e72712015-09-24 18:35:31 +0200767int amdgpu_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
768 unsigned int flags, int *vpos, int *hpos,
769 ktime_t *stime, ktime_t *etime,
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300770 const struct drm_display_mode *mode)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771{
772 u32 vbl = 0, position = 0;
773 int vbl_start, vbl_end, vtotal, ret = 0;
774 bool in_vbl = true;
775
776 struct amdgpu_device *adev = dev->dev_private;
777
778 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
779
780 /* Get optional system timestamp before query. */
781 if (stime)
782 *stime = ktime_get();
783
Thierry Reding88e72712015-09-24 18:35:31 +0200784 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400785 ret |= DRM_SCANOUTPOS_VALID;
786
787 /* Get optional system timestamp after query. */
788 if (etime)
789 *etime = ktime_get();
790
791 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
792
793 /* Decode into vertical and horizontal scanout position. */
794 *vpos = position & 0x1fff;
795 *hpos = (position >> 16) & 0x1fff;
796
797 /* Valid vblank area boundaries from gpu retrieved? */
798 if (vbl > 0) {
799 /* Yes: Decode. */
800 ret |= DRM_SCANOUTPOS_ACCURATE;
801 vbl_start = vbl & 0x1fff;
802 vbl_end = (vbl >> 16) & 0x1fff;
803 }
804 else {
805 /* No: Fake something reasonable which gives at least ok results. */
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300806 vbl_start = mode->crtc_vdisplay;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400807 vbl_end = 0;
808 }
809
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500810 /* Called from driver internal vblank counter query code? */
811 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
812 /* Caller wants distance from real vbl_start in *hpos */
813 *hpos = *vpos - vbl_start;
814 }
815
816 /* Fudge vblank to start a few scanlines earlier to handle the
817 * problem that vblank irqs fire a few scanlines before start
818 * of vblank. Some driver internal callers need the true vblank
819 * start to be used and signal this via the USE_REAL_VBLANKSTART flag.
820 *
821 * The cause of the "early" vblank irq is that the irq is triggered
822 * by the line buffer logic when the line buffer read position enters
823 * the vblank, whereas our crtc scanout position naturally lags the
824 * line buffer read position.
825 */
826 if (!(flags & USE_REAL_VBLANKSTART))
827 vbl_start -= adev->mode_info.crtcs[pipe]->lb_vblank_lead_lines;
828
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400829 /* Test scanout position against vblank region. */
830 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
831 in_vbl = false;
832
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500833 /* In vblank? */
834 if (in_vbl)
835 ret |= DRM_SCANOUTPOS_IN_VBLANK;
836
837 /* Called from driver internal vblank counter query code? */
838 if (flags & GET_DISTANCE_TO_VBLANKSTART) {
839 /* Caller wants distance from fudged earlier vbl_start */
840 *vpos -= vbl_start;
841 return ret;
842 }
843
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400844 /* Check if inside vblank area and apply corrective offsets:
845 * vpos will then be >=0 in video scanout area, but negative
846 * within vblank area, counting down the number of lines until
847 * start of scanout.
848 */
849
850 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
851 if (in_vbl && (*vpos >= vbl_start)) {
Ville Syrjälä3bb403b2015-09-14 22:43:44 +0300852 vtotal = mode->crtc_vtotal;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400853 *vpos = *vpos - vtotal;
854 }
855
856 /* Correct for shifted end of vbl at vbl_end. */
857 *vpos = *vpos - vbl_end;
858
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400859 return ret;
860}
861
862int amdgpu_crtc_idx_to_irq_type(struct amdgpu_device *adev, int crtc)
863{
864 if (crtc < 0 || crtc >= adev->mode_info.num_crtc)
865 return AMDGPU_CRTC_IRQ_NONE;
866
867 switch (crtc) {
868 case 0:
869 return AMDGPU_CRTC_IRQ_VBLANK1;
870 case 1:
871 return AMDGPU_CRTC_IRQ_VBLANK2;
872 case 2:
873 return AMDGPU_CRTC_IRQ_VBLANK3;
874 case 3:
875 return AMDGPU_CRTC_IRQ_VBLANK4;
876 case 4:
877 return AMDGPU_CRTC_IRQ_VBLANK5;
878 case 5:
879 return AMDGPU_CRTC_IRQ_VBLANK6;
880 default:
881 return AMDGPU_CRTC_IRQ_NONE;
882 }
883}