blob: 65501af453beb0d917cb24e58846dbe91ac76b74 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
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 */
David Howells760285e2012-10-02 18:01:07 +010026#include <drm/drmP.h>
27#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020028#include "radeon.h"
29
30#include "atom.h"
31#include <asm/div64.h>
32
Dave Airlie10ebc0b2012-09-17 14:40:31 +100033#include <linux/pm_runtime.h>
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/drm_crtc_helper.h>
35#include <drm/drm_edid.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020036
Christian König32167012014-03-28 18:55:10 +010037#include <linux/gcd.h>
38
Jerome Glisse771fe6b2009-06-05 14:42:42 +020039static void avivo_crtc_load_lut(struct drm_crtc *crtc)
40{
41 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
42 struct drm_device *dev = crtc->dev;
43 struct radeon_device *rdev = dev->dev_private;
44 int i;
45
Dave Airlied9fdaaf2010-08-02 10:42:55 +100046 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020047 WREG32(AVIVO_DC_LUTA_CONTROL + radeon_crtc->crtc_offset, 0);
48
49 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0);
50 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0);
51 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0);
52
53 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff);
54 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff);
55 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff);
56
57 WREG32(AVIVO_DC_LUT_RW_SELECT, radeon_crtc->crtc_id);
58 WREG32(AVIVO_DC_LUT_RW_MODE, 0);
59 WREG32(AVIVO_DC_LUT_WRITE_EN_MASK, 0x0000003f);
60
61 WREG8(AVIVO_DC_LUT_RW_INDEX, 0);
62 for (i = 0; i < 256; i++) {
63 WREG32(AVIVO_DC_LUT_30_COLOR,
64 (radeon_crtc->lut_r[i] << 20) |
65 (radeon_crtc->lut_g[i] << 10) |
66 (radeon_crtc->lut_b[i] << 0));
67 }
68
Mario Kleiner4366f3b2014-06-07 03:38:11 +020069 /* Only change bit 0 of LUT_SEL, other bits are set elsewhere */
70 WREG32_P(AVIVO_D1GRPH_LUT_SEL + radeon_crtc->crtc_offset, radeon_crtc->crtc_id, ~1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020071}
72
Alex Deucherfee298f2011-01-06 21:19:30 -050073static void dce4_crtc_load_lut(struct drm_crtc *crtc)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050074{
75 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
76 struct drm_device *dev = crtc->dev;
77 struct radeon_device *rdev = dev->dev_private;
78 int i;
79
Dave Airlied9fdaaf2010-08-02 10:42:55 +100080 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050081 WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0);
82
83 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0);
84 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0);
85 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0);
86
87 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff);
88 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff);
89 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff);
90
Alex Deucher677d0762010-04-22 22:58:50 -040091 WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0);
92 WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050093
Alex Deucher677d0762010-04-22 22:58:50 -040094 WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050095 for (i = 0; i < 256; i++) {
Alex Deucher677d0762010-04-22 22:58:50 -040096 WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset,
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050097 (radeon_crtc->lut_r[i] << 20) |
98 (radeon_crtc->lut_g[i] << 10) |
99 (radeon_crtc->lut_b[i] << 0));
100 }
101}
102
Alex Deucherfee298f2011-01-06 21:19:30 -0500103static void dce5_crtc_load_lut(struct drm_crtc *crtc)
104{
105 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
106 struct drm_device *dev = crtc->dev;
107 struct radeon_device *rdev = dev->dev_private;
108 int i;
109
110 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id);
111
112 WREG32(NI_INPUT_CSC_CONTROL + radeon_crtc->crtc_offset,
113 (NI_INPUT_CSC_GRPH_MODE(NI_INPUT_CSC_BYPASS) |
114 NI_INPUT_CSC_OVL_MODE(NI_INPUT_CSC_BYPASS)));
115 WREG32(NI_PRESCALE_GRPH_CONTROL + radeon_crtc->crtc_offset,
116 NI_GRPH_PRESCALE_BYPASS);
117 WREG32(NI_PRESCALE_OVL_CONTROL + radeon_crtc->crtc_offset,
118 NI_OVL_PRESCALE_BYPASS);
119 WREG32(NI_INPUT_GAMMA_CONTROL + radeon_crtc->crtc_offset,
120 (NI_GRPH_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT) |
121 NI_OVL_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT)));
122
123 WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0);
124
125 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0);
126 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0);
127 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0);
128
129 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff);
130 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff);
131 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff);
132
133 WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0);
134 WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007);
135
136 WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0);
137 for (i = 0; i < 256; i++) {
138 WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset,
139 (radeon_crtc->lut_r[i] << 20) |
140 (radeon_crtc->lut_g[i] << 10) |
141 (radeon_crtc->lut_b[i] << 0));
142 }
143
144 WREG32(NI_DEGAMMA_CONTROL + radeon_crtc->crtc_offset,
145 (NI_GRPH_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) |
146 NI_OVL_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) |
147 NI_ICON_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) |
148 NI_CURSOR_DEGAMMA_MODE(NI_DEGAMMA_BYPASS)));
149 WREG32(NI_GAMUT_REMAP_CONTROL + radeon_crtc->crtc_offset,
150 (NI_GRPH_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS) |
151 NI_OVL_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS)));
152 WREG32(NI_REGAMMA_CONTROL + radeon_crtc->crtc_offset,
153 (NI_GRPH_REGAMMA_MODE(NI_REGAMMA_BYPASS) |
154 NI_OVL_REGAMMA_MODE(NI_REGAMMA_BYPASS)));
155 WREG32(NI_OUTPUT_CSC_CONTROL + radeon_crtc->crtc_offset,
156 (NI_OUTPUT_CSC_GRPH_MODE(NI_OUTPUT_CSC_BYPASS) |
157 NI_OUTPUT_CSC_OVL_MODE(NI_OUTPUT_CSC_BYPASS)));
158 /* XXX match this to the depth of the crtc fmt block, move to modeset? */
159 WREG32(0x6940 + radeon_crtc->crtc_offset, 0);
Alex Deucher9e05fa12013-01-24 10:06:33 -0500160 if (ASIC_IS_DCE8(rdev)) {
161 /* XXX this only needs to be programmed once per crtc at startup,
162 * not sure where the best place for it is
163 */
164 WREG32(CIK_ALPHA_CONTROL + radeon_crtc->crtc_offset,
165 CIK_CURSOR_ALPHA_BLND_ENA);
166 }
Alex Deucherfee298f2011-01-06 21:19:30 -0500167}
168
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200169static void legacy_crtc_load_lut(struct drm_crtc *crtc)
170{
171 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
172 struct drm_device *dev = crtc->dev;
173 struct radeon_device *rdev = dev->dev_private;
174 int i;
175 uint32_t dac2_cntl;
176
177 dac2_cntl = RREG32(RADEON_DAC_CNTL2);
178 if (radeon_crtc->crtc_id == 0)
179 dac2_cntl &= (uint32_t)~RADEON_DAC2_PALETTE_ACC_CTL;
180 else
181 dac2_cntl |= RADEON_DAC2_PALETTE_ACC_CTL;
182 WREG32(RADEON_DAC_CNTL2, dac2_cntl);
183
184 WREG8(RADEON_PALETTE_INDEX, 0);
185 for (i = 0; i < 256; i++) {
186 WREG32(RADEON_PALETTE_30_DATA,
187 (radeon_crtc->lut_r[i] << 20) |
188 (radeon_crtc->lut_g[i] << 10) |
189 (radeon_crtc->lut_b[i] << 0));
190 }
191}
192
193void radeon_crtc_load_lut(struct drm_crtc *crtc)
194{
195 struct drm_device *dev = crtc->dev;
196 struct radeon_device *rdev = dev->dev_private;
197
198 if (!crtc->enabled)
199 return;
200
Alex Deucherfee298f2011-01-06 21:19:30 -0500201 if (ASIC_IS_DCE5(rdev))
202 dce5_crtc_load_lut(crtc);
203 else if (ASIC_IS_DCE4(rdev))
204 dce4_crtc_load_lut(crtc);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500205 else if (ASIC_IS_AVIVO(rdev))
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200206 avivo_crtc_load_lut(crtc);
207 else
208 legacy_crtc_load_lut(crtc);
209}
210
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000211/** Sets the color ramps on behalf of fbcon */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200212void radeon_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
213 u16 blue, int regno)
214{
215 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
216
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200217 radeon_crtc->lut_r[regno] = red >> 6;
218 radeon_crtc->lut_g[regno] = green >> 6;
219 radeon_crtc->lut_b[regno] = blue >> 6;
220}
221
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000222/** Gets the color ramps on behalf of fbcon */
223void radeon_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
224 u16 *blue, int regno)
225{
226 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
227
228 *red = radeon_crtc->lut_r[regno] << 6;
229 *green = radeon_crtc->lut_g[regno] << 6;
230 *blue = radeon_crtc->lut_b[regno] << 6;
231}
232
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200233static void radeon_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +0100234 u16 *blue, uint32_t start, uint32_t size)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200235{
236 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
James Simmons72034252010-08-03 01:33:19 +0100237 int end = (start + size > 256) ? 256 : start + size, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200238
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000239 /* userspace palettes are always correct as is */
James Simmons72034252010-08-03 01:33:19 +0100240 for (i = start; i < end; i++) {
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000241 radeon_crtc->lut_r[i] = red[i] >> 6;
242 radeon_crtc->lut_g[i] = green[i] >> 6;
243 radeon_crtc->lut_b[i] = blue[i] >> 6;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200244 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200245 radeon_crtc_load_lut(crtc);
246}
247
248static void radeon_crtc_destroy(struct drm_crtc *crtc)
249{
250 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
251
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200252 drm_crtc_cleanup(crtc);
Christian Königfa7f5172014-06-03 18:13:21 -0400253 destroy_workqueue(radeon_crtc->flip_queue);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200254 kfree(radeon_crtc);
255}
256
Christian Königfa7f5172014-06-03 18:13:21 -0400257/**
258 * radeon_unpin_work_func - unpin old buffer object
259 *
260 * @__work - kernel work item
261 *
262 * Unpin the old frame buffer object outside of the interrupt handler
Alex Deucher6f34be52010-11-21 10:59:01 -0500263 */
264static void radeon_unpin_work_func(struct work_struct *__work)
265{
Christian Königfa7f5172014-06-03 18:13:21 -0400266 struct radeon_flip_work *work =
267 container_of(__work, struct radeon_flip_work, unpin_work);
Alex Deucher6f34be52010-11-21 10:59:01 -0500268 int r;
269
270 /* unpin of the old buffer */
271 r = radeon_bo_reserve(work->old_rbo, false);
272 if (likely(r == 0)) {
273 r = radeon_bo_unpin(work->old_rbo);
274 if (unlikely(r != 0)) {
275 DRM_ERROR("failed to unpin buffer after flip\n");
276 }
277 radeon_bo_unreserve(work->old_rbo);
278 } else
279 DRM_ERROR("failed to reserve buffer after flip\n");
Dave Airlie498c5552011-05-29 17:48:32 +1000280
281 drm_gem_object_unreference_unlocked(&work->old_rbo->gem_base);
Alex Deucher6f34be52010-11-21 10:59:01 -0500282 kfree(work);
283}
284
Christian König1a0e7912014-05-27 16:49:21 +0200285void radeon_crtc_handle_vblank(struct radeon_device *rdev, int crtc_id)
Alex Deucher6f34be52010-11-21 10:59:01 -0500286{
287 struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id];
Alex Deucher6f34be52010-11-21 10:59:01 -0500288 unsigned long flags;
289 u32 update_pending;
290 int vpos, hpos;
291
Christian Königf5d636d2014-04-23 20:46:06 +0200292 /* can happen during initialization */
293 if (radeon_crtc == NULL)
294 return;
295
Alex Deucher6f34be52010-11-21 10:59:01 -0500296 spin_lock_irqsave(&rdev->ddev->event_lock, flags);
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900297 if (radeon_crtc->flip_status != RADEON_FLIP_SUBMITTED) {
298 DRM_DEBUG_DRIVER("radeon_crtc->flip_status = %d != "
299 "RADEON_FLIP_SUBMITTED(%d)\n",
300 radeon_crtc->flip_status,
301 RADEON_FLIP_SUBMITTED);
Alex Deucher6f34be52010-11-21 10:59:01 -0500302 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags);
303 return;
304 }
Christian Königfa7f5172014-06-03 18:13:21 -0400305
306 update_pending = radeon_page_flip_pending(rdev, crtc_id);
Alex Deucher6f34be52010-11-21 10:59:01 -0500307
308 /* Has the pageflip already completed in crtc, or is it certain
309 * to complete in this vblank?
310 */
311 if (update_pending &&
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200312 (DRM_SCANOUTPOS_VALID & radeon_get_crtc_scanoutpos(rdev->ddev, crtc_id, 0,
Mario Kleinerd47abc52013-10-30 05:13:07 +0100313 &vpos, &hpos, NULL, NULL)) &&
Felix Kuehling81ffbbe2012-02-23 19:16:12 -0500314 ((vpos >= (99 * rdev->mode_info.crtcs[crtc_id]->base.hwmode.crtc_vdisplay)/100) ||
315 (vpos < 0 && !ASIC_IS_AVIVO(rdev)))) {
316 /* crtc didn't flip in this target vblank interval,
317 * but flip is pending in crtc. Based on the current
318 * scanout position we know that the current frame is
319 * (nearly) complete and the flip will (likely)
320 * complete before the start of the next frame.
321 */
322 update_pending = 0;
323 }
Christian Königfa7f5172014-06-03 18:13:21 -0400324 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags);
325 if (!update_pending)
Christian König1a0e7912014-05-27 16:49:21 +0200326 radeon_crtc_handle_flip(rdev, crtc_id);
Christian König1a0e7912014-05-27 16:49:21 +0200327}
328
329/**
330 * radeon_crtc_handle_flip - page flip completed
331 *
332 * @rdev: radeon device pointer
333 * @crtc_id: crtc number this event is for
334 *
335 * Called when we are sure that a page flip for this crtc is completed.
336 */
337void radeon_crtc_handle_flip(struct radeon_device *rdev, int crtc_id)
338{
339 struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id];
Christian Königfa7f5172014-06-03 18:13:21 -0400340 struct radeon_flip_work *work;
Christian König1a0e7912014-05-27 16:49:21 +0200341 unsigned long flags;
342
343 /* this can happen at init */
344 if (radeon_crtc == NULL)
345 return;
346
347 spin_lock_irqsave(&rdev->ddev->event_lock, flags);
Christian Königfa7f5172014-06-03 18:13:21 -0400348 work = radeon_crtc->flip_work;
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900349 if (radeon_crtc->flip_status != RADEON_FLIP_SUBMITTED) {
350 DRM_DEBUG_DRIVER("radeon_crtc->flip_status = %d != "
351 "RADEON_FLIP_SUBMITTED(%d)\n",
352 radeon_crtc->flip_status,
353 RADEON_FLIP_SUBMITTED);
Christian König1a0e7912014-05-27 16:49:21 +0200354 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags);
355 return;
Alex Deucher6f34be52010-11-21 10:59:01 -0500356 }
357
Christian Königfa7f5172014-06-03 18:13:21 -0400358 /* Pageflip completed. Clean up. */
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900359 radeon_crtc->flip_status = RADEON_FLIP_NONE;
Christian Königfa7f5172014-06-03 18:13:21 -0400360 radeon_crtc->flip_work = NULL;
Alex Deucher6f34be52010-11-21 10:59:01 -0500361
362 /* wakeup userspace */
Rob Clark26ae4662012-10-08 19:50:42 +0000363 if (work->event)
364 drm_send_vblank_event(rdev->ddev, crtc_id, work->event);
365
Alex Deucher6f34be52010-11-21 10:59:01 -0500366 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags);
367
Michel Dänzerca721b72014-06-17 19:12:03 +0900368 drm_vblank_put(rdev->ddev, radeon_crtc->crtc_id);
Alex Deucher6f34be52010-11-21 10:59:01 -0500369 radeon_fence_unref(&work->fence);
Michel Dänzer46889d92014-06-17 19:12:04 +0900370 radeon_irq_kms_pflip_irq_put(rdev, work->crtc_id);
Christian Königfa7f5172014-06-03 18:13:21 -0400371 queue_work(radeon_crtc->flip_queue, &work->unpin_work);
Alex Deucher6f34be52010-11-21 10:59:01 -0500372}
373
Christian Königfa7f5172014-06-03 18:13:21 -0400374/**
375 * radeon_flip_work_func - page flip framebuffer
376 *
377 * @work - kernel work item
378 *
379 * Wait for the buffer object to become idle and do the actual page flip
380 */
381static void radeon_flip_work_func(struct work_struct *__work)
Alex Deucher6f34be52010-11-21 10:59:01 -0500382{
Christian Königfa7f5172014-06-03 18:13:21 -0400383 struct radeon_flip_work *work =
384 container_of(__work, struct radeon_flip_work, flip_work);
385 struct radeon_device *rdev = work->rdev;
386 struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[work->crtc_id];
387
388 struct drm_crtc *crtc = &radeon_crtc->base;
389 struct drm_framebuffer *fb = work->fb;
390
391 uint32_t tiling_flags, pitch_pixels;
392 uint64_t base;
393
Alex Deucher6f34be52010-11-21 10:59:01 -0500394 unsigned long flags;
Alex Deucher6f34be52010-11-21 10:59:01 -0500395 int r;
396
Christian Königfa7f5172014-06-03 18:13:21 -0400397 down_read(&rdev->exclusive_lock);
398 while (work->fence) {
399 r = radeon_fence_wait(work->fence, false);
400 if (r == -EDEADLK) {
401 up_read(&rdev->exclusive_lock);
402 r = radeon_gpu_reset(rdev);
403 down_read(&rdev->exclusive_lock);
404 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500405
Christian Königfa7f5172014-06-03 18:13:21 -0400406 if (r) {
407 DRM_ERROR("failed to wait on page flip fence (%d)!\n",
408 r);
409 goto cleanup;
410 } else
411 radeon_fence_unref(&work->fence);
Alex Deucher6f34be52010-11-21 10:59:01 -0500412 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500413
414 /* pin the new buffer */
Alex Deucher6f34be52010-11-21 10:59:01 -0500415 DRM_DEBUG_DRIVER("flip-ioctl() cur_fbo = %p, cur_bbo = %p\n",
Christian Königfa7f5172014-06-03 18:13:21 -0400416 work->old_rbo, work->new_rbo);
Alex Deucher6f34be52010-11-21 10:59:01 -0500417
Christian Königfa7f5172014-06-03 18:13:21 -0400418 r = radeon_bo_reserve(work->new_rbo, false);
Alex Deucher6f34be52010-11-21 10:59:01 -0500419 if (unlikely(r != 0)) {
420 DRM_ERROR("failed to reserve new rbo buffer before flip\n");
Christian Königfa7f5172014-06-03 18:13:21 -0400421 goto cleanup;
Alex Deucher6f34be52010-11-21 10:59:01 -0500422 }
Michel Dänzer0349af72012-03-14 17:12:42 +0100423 /* Only 27 bit offset for legacy CRTC */
Christian Königfa7f5172014-06-03 18:13:21 -0400424 r = radeon_bo_pin_restricted(work->new_rbo, RADEON_GEM_DOMAIN_VRAM,
Michel Dänzer0349af72012-03-14 17:12:42 +0100425 ASIC_IS_AVIVO(rdev) ? 0 : 1 << 27, &base);
Alex Deucher6f34be52010-11-21 10:59:01 -0500426 if (unlikely(r != 0)) {
Christian Königfa7f5172014-06-03 18:13:21 -0400427 radeon_bo_unreserve(work->new_rbo);
Alex Deucher6f34be52010-11-21 10:59:01 -0500428 r = -EINVAL;
429 DRM_ERROR("failed to pin new rbo buffer before flip\n");
Christian Königfa7f5172014-06-03 18:13:21 -0400430 goto cleanup;
Alex Deucher6f34be52010-11-21 10:59:01 -0500431 }
Christian Königfa7f5172014-06-03 18:13:21 -0400432 radeon_bo_get_tiling_flags(work->new_rbo, &tiling_flags, NULL);
433 radeon_bo_unreserve(work->new_rbo);
Alex Deucher6f34be52010-11-21 10:59:01 -0500434
435 if (!ASIC_IS_AVIVO(rdev)) {
436 /* crtc offset is from display base addr not FB location */
437 base -= radeon_crtc->legacy_display_base_addr;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200438 pitch_pixels = fb->pitches[0] / (fb->bits_per_pixel / 8);
Alex Deucher6f34be52010-11-21 10:59:01 -0500439
440 if (tiling_flags & RADEON_TILING_MACRO) {
441 if (ASIC_IS_R300(rdev)) {
442 base &= ~0x7ff;
443 } else {
444 int byteshift = fb->bits_per_pixel >> 4;
445 int tile_addr = (((crtc->y >> 3) * pitch_pixels + crtc->x) >> (8 - byteshift)) << 11;
446 base += tile_addr + ((crtc->x << byteshift) % 256) + ((crtc->y % 8) << 8);
447 }
448 } else {
449 int offset = crtc->y * pitch_pixels + crtc->x;
450 switch (fb->bits_per_pixel) {
451 case 8:
452 default:
453 offset *= 1;
454 break;
455 case 15:
456 case 16:
457 offset *= 2;
458 break;
459 case 24:
460 offset *= 3;
461 break;
462 case 32:
463 offset *= 4;
464 break;
465 }
466 base += offset;
467 }
468 base &= ~7;
469 }
470
Michel Dänzerca721b72014-06-17 19:12:03 +0900471 r = drm_vblank_get(crtc->dev, radeon_crtc->crtc_id);
472 if (r) {
473 DRM_ERROR("failed to get vblank before flip\n");
474 goto pflip_cleanup;
475 }
476
Christian Königfa7f5172014-06-03 18:13:21 -0400477 /* We borrow the event spin lock for protecting flip_work */
478 spin_lock_irqsave(&crtc->dev->event_lock, flags);
Christian König1aab5512014-05-27 16:49:22 +0200479
Dave Airlieb15eb4e2014-06-04 11:59:31 +1000480 /* set the proper interrupt */
481 radeon_irq_kms_pflip_irq_get(rdev, radeon_crtc->crtc_id);
Christian König1aab5512014-05-27 16:49:22 +0200482
Christian Königfa7f5172014-06-03 18:13:21 -0400483 /* do the flip (mmio) */
484 radeon_page_flip(rdev, radeon_crtc->crtc_id, base);
Dave Airlieb15eb4e2014-06-04 11:59:31 +1000485
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900486 radeon_crtc->flip_status = RADEON_FLIP_SUBMITTED;
Christian Königfa7f5172014-06-03 18:13:21 -0400487 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
488 up_read(&rdev->exclusive_lock);
489
490 return;
491
Michel Dänzerca721b72014-06-17 19:12:03 +0900492pflip_cleanup:
493 if (unlikely(radeon_bo_reserve(work->new_rbo, false) != 0)) {
494 DRM_ERROR("failed to reserve new rbo in error path\n");
495 goto cleanup;
496 }
497 if (unlikely(radeon_bo_unpin(work->new_rbo) != 0)) {
498 DRM_ERROR("failed to unpin new rbo in error path\n");
499 }
500 radeon_bo_unreserve(work->new_rbo);
501
Christian Königfa7f5172014-06-03 18:13:21 -0400502cleanup:
503 drm_gem_object_unreference_unlocked(&work->old_rbo->gem_base);
Dave Airlieb15eb4e2014-06-04 11:59:31 +1000504 radeon_fence_unref(&work->fence);
505 kfree(work);
Christian Königfa7f5172014-06-03 18:13:21 -0400506 up_read(&rdev->exclusive_lock);
507}
Dave Airlieb15eb4e2014-06-04 11:59:31 +1000508
Christian Königfa7f5172014-06-03 18:13:21 -0400509static int radeon_crtc_page_flip(struct drm_crtc *crtc,
510 struct drm_framebuffer *fb,
511 struct drm_pending_vblank_event *event,
512 uint32_t page_flip_flags)
513{
514 struct drm_device *dev = crtc->dev;
515 struct radeon_device *rdev = dev->dev_private;
516 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
517 struct radeon_framebuffer *old_radeon_fb;
518 struct radeon_framebuffer *new_radeon_fb;
519 struct drm_gem_object *obj;
520 struct radeon_flip_work *work;
521 unsigned long flags;
522
523 work = kzalloc(sizeof *work, GFP_KERNEL);
524 if (work == NULL)
525 return -ENOMEM;
526
527 INIT_WORK(&work->flip_work, radeon_flip_work_func);
528 INIT_WORK(&work->unpin_work, radeon_unpin_work_func);
529
530 work->rdev = rdev;
531 work->crtc_id = radeon_crtc->crtc_id;
532 work->fb = fb;
533 work->event = event;
534
535 /* schedule unpin of the old buffer */
536 old_radeon_fb = to_radeon_framebuffer(crtc->primary->fb);
537 obj = old_radeon_fb->obj;
538
539 /* take a reference to the old object */
540 drm_gem_object_reference(obj);
541 work->old_rbo = gem_to_radeon_bo(obj);
542
543 new_radeon_fb = to_radeon_framebuffer(fb);
544 obj = new_radeon_fb->obj;
545 work->new_rbo = gem_to_radeon_bo(obj);
546
547 spin_lock(&work->new_rbo->tbo.bdev->fence_lock);
548 if (work->new_rbo->tbo.sync_obj)
549 work->fence = radeon_fence_ref(work->new_rbo->tbo.sync_obj);
550 spin_unlock(&work->new_rbo->tbo.bdev->fence_lock);
551
552 /* We borrow the event spin lock for protecting flip_work */
553 spin_lock_irqsave(&crtc->dev->event_lock, flags);
554
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900555 if (radeon_crtc->flip_status != RADEON_FLIP_NONE) {
Christian Königfa7f5172014-06-03 18:13:21 -0400556 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
557 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
558 drm_gem_object_unreference_unlocked(&work->old_rbo->gem_base);
559 radeon_fence_unref(&work->fence);
560 kfree(work);
561 return -EBUSY;
562 }
Michel Dänzera2b6d3b2014-06-30 18:12:34 +0900563 radeon_crtc->flip_status = RADEON_FLIP_PENDING;
Christian Königfa7f5172014-06-03 18:13:21 -0400564 radeon_crtc->flip_work = work;
565
Michel Dänzer685d54b2014-06-10 10:21:57 +0900566 /* update crtc fb */
567 crtc->primary->fb = fb;
568
Christian Königfa7f5172014-06-03 18:13:21 -0400569 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
570
571 queue_work(radeon_crtc->flip_queue, &work->flip_work);
572
573 return 0;
Alex Deucher6f34be52010-11-21 10:59:01 -0500574}
575
Dave Airlie10ebc0b2012-09-17 14:40:31 +1000576static int
577radeon_crtc_set_config(struct drm_mode_set *set)
578{
579 struct drm_device *dev;
580 struct radeon_device *rdev;
581 struct drm_crtc *crtc;
582 bool active = false;
583 int ret;
584
585 if (!set || !set->crtc)
586 return -EINVAL;
587
588 dev = set->crtc->dev;
589
590 ret = pm_runtime_get_sync(dev->dev);
591 if (ret < 0)
592 return ret;
593
594 ret = drm_crtc_helper_set_config(set);
595
596 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
597 if (crtc->enabled)
598 active = true;
599
600 pm_runtime_mark_last_busy(dev->dev);
601
602 rdev = dev->dev_private;
603 /* if we have active crtcs and we don't have a power ref,
604 take the current one */
605 if (active && !rdev->have_disp_power_ref) {
606 rdev->have_disp_power_ref = true;
607 return ret;
608 }
609 /* if we have no active crtcs, then drop the power ref
610 we got before */
611 if (!active && rdev->have_disp_power_ref) {
612 pm_runtime_put_autosuspend(dev->dev);
613 rdev->have_disp_power_ref = false;
614 }
615
616 /* drop the power reference we got coming in here */
617 pm_runtime_put_autosuspend(dev->dev);
618 return ret;
619}
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200620static const struct drm_crtc_funcs radeon_crtc_funcs = {
621 .cursor_set = radeon_crtc_cursor_set,
622 .cursor_move = radeon_crtc_cursor_move,
623 .gamma_set = radeon_crtc_gamma_set,
Dave Airlie10ebc0b2012-09-17 14:40:31 +1000624 .set_config = radeon_crtc_set_config,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200625 .destroy = radeon_crtc_destroy,
Alex Deucher6f34be52010-11-21 10:59:01 -0500626 .page_flip = radeon_crtc_page_flip,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200627};
628
629static void radeon_crtc_init(struct drm_device *dev, int index)
630{
631 struct radeon_device *rdev = dev->dev_private;
632 struct radeon_crtc *radeon_crtc;
633 int i;
634
635 radeon_crtc = kzalloc(sizeof(struct radeon_crtc) + (RADEONFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
636 if (radeon_crtc == NULL)
637 return;
638
639 drm_crtc_init(dev, &radeon_crtc->base, &radeon_crtc_funcs);
640
641 drm_mode_crtc_set_gamma_size(&radeon_crtc->base, 256);
642 radeon_crtc->crtc_id = index;
Christian Königfa7f5172014-06-03 18:13:21 -0400643 radeon_crtc->flip_queue = create_singlethread_workqueue("radeon-crtc");
Jerome Glissec93bb852009-07-13 21:04:08 +0200644 rdev->mode_info.crtcs[index] = radeon_crtc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200645
Alex Deucher9e05fa12013-01-24 10:06:33 -0500646 if (rdev->family >= CHIP_BONAIRE) {
647 radeon_crtc->max_cursor_width = CIK_CURSOR_WIDTH;
648 radeon_crtc->max_cursor_height = CIK_CURSOR_HEIGHT;
649 } else {
650 radeon_crtc->max_cursor_width = CURSOR_WIDTH;
651 radeon_crtc->max_cursor_height = CURSOR_HEIGHT;
652 }
Alex Deucherbea61c52014-02-12 12:56:53 -0500653 dev->mode_config.cursor_width = radeon_crtc->max_cursor_width;
654 dev->mode_config.cursor_height = radeon_crtc->max_cursor_height;
Alex Deucher9e05fa12013-01-24 10:06:33 -0500655
Dave Airlie785b93e2009-08-28 15:46:53 +1000656#if 0
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200657 radeon_crtc->mode_set.crtc = &radeon_crtc->base;
658 radeon_crtc->mode_set.connectors = (struct drm_connector **)(radeon_crtc + 1);
659 radeon_crtc->mode_set.num_connectors = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000660#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200661
662 for (i = 0; i < 256; i++) {
663 radeon_crtc->lut_r[i] = i << 2;
664 radeon_crtc->lut_g[i] = i << 2;
665 radeon_crtc->lut_b[i] = i << 2;
666 }
667
668 if (rdev->is_atom_bios && (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom))
669 radeon_atombios_init_crtc(dev, radeon_crtc);
670 else
671 radeon_legacy_init_crtc(dev, radeon_crtc);
672}
673
Alex Deuchere68adef2012-09-06 14:32:06 -0400674static const char *encoder_names[38] = {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200675 "NONE",
676 "INTERNAL_LVDS",
677 "INTERNAL_TMDS1",
678 "INTERNAL_TMDS2",
679 "INTERNAL_DAC1",
680 "INTERNAL_DAC2",
681 "INTERNAL_SDVOA",
682 "INTERNAL_SDVOB",
683 "SI170B",
684 "CH7303",
685 "CH7301",
686 "INTERNAL_DVO1",
687 "EXTERNAL_SDVOA",
688 "EXTERNAL_SDVOB",
689 "TITFP513",
690 "INTERNAL_LVTM1",
691 "VT1623",
692 "HDMI_SI1930",
693 "HDMI_INTERNAL",
694 "INTERNAL_KLDSCP_TMDS1",
695 "INTERNAL_KLDSCP_DVO1",
696 "INTERNAL_KLDSCP_DAC1",
697 "INTERNAL_KLDSCP_DAC2",
698 "SI178",
699 "MVPU_FPGA",
700 "INTERNAL_DDI",
701 "VT1625",
702 "HDMI_SI1932",
703 "DP_AN9801",
704 "DP_DP501",
705 "INTERNAL_UNIPHY",
706 "INTERNAL_KLDSCP_LVTMA",
707 "INTERNAL_UNIPHY1",
708 "INTERNAL_UNIPHY2",
Alex Deucherbf982eb2010-11-22 17:56:24 -0500709 "NUTMEG",
710 "TRAVIS",
Alex Deuchere68adef2012-09-06 14:32:06 -0400711 "INTERNAL_VCE",
712 "INTERNAL_UNIPHY3",
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200713};
714
Alex Deuchercbd46232010-06-07 02:24:54 -0400715static const char *hpd_names[6] = {
Alex Deuchereed45b32009-12-04 14:45:27 -0500716 "HPD1",
717 "HPD2",
718 "HPD3",
719 "HPD4",
720 "HPD5",
721 "HPD6",
722};
723
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200724static void radeon_print_display_setup(struct drm_device *dev)
725{
726 struct drm_connector *connector;
727 struct radeon_connector *radeon_connector;
728 struct drm_encoder *encoder;
729 struct radeon_encoder *radeon_encoder;
730 uint32_t devices;
731 int i = 0;
732
733 DRM_INFO("Radeon Display Connectors\n");
734 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
735 radeon_connector = to_radeon_connector(connector);
736 DRM_INFO("Connector %d:\n", i);
Jani Nikula72082092014-06-03 14:56:19 +0300737 DRM_INFO(" %s\n", connector->name);
Alex Deuchereed45b32009-12-04 14:45:27 -0500738 if (radeon_connector->hpd.hpd != RADEON_HPD_NONE)
739 DRM_INFO(" %s\n", hpd_names[radeon_connector->hpd.hpd]);
Dave Airlie4b9d2a22010-02-08 13:16:55 +1000740 if (radeon_connector->ddc_bus) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200741 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
742 radeon_connector->ddc_bus->rec.mask_clk_reg,
743 radeon_connector->ddc_bus->rec.mask_data_reg,
744 radeon_connector->ddc_bus->rec.a_clk_reg,
745 radeon_connector->ddc_bus->rec.a_data_reg,
Alex Deucher9b9fe722009-11-10 15:59:44 -0500746 radeon_connector->ddc_bus->rec.en_clk_reg,
747 radeon_connector->ddc_bus->rec.en_data_reg,
748 radeon_connector->ddc_bus->rec.y_clk_reg,
749 radeon_connector->ddc_bus->rec.y_data_reg);
Alex Deucherfb939df2010-11-08 16:08:29 +0000750 if (radeon_connector->router.ddc_valid)
Alex Deucher26b5bc92010-08-05 21:21:18 -0400751 DRM_INFO(" DDC Router 0x%x/0x%x\n",
Alex Deucherfb939df2010-11-08 16:08:29 +0000752 radeon_connector->router.ddc_mux_control_pin,
753 radeon_connector->router.ddc_mux_state);
754 if (radeon_connector->router.cd_valid)
755 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
756 radeon_connector->router.cd_mux_control_pin,
757 radeon_connector->router.cd_mux_state);
Dave Airlie4b9d2a22010-02-08 13:16:55 +1000758 } else {
759 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
760 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
761 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
762 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
763 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
764 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
765 DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n");
766 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200767 DRM_INFO(" Encoders:\n");
768 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
769 radeon_encoder = to_radeon_encoder(encoder);
770 devices = radeon_encoder->devices & radeon_connector->devices;
771 if (devices) {
772 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
773 DRM_INFO(" CRT1: %s\n", encoder_names[radeon_encoder->encoder_id]);
774 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
775 DRM_INFO(" CRT2: %s\n", encoder_names[radeon_encoder->encoder_id]);
776 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
777 DRM_INFO(" LCD1: %s\n", encoder_names[radeon_encoder->encoder_id]);
778 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
779 DRM_INFO(" DFP1: %s\n", encoder_names[radeon_encoder->encoder_id]);
780 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
781 DRM_INFO(" DFP2: %s\n", encoder_names[radeon_encoder->encoder_id]);
782 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
783 DRM_INFO(" DFP3: %s\n", encoder_names[radeon_encoder->encoder_id]);
784 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
785 DRM_INFO(" DFP4: %s\n", encoder_names[radeon_encoder->encoder_id]);
786 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
787 DRM_INFO(" DFP5: %s\n", encoder_names[radeon_encoder->encoder_id]);
Alex Deucher73758a52010-09-24 14:59:32 -0400788 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
789 DRM_INFO(" DFP6: %s\n", encoder_names[radeon_encoder->encoder_id]);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200790 if (devices & ATOM_DEVICE_TV1_SUPPORT)
791 DRM_INFO(" TV1: %s\n", encoder_names[radeon_encoder->encoder_id]);
792 if (devices & ATOM_DEVICE_CV_SUPPORT)
793 DRM_INFO(" CV: %s\n", encoder_names[radeon_encoder->encoder_id]);
794 }
795 }
796 i++;
797 }
798}
799
Dave Airlie4ce001a2009-08-13 16:32:14 +1000800static bool radeon_setup_enc_conn(struct drm_device *dev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200801{
802 struct radeon_device *rdev = dev->dev_private;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200803 bool ret = false;
804
805 if (rdev->bios) {
806 if (rdev->is_atom_bios) {
Alex Deuchera084e6e2010-03-18 01:04:01 -0400807 ret = radeon_get_atom_connector_info_from_supported_devices_table(dev);
808 if (ret == false)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200809 ret = radeon_get_atom_connector_info_from_object_table(dev);
Alex Deucherb9597a12010-01-04 19:12:02 -0500810 } else {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200811 ret = radeon_get_legacy_connector_info_from_bios(dev);
Alex Deucherb9597a12010-01-04 19:12:02 -0500812 if (ret == false)
813 ret = radeon_get_legacy_connector_info_from_table(dev);
814 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200815 } else {
816 if (!ASIC_IS_AVIVO(rdev))
817 ret = radeon_get_legacy_connector_info_from_table(dev);
818 }
819 if (ret) {
Dave Airlie1f3b6a42009-10-13 14:10:37 +1000820 radeon_setup_encoder_clones(dev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200821 radeon_print_display_setup(dev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200822 }
823
824 return ret;
825}
826
827int radeon_ddc_get_modes(struct radeon_connector *radeon_connector)
828{
Alex Deucher3c537882010-02-05 04:21:19 -0500829 struct drm_device *dev = radeon_connector->base.dev;
830 struct radeon_device *rdev = dev->dev_private;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200831 int ret = 0;
832
Alex Deucher0ac66ef2014-07-14 17:57:19 -0400833 /* don't leak the edid if we already fetched it in detect() */
834 if (radeon_connector->edid)
835 goto got_edid;
836
Alex Deucher26b5bc92010-08-05 21:21:18 -0400837 /* on hw with routers, select right port */
Alex Deucherfb939df2010-11-08 16:08:29 +0000838 if (radeon_connector->router.ddc_valid)
839 radeon_router_select_ddc_port(radeon_connector);
Alex Deucher26b5bc92010-08-05 21:21:18 -0400840
Niels Ole Salscheider0a9069d2013-01-03 19:09:28 +0100841 if (radeon_connector_encoder_get_dp_bridge_encoder_id(&radeon_connector->base) !=
842 ENCODER_OBJECT_ID_NONE) {
Alex Deucher379dfc22014-04-07 10:33:46 -0400843 if (radeon_connector->ddc_bus->has_aux)
Niels Ole Salscheider0a9069d2013-01-03 19:09:28 +0100844 radeon_connector->edid = drm_get_edid(&radeon_connector->base,
Alex Deucher379dfc22014-04-07 10:33:46 -0400845 &radeon_connector->ddc_bus->aux.ddc);
Niels Ole Salscheider0a9069d2013-01-03 19:09:28 +0100846 } else if ((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort) ||
847 (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)) {
Dave Airlie746c1aa2009-12-08 07:07:28 +1000848 struct radeon_connector_atom_dig *dig = radeon_connector->con_priv;
Alex Deucherb06947b2011-09-02 14:23:09 +0000849
Dave Airlie7a15cbd42010-01-14 11:42:17 +1000850 if ((dig->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT ||
Alex Deucher379dfc22014-04-07 10:33:46 -0400851 dig->dp_sink_type == CONNECTOR_OBJECT_ID_eDP) &&
852 radeon_connector->ddc_bus->has_aux)
Alex Deucherb06947b2011-09-02 14:23:09 +0000853 radeon_connector->edid = drm_get_edid(&radeon_connector->base,
Alex Deucher379dfc22014-04-07 10:33:46 -0400854 &radeon_connector->ddc_bus->aux.ddc);
Alex Deucherb06947b2011-09-02 14:23:09 +0000855 else if (radeon_connector->ddc_bus && !radeon_connector->edid)
856 radeon_connector->edid = drm_get_edid(&radeon_connector->base,
857 &radeon_connector->ddc_bus->adapter);
858 } else {
859 if (radeon_connector->ddc_bus && !radeon_connector->edid)
860 radeon_connector->edid = drm_get_edid(&radeon_connector->base,
861 &radeon_connector->ddc_bus->adapter);
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400862 }
Alex Deucherc324acd2010-12-08 22:13:06 -0500863
864 if (!radeon_connector->edid) {
865 if (rdev->is_atom_bios) {
866 /* some laptops provide a hardcoded edid in rom for LCDs */
867 if (((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_LVDS) ||
868 (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)))
869 radeon_connector->edid = radeon_bios_get_hardcoded_edid(rdev);
870 } else
871 /* some servers provide a hardcoded edid in rom for KVMs */
872 radeon_connector->edid = radeon_bios_get_hardcoded_edid(rdev);
873 }
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400874 if (radeon_connector->edid) {
Alex Deucher0ac66ef2014-07-14 17:57:19 -0400875got_edid:
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400876 drm_mode_connector_update_edid_property(&radeon_connector->base, radeon_connector->edid);
877 ret = drm_add_edid_modes(&radeon_connector->base, radeon_connector->edid);
Alex Deucher16086272014-03-31 11:19:46 -0400878 drm_edid_to_eld(&radeon_connector->base, radeon_connector->edid);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200879 return ret;
880 }
881 drm_mode_connector_update_edid_property(&radeon_connector->base, NULL);
Dave Airlie42dea5d2009-09-15 20:21:11 +1000882 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200883}
884
Alex Deucherf523f742011-01-31 16:48:52 -0500885/* avivo */
Christian König32167012014-03-28 18:55:10 +0100886
887/**
888 * avivo_reduce_ratio - fractional number reduction
889 *
890 * @nom: nominator
891 * @den: denominator
892 * @nom_min: minimum value for nominator
893 * @den_min: minimum value for denominator
894 *
895 * Find the greatest common divisor and apply it on both nominator and
896 * denominator, but make nominator and denominator are at least as large
897 * as their minimum values.
898 */
899static void avivo_reduce_ratio(unsigned *nom, unsigned *den,
900 unsigned nom_min, unsigned den_min)
Alex Deucherf523f742011-01-31 16:48:52 -0500901{
Christian König32167012014-03-28 18:55:10 +0100902 unsigned tmp;
Alex Deucherf523f742011-01-31 16:48:52 -0500903
Christian König32167012014-03-28 18:55:10 +0100904 /* reduce the numbers to a simpler ratio */
905 tmp = gcd(*nom, *den);
906 *nom /= tmp;
907 *den /= tmp;
Alex Deuchera4b40d5d2011-02-14 11:43:10 -0500908
Christian König32167012014-03-28 18:55:10 +0100909 /* make sure nominator is large enough */
910 if (*nom < nom_min) {
Christian König3b333c52014-04-24 18:39:59 +0200911 tmp = DIV_ROUND_UP(nom_min, *nom);
Christian König32167012014-03-28 18:55:10 +0100912 *nom *= tmp;
913 *den *= tmp;
Alex Deucherf523f742011-01-31 16:48:52 -0500914 }
915
Christian König32167012014-03-28 18:55:10 +0100916 /* make sure the denominator is large enough */
917 if (*den < den_min) {
Christian König3b333c52014-04-24 18:39:59 +0200918 tmp = DIV_ROUND_UP(den_min, *den);
Christian König32167012014-03-28 18:55:10 +0100919 *nom *= tmp;
920 *den *= tmp;
Alex Deucherf523f742011-01-31 16:48:52 -0500921 }
Alex Deucherf523f742011-01-31 16:48:52 -0500922}
923
Christian König32167012014-03-28 18:55:10 +0100924/**
Christian Königc2fb3092014-04-20 13:24:32 +0200925 * avivo_get_fb_ref_div - feedback and ref divider calculation
926 *
927 * @nom: nominator
928 * @den: denominator
929 * @post_div: post divider
930 * @fb_div_max: feedback divider maximum
931 * @ref_div_max: reference divider maximum
932 * @fb_div: resulting feedback divider
933 * @ref_div: resulting reference divider
934 *
935 * Calculate feedback and reference divider for a given post divider. Makes
936 * sure we stay within the limits.
937 */
938static void avivo_get_fb_ref_div(unsigned nom, unsigned den, unsigned post_div,
939 unsigned fb_div_max, unsigned ref_div_max,
940 unsigned *fb_div, unsigned *ref_div)
941{
942 /* limit reference * post divider to a maximum */
Christian König4b21ce12014-05-21 15:25:41 +0200943 ref_div_max = max(min(100 / post_div, ref_div_max), 1u);
Christian Königc2fb3092014-04-20 13:24:32 +0200944
945 /* get matching reference and feedback divider */
946 *ref_div = min(max(DIV_ROUND_CLOSEST(den, post_div), 1u), ref_div_max);
947 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den);
948
949 /* limit fb divider to its maximum */
950 if (*fb_div > fb_div_max) {
951 *ref_div = DIV_ROUND_CLOSEST(*ref_div * fb_div_max, *fb_div);
952 *fb_div = fb_div_max;
953 }
954}
955
956/**
Christian König32167012014-03-28 18:55:10 +0100957 * radeon_compute_pll_avivo - compute PLL paramaters
958 *
959 * @pll: information about the PLL
960 * @dot_clock_p: resulting pixel clock
961 * fb_div_p: resulting feedback divider
962 * frac_fb_div_p: fractional part of the feedback divider
963 * ref_div_p: resulting reference divider
964 * post_div_p: resulting reference divider
965 *
966 * Try to calculate the PLL parameters to generate the given frequency:
967 * dot_clock = (ref_freq * feedback_div) / (ref_div * post_div)
968 */
Alex Deucherf523f742011-01-31 16:48:52 -0500969void radeon_compute_pll_avivo(struct radeon_pll *pll,
970 u32 freq,
971 u32 *dot_clock_p,
972 u32 *fb_div_p,
973 u32 *frac_fb_div_p,
974 u32 *ref_div_p,
975 u32 *post_div_p)
976{
Christian Königc2fb3092014-04-20 13:24:32 +0200977 unsigned target_clock = pll->flags & RADEON_PLL_USE_FRAC_FB_DIV ?
978 freq : freq / 10;
979
Christian König32167012014-03-28 18:55:10 +0100980 unsigned fb_div_min, fb_div_max, fb_div;
981 unsigned post_div_min, post_div_max, post_div;
982 unsigned ref_div_min, ref_div_max, ref_div;
983 unsigned post_div_best, diff_best;
Christian Königf8a26452014-04-16 11:54:21 +0200984 unsigned nom, den;
Alex Deucherf523f742011-01-31 16:48:52 -0500985
Christian König32167012014-03-28 18:55:10 +0100986 /* determine allowed feedback divider range */
987 fb_div_min = pll->min_feedback_div;
988 fb_div_max = pll->max_feedback_div;
Alex Deucherf523f742011-01-31 16:48:52 -0500989
990 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) {
Christian König32167012014-03-28 18:55:10 +0100991 fb_div_min *= 10;
992 fb_div_max *= 10;
Alex Deucherf523f742011-01-31 16:48:52 -0500993 }
994
Christian König32167012014-03-28 18:55:10 +0100995 /* determine allowed ref divider range */
996 if (pll->flags & RADEON_PLL_USE_REF_DIV)
997 ref_div_min = pll->reference_div;
998 else
999 ref_div_min = pll->min_ref_div;
Christian König24315812014-04-19 18:57:14 +02001000
1001 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV &&
1002 pll->flags & RADEON_PLL_USE_REF_DIV)
1003 ref_div_max = pll->reference_div;
1004 else
1005 ref_div_max = pll->max_ref_div;
Christian König32167012014-03-28 18:55:10 +01001006
1007 /* determine allowed post divider range */
1008 if (pll->flags & RADEON_PLL_USE_POST_DIV) {
1009 post_div_min = pll->post_div;
1010 post_div_max = pll->post_div;
1011 } else {
Christian König32167012014-03-28 18:55:10 +01001012 unsigned vco_min, vco_max;
1013
1014 if (pll->flags & RADEON_PLL_IS_LCD) {
1015 vco_min = pll->lcd_pll_out_min;
1016 vco_max = pll->lcd_pll_out_max;
1017 } else {
1018 vco_min = pll->pll_out_min;
1019 vco_max = pll->pll_out_max;
1020 }
1021
Christian Königc2fb3092014-04-20 13:24:32 +02001022 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) {
1023 vco_min *= 10;
1024 vco_max *= 10;
1025 }
1026
Christian König32167012014-03-28 18:55:10 +01001027 post_div_min = vco_min / target_clock;
1028 if ((target_clock * post_div_min) < vco_min)
1029 ++post_div_min;
1030 if (post_div_min < pll->min_post_div)
1031 post_div_min = pll->min_post_div;
1032
1033 post_div_max = vco_max / target_clock;
1034 if ((target_clock * post_div_max) > vco_max)
1035 --post_div_max;
1036 if (post_div_max > pll->max_post_div)
1037 post_div_max = pll->max_post_div;
1038 }
1039
1040 /* represent the searched ratio as fractional number */
Christian Königc2fb3092014-04-20 13:24:32 +02001041 nom = target_clock;
Christian König32167012014-03-28 18:55:10 +01001042 den = pll->reference_freq;
1043
1044 /* reduce the numbers to a simpler ratio */
1045 avivo_reduce_ratio(&nom, &den, fb_div_min, post_div_min);
1046
1047 /* now search for a post divider */
1048 if (pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP)
1049 post_div_best = post_div_min;
1050 else
1051 post_div_best = post_div_max;
1052 diff_best = ~0;
1053
1054 for (post_div = post_div_min; post_div <= post_div_max; ++post_div) {
Christian Königc2fb3092014-04-20 13:24:32 +02001055 unsigned diff;
1056 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max,
1057 ref_div_max, &fb_div, &ref_div);
1058 diff = abs(target_clock - (pll->reference_freq * fb_div) /
1059 (ref_div * post_div));
1060
Christian König32167012014-03-28 18:55:10 +01001061 if (diff < diff_best || (diff == diff_best &&
1062 !(pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP))) {
1063
1064 post_div_best = post_div;
1065 diff_best = diff;
1066 }
1067 }
1068 post_div = post_div_best;
1069
Christian Königc2fb3092014-04-20 13:24:32 +02001070 /* get the feedback and reference divider for the optimal value */
1071 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max, ref_div_max,
1072 &fb_div, &ref_div);
Christian König32167012014-03-28 18:55:10 +01001073
1074 /* reduce the numbers to a simpler ratio once more */
1075 /* this also makes sure that the reference divider is large enough */
1076 avivo_reduce_ratio(&fb_div, &ref_div, fb_div_min, ref_div_min);
1077
Christian König3b333c52014-04-24 18:39:59 +02001078 /* avoid high jitter with small fractional dividers */
1079 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV && (fb_div % 10)) {
Christian König74ad54f2014-05-13 12:50:54 +02001080 fb_div_min = max(fb_div_min, (9 - (fb_div % 10)) * 20 + 50);
Christian König3b333c52014-04-24 18:39:59 +02001081 if (fb_div < fb_div_min) {
1082 unsigned tmp = DIV_ROUND_UP(fb_div_min, fb_div);
1083 fb_div *= tmp;
1084 ref_div *= tmp;
1085 }
1086 }
1087
Christian König32167012014-03-28 18:55:10 +01001088 /* and finally save the result */
1089 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) {
1090 *fb_div_p = fb_div / 10;
1091 *frac_fb_div_p = fb_div % 10;
1092 } else {
1093 *fb_div_p = fb_div;
1094 *frac_fb_div_p = 0;
1095 }
1096
1097 *dot_clock_p = ((pll->reference_freq * *fb_div_p * 10) +
1098 (pll->reference_freq * *frac_fb_div_p)) /
1099 (ref_div * post_div * 10);
Alex Deucherf523f742011-01-31 16:48:52 -05001100 *ref_div_p = ref_div;
1101 *post_div_p = post_div;
Christian König32167012014-03-28 18:55:10 +01001102
1103 DRM_DEBUG_KMS("%d - %d, pll dividers - fb: %d.%d ref: %d, post %d\n",
Christian Königc2fb3092014-04-20 13:24:32 +02001104 freq, *dot_clock_p * 10, *fb_div_p, *frac_fb_div_p,
Christian König32167012014-03-28 18:55:10 +01001105 ref_div, post_div);
Alex Deucherf523f742011-01-31 16:48:52 -05001106}
1107
1108/* pre-avivo */
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001109static inline uint32_t radeon_div(uint64_t n, uint32_t d)
1110{
1111 uint64_t mod;
1112
1113 n += d / 2;
1114
1115 mod = do_div(n, d);
1116 return n;
1117}
1118
Alex Deucherf523f742011-01-31 16:48:52 -05001119void radeon_compute_pll_legacy(struct radeon_pll *pll,
1120 uint64_t freq,
1121 uint32_t *dot_clock_p,
1122 uint32_t *fb_div_p,
1123 uint32_t *frac_fb_div_p,
1124 uint32_t *ref_div_p,
1125 uint32_t *post_div_p)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001126{
1127 uint32_t min_ref_div = pll->min_ref_div;
1128 uint32_t max_ref_div = pll->max_ref_div;
Alex Deucherfc103322010-01-19 17:16:10 -05001129 uint32_t min_post_div = pll->min_post_div;
1130 uint32_t max_post_div = pll->max_post_div;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001131 uint32_t min_fractional_feed_div = 0;
1132 uint32_t max_fractional_feed_div = 0;
1133 uint32_t best_vco = pll->best_vco;
1134 uint32_t best_post_div = 1;
1135 uint32_t best_ref_div = 1;
1136 uint32_t best_feedback_div = 1;
1137 uint32_t best_frac_feedback_div = 0;
1138 uint32_t best_freq = -1;
1139 uint32_t best_error = 0xffffffff;
1140 uint32_t best_vco_diff = 1;
1141 uint32_t post_div;
Alex Deucher86cb2bb2010-03-08 12:55:16 -05001142 u32 pll_out_min, pll_out_max;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001143
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001144 DRM_DEBUG_KMS("PLL freq %llu %u %u\n", freq, pll->min_ref_div, pll->max_ref_div);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001145 freq = freq * 1000;
1146
Alex Deucher86cb2bb2010-03-08 12:55:16 -05001147 if (pll->flags & RADEON_PLL_IS_LCD) {
1148 pll_out_min = pll->lcd_pll_out_min;
1149 pll_out_max = pll->lcd_pll_out_max;
1150 } else {
1151 pll_out_min = pll->pll_out_min;
1152 pll_out_max = pll->pll_out_max;
1153 }
1154
Alex Deucher619efb12011-01-31 16:48:53 -05001155 if (pll_out_min > 64800)
1156 pll_out_min = 64800;
1157
Alex Deucherfc103322010-01-19 17:16:10 -05001158 if (pll->flags & RADEON_PLL_USE_REF_DIV)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001159 min_ref_div = max_ref_div = pll->reference_div;
1160 else {
1161 while (min_ref_div < max_ref_div-1) {
1162 uint32_t mid = (min_ref_div + max_ref_div) / 2;
1163 uint32_t pll_in = pll->reference_freq / mid;
1164 if (pll_in < pll->pll_in_min)
1165 max_ref_div = mid;
1166 else if (pll_in > pll->pll_in_max)
1167 min_ref_div = mid;
1168 else
1169 break;
1170 }
1171 }
1172
Alex Deucherfc103322010-01-19 17:16:10 -05001173 if (pll->flags & RADEON_PLL_USE_POST_DIV)
1174 min_post_div = max_post_div = pll->post_div;
1175
1176 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001177 min_fractional_feed_div = pll->min_frac_feedback_div;
1178 max_fractional_feed_div = pll->max_frac_feedback_div;
1179 }
1180
Alex Deucherbd6a60a2011-02-21 01:11:59 -05001181 for (post_div = max_post_div; post_div >= min_post_div; --post_div) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001182 uint32_t ref_div;
1183
Alex Deucherfc103322010-01-19 17:16:10 -05001184 if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1))
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001185 continue;
1186
1187 /* legacy radeons only have a few post_divs */
Alex Deucherfc103322010-01-19 17:16:10 -05001188 if (pll->flags & RADEON_PLL_LEGACY) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001189 if ((post_div == 5) ||
1190 (post_div == 7) ||
1191 (post_div == 9) ||
1192 (post_div == 10) ||
1193 (post_div == 11) ||
1194 (post_div == 13) ||
1195 (post_div == 14) ||
1196 (post_div == 15))
1197 continue;
1198 }
1199
1200 for (ref_div = min_ref_div; ref_div <= max_ref_div; ++ref_div) {
1201 uint32_t feedback_div, current_freq = 0, error, vco_diff;
1202 uint32_t pll_in = pll->reference_freq / ref_div;
1203 uint32_t min_feed_div = pll->min_feedback_div;
1204 uint32_t max_feed_div = pll->max_feedback_div + 1;
1205
1206 if (pll_in < pll->pll_in_min || pll_in > pll->pll_in_max)
1207 continue;
1208
1209 while (min_feed_div < max_feed_div) {
1210 uint32_t vco;
1211 uint32_t min_frac_feed_div = min_fractional_feed_div;
1212 uint32_t max_frac_feed_div = max_fractional_feed_div + 1;
1213 uint32_t frac_feedback_div;
1214 uint64_t tmp;
1215
1216 feedback_div = (min_feed_div + max_feed_div) / 2;
1217
1218 tmp = (uint64_t)pll->reference_freq * feedback_div;
1219 vco = radeon_div(tmp, ref_div);
1220
Alex Deucher86cb2bb2010-03-08 12:55:16 -05001221 if (vco < pll_out_min) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001222 min_feed_div = feedback_div + 1;
1223 continue;
Alex Deucher86cb2bb2010-03-08 12:55:16 -05001224 } else if (vco > pll_out_max) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001225 max_feed_div = feedback_div;
1226 continue;
1227 }
1228
1229 while (min_frac_feed_div < max_frac_feed_div) {
1230 frac_feedback_div = (min_frac_feed_div + max_frac_feed_div) / 2;
1231 tmp = (uint64_t)pll->reference_freq * 10000 * feedback_div;
1232 tmp += (uint64_t)pll->reference_freq * 1000 * frac_feedback_div;
1233 current_freq = radeon_div(tmp, ref_div * post_div);
1234
Alex Deucherfc103322010-01-19 17:16:10 -05001235 if (pll->flags & RADEON_PLL_PREFER_CLOSEST_LOWER) {
Dan Carpenter167ffc42010-07-17 12:28:02 +02001236 if (freq < current_freq)
1237 error = 0xffffffff;
1238 else
1239 error = freq - current_freq;
Alex Deucherd0e275a2009-07-13 11:08:18 -04001240 } else
1241 error = abs(current_freq - freq);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001242 vco_diff = abs(vco - best_vco);
1243
1244 if ((best_vco == 0 && error < best_error) ||
1245 (best_vco != 0 &&
Dan Carpenter167ffc42010-07-17 12:28:02 +02001246 ((best_error > 100 && error < best_error - 100) ||
Dave Airlie5480f722010-10-19 10:36:47 +10001247 (abs(error - best_error) < 100 && vco_diff < best_vco_diff)))) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001248 best_post_div = post_div;
1249 best_ref_div = ref_div;
1250 best_feedback_div = feedback_div;
1251 best_frac_feedback_div = frac_feedback_div;
1252 best_freq = current_freq;
1253 best_error = error;
1254 best_vco_diff = vco_diff;
Dave Airlie5480f722010-10-19 10:36:47 +10001255 } else if (current_freq == freq) {
1256 if (best_freq == -1) {
1257 best_post_div = post_div;
1258 best_ref_div = ref_div;
1259 best_feedback_div = feedback_div;
1260 best_frac_feedback_div = frac_feedback_div;
1261 best_freq = current_freq;
1262 best_error = error;
1263 best_vco_diff = vco_diff;
1264 } else if (((pll->flags & RADEON_PLL_PREFER_LOW_REF_DIV) && (ref_div < best_ref_div)) ||
1265 ((pll->flags & RADEON_PLL_PREFER_HIGH_REF_DIV) && (ref_div > best_ref_div)) ||
1266 ((pll->flags & RADEON_PLL_PREFER_LOW_FB_DIV) && (feedback_div < best_feedback_div)) ||
1267 ((pll->flags & RADEON_PLL_PREFER_HIGH_FB_DIV) && (feedback_div > best_feedback_div)) ||
1268 ((pll->flags & RADEON_PLL_PREFER_LOW_POST_DIV) && (post_div < best_post_div)) ||
1269 ((pll->flags & RADEON_PLL_PREFER_HIGH_POST_DIV) && (post_div > best_post_div))) {
1270 best_post_div = post_div;
1271 best_ref_div = ref_div;
1272 best_feedback_div = feedback_div;
1273 best_frac_feedback_div = frac_feedback_div;
1274 best_freq = current_freq;
1275 best_error = error;
1276 best_vco_diff = vco_diff;
1277 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001278 }
1279 if (current_freq < freq)
1280 min_frac_feed_div = frac_feedback_div + 1;
1281 else
1282 max_frac_feed_div = frac_feedback_div;
1283 }
1284 if (current_freq < freq)
1285 min_feed_div = feedback_div + 1;
1286 else
1287 max_feed_div = feedback_div;
1288 }
1289 }
1290 }
1291
1292 *dot_clock_p = best_freq / 10000;
1293 *fb_div_p = best_feedback_div;
1294 *frac_fb_div_p = best_frac_feedback_div;
1295 *ref_div_p = best_ref_div;
1296 *post_div_p = best_post_div;
Joe Perchesbbb0aef52011-04-17 20:35:52 -07001297 DRM_DEBUG_KMS("%lld %d, pll dividers - fb: %d.%d ref: %d, post %d\n",
1298 (long long)freq,
1299 best_freq / 1000, best_feedback_div, best_frac_feedback_div,
Alex Deucher51d4bf82011-01-31 16:48:51 -05001300 best_ref_div, best_post_div);
1301
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001302}
1303
1304static void radeon_user_framebuffer_destroy(struct drm_framebuffer *fb)
1305{
1306 struct radeon_framebuffer *radeon_fb = to_radeon_framebuffer(fb);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001307
Dave Airlie29d08b32010-09-27 16:17:17 +10001308 if (radeon_fb->obj) {
Luca Barbieribc9025b2010-02-09 05:49:12 +00001309 drm_gem_object_unreference_unlocked(radeon_fb->obj);
Dave Airlie29d08b32010-09-27 16:17:17 +10001310 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001311 drm_framebuffer_cleanup(fb);
1312 kfree(radeon_fb);
1313}
1314
1315static int radeon_user_framebuffer_create_handle(struct drm_framebuffer *fb,
1316 struct drm_file *file_priv,
1317 unsigned int *handle)
1318{
1319 struct radeon_framebuffer *radeon_fb = to_radeon_framebuffer(fb);
1320
1321 return drm_gem_handle_create(file_priv, radeon_fb->obj, handle);
1322}
1323
1324static const struct drm_framebuffer_funcs radeon_fb_funcs = {
1325 .destroy = radeon_user_framebuffer_destroy,
1326 .create_handle = radeon_user_framebuffer_create_handle,
1327};
1328
Dave Airlieaaefcd42012-03-06 10:44:40 +00001329int
Dave Airlie38651672010-03-30 05:34:13 +00001330radeon_framebuffer_init(struct drm_device *dev,
1331 struct radeon_framebuffer *rfb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001332 struct drm_mode_fb_cmd2 *mode_cmd,
Dave Airlie38651672010-03-30 05:34:13 +00001333 struct drm_gem_object *obj)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001334{
Dave Airlieaaefcd42012-03-06 10:44:40 +00001335 int ret;
Dave Airlie38651672010-03-30 05:34:13 +00001336 rfb->obj = obj;
Daniel Vetterc7d73f62012-12-13 23:38:38 +01001337 drm_helper_mode_fill_fb_struct(&rfb->base, mode_cmd);
Dave Airlieaaefcd42012-03-06 10:44:40 +00001338 ret = drm_framebuffer_init(dev, &rfb->base, &radeon_fb_funcs);
1339 if (ret) {
1340 rfb->obj = NULL;
1341 return ret;
1342 }
Dave Airlieaaefcd42012-03-06 10:44:40 +00001343 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001344}
1345
1346static struct drm_framebuffer *
1347radeon_user_framebuffer_create(struct drm_device *dev,
1348 struct drm_file *file_priv,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001349 struct drm_mode_fb_cmd2 *mode_cmd)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001350{
1351 struct drm_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00001352 struct radeon_framebuffer *radeon_fb;
Dave Airlieaaefcd42012-03-06 10:44:40 +00001353 int ret;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001354
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001355 obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]);
Jerome Glisse7e71c9e2010-01-17 21:21:41 +01001356 if (obj == NULL) {
1357 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001358 "can't create framebuffer\n", mode_cmd->handles[0]);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001359 return ERR_PTR(-ENOENT);
Jerome Glisse7e71c9e2010-01-17 21:21:41 +01001360 }
Dave Airlie38651672010-03-30 05:34:13 +00001361
1362 radeon_fb = kzalloc(sizeof(*radeon_fb), GFP_KERNEL);
liu chuanshengf2d68cf2013-01-31 22:13:00 +08001363 if (radeon_fb == NULL) {
1364 drm_gem_object_unreference_unlocked(obj);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001365 return ERR_PTR(-ENOMEM);
liu chuanshengf2d68cf2013-01-31 22:13:00 +08001366 }
Dave Airlie38651672010-03-30 05:34:13 +00001367
Dave Airlieaaefcd42012-03-06 10:44:40 +00001368 ret = radeon_framebuffer_init(dev, radeon_fb, mode_cmd, obj);
1369 if (ret) {
1370 kfree(radeon_fb);
1371 drm_gem_object_unreference_unlocked(obj);
xueminsub2f4b032013-01-22 22:16:53 +08001372 return ERR_PTR(ret);
Dave Airlieaaefcd42012-03-06 10:44:40 +00001373 }
Dave Airlie38651672010-03-30 05:34:13 +00001374
1375 return &radeon_fb->base;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001376}
1377
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001378static void radeon_output_poll_changed(struct drm_device *dev)
1379{
1380 struct radeon_device *rdev = dev->dev_private;
1381 radeon_fb_output_poll_changed(rdev);
1382}
1383
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001384static const struct drm_mode_config_funcs radeon_mode_funcs = {
1385 .fb_create = radeon_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001386 .output_poll_changed = radeon_output_poll_changed
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001387};
1388
Dave Airlie445282d2009-09-09 17:40:54 +10001389static struct drm_prop_enum_list radeon_tmds_pll_enum_list[] =
1390{ { 0, "driver" },
1391 { 1, "bios" },
1392};
1393
1394static struct drm_prop_enum_list radeon_tv_std_enum_list[] =
1395{ { TV_STD_NTSC, "ntsc" },
1396 { TV_STD_PAL, "pal" },
1397 { TV_STD_PAL_M, "pal-m" },
1398 { TV_STD_PAL_60, "pal-60" },
1399 { TV_STD_NTSC_J, "ntsc-j" },
1400 { TV_STD_SCART_PAL, "scart-pal" },
1401 { TV_STD_PAL_CN, "pal-cn" },
1402 { TV_STD_SECAM, "secam" },
1403};
1404
Alex Deucher5b1714d2010-08-03 19:59:20 -04001405static struct drm_prop_enum_list radeon_underscan_enum_list[] =
1406{ { UNDERSCAN_OFF, "off" },
1407 { UNDERSCAN_ON, "on" },
1408 { UNDERSCAN_AUTO, "auto" },
1409};
1410
Alex Deucher8666c072013-09-03 14:58:44 -04001411static struct drm_prop_enum_list radeon_audio_enum_list[] =
1412{ { RADEON_AUDIO_DISABLE, "off" },
1413 { RADEON_AUDIO_ENABLE, "on" },
1414 { RADEON_AUDIO_AUTO, "auto" },
1415};
1416
Alex Deucher6214bb72013-09-24 17:26:26 -04001417/* XXX support different dither options? spatial, temporal, both, etc. */
1418static struct drm_prop_enum_list radeon_dither_enum_list[] =
1419{ { RADEON_FMT_DITHER_DISABLE, "off" },
1420 { RADEON_FMT_DITHER_ENABLE, "on" },
1421};
1422
Alex Deucherd79766f2009-12-17 19:00:29 -05001423static int radeon_modeset_create_props(struct radeon_device *rdev)
Dave Airlie445282d2009-09-09 17:40:54 +10001424{
Sascha Hauer4a67d392012-02-06 10:58:17 +01001425 int sz;
Dave Airlie445282d2009-09-09 17:40:54 +10001426
1427 if (rdev->is_atom_bios) {
1428 rdev->mode_info.coherent_mode_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001429 drm_property_create_range(rdev->ddev, 0 , "coherent", 0, 1);
Dave Airlie445282d2009-09-09 17:40:54 +10001430 if (!rdev->mode_info.coherent_mode_property)
1431 return -ENOMEM;
Dave Airlie445282d2009-09-09 17:40:54 +10001432 }
1433
1434 if (!ASIC_IS_AVIVO(rdev)) {
1435 sz = ARRAY_SIZE(radeon_tmds_pll_enum_list);
1436 rdev->mode_info.tmds_pll_property =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001437 drm_property_create_enum(rdev->ddev, 0,
1438 "tmds_pll",
1439 radeon_tmds_pll_enum_list, sz);
Dave Airlie445282d2009-09-09 17:40:54 +10001440 }
1441
1442 rdev->mode_info.load_detect_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001443 drm_property_create_range(rdev->ddev, 0, "load detection", 0, 1);
Dave Airlie445282d2009-09-09 17:40:54 +10001444 if (!rdev->mode_info.load_detect_property)
1445 return -ENOMEM;
Dave Airlie445282d2009-09-09 17:40:54 +10001446
1447 drm_mode_create_scaling_mode_property(rdev->ddev);
1448
1449 sz = ARRAY_SIZE(radeon_tv_std_enum_list);
1450 rdev->mode_info.tv_std_property =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001451 drm_property_create_enum(rdev->ddev, 0,
1452 "tv standard",
1453 radeon_tv_std_enum_list, sz);
Dave Airlie445282d2009-09-09 17:40:54 +10001454
Alex Deucher5b1714d2010-08-03 19:59:20 -04001455 sz = ARRAY_SIZE(radeon_underscan_enum_list);
1456 rdev->mode_info.underscan_property =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001457 drm_property_create_enum(rdev->ddev, 0,
1458 "underscan",
1459 radeon_underscan_enum_list, sz);
Alex Deucher5b1714d2010-08-03 19:59:20 -04001460
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001461 rdev->mode_info.underscan_hborder_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001462 drm_property_create_range(rdev->ddev, 0,
1463 "underscan hborder", 0, 128);
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001464 if (!rdev->mode_info.underscan_hborder_property)
1465 return -ENOMEM;
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001466
1467 rdev->mode_info.underscan_vborder_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001468 drm_property_create_range(rdev->ddev, 0,
1469 "underscan vborder", 0, 128);
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001470 if (!rdev->mode_info.underscan_vborder_property)
1471 return -ENOMEM;
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001472
Alex Deucher8666c072013-09-03 14:58:44 -04001473 sz = ARRAY_SIZE(radeon_audio_enum_list);
1474 rdev->mode_info.audio_property =
1475 drm_property_create_enum(rdev->ddev, 0,
1476 "audio",
1477 radeon_audio_enum_list, sz);
1478
Alex Deucher6214bb72013-09-24 17:26:26 -04001479 sz = ARRAY_SIZE(radeon_dither_enum_list);
1480 rdev->mode_info.dither_property =
1481 drm_property_create_enum(rdev->ddev, 0,
1482 "dither",
1483 radeon_dither_enum_list, sz);
1484
Dave Airlie445282d2009-09-09 17:40:54 +10001485 return 0;
1486}
1487
Alex Deucherf46c0122010-03-31 00:33:27 -04001488void radeon_update_display_priority(struct radeon_device *rdev)
1489{
1490 /* adjustment options for the display watermarks */
1491 if ((radeon_disp_priority == 0) || (radeon_disp_priority > 2)) {
1492 /* set display priority to high for r3xx, rv515 chips
1493 * this avoids flickering due to underflow to the
1494 * display controllers during heavy acceleration.
Alex Deucher45737442010-05-20 11:26:11 -04001495 * Don't force high on rs4xx igp chips as it seems to
1496 * affect the sound card. See kernel bug 15982.
Alex Deucherf46c0122010-03-31 00:33:27 -04001497 */
Alex Deucher45737442010-05-20 11:26:11 -04001498 if ((ASIC_IS_R300(rdev) || (rdev->family == CHIP_RV515)) &&
1499 !(rdev->flags & RADEON_IS_IGP))
Alex Deucherf46c0122010-03-31 00:33:27 -04001500 rdev->disp_priority = 2;
1501 else
1502 rdev->disp_priority = 0;
1503 } else
1504 rdev->disp_priority = radeon_disp_priority;
1505
1506}
1507
Alex Deucher07839862012-05-14 16:52:29 +02001508/*
1509 * Allocate hdmi structs and determine register offsets
1510 */
1511static void radeon_afmt_init(struct radeon_device *rdev)
1512{
1513 int i;
1514
1515 for (i = 0; i < RADEON_MAX_AFMT_BLOCKS; i++)
1516 rdev->mode_info.afmt[i] = NULL;
1517
Alex Deucherb5306022013-07-31 16:51:33 -04001518 if (ASIC_IS_NODCE(rdev)) {
1519 /* nothing to do */
Alex Deucher07839862012-05-14 16:52:29 +02001520 } else if (ASIC_IS_DCE4(rdev)) {
Rafał Miłeckia4d39e62013-08-01 17:29:16 +02001521 static uint32_t eg_offsets[] = {
1522 EVERGREEN_CRTC0_REGISTER_OFFSET,
1523 EVERGREEN_CRTC1_REGISTER_OFFSET,
1524 EVERGREEN_CRTC2_REGISTER_OFFSET,
1525 EVERGREEN_CRTC3_REGISTER_OFFSET,
1526 EVERGREEN_CRTC4_REGISTER_OFFSET,
1527 EVERGREEN_CRTC5_REGISTER_OFFSET,
Alex Deucherb5306022013-07-31 16:51:33 -04001528 0x13830 - 0x7030,
Rafał Miłeckia4d39e62013-08-01 17:29:16 +02001529 };
1530 int num_afmt;
1531
Alex Deucherb5306022013-07-31 16:51:33 -04001532 /* DCE8 has 7 audio blocks tied to DIG encoders */
1533 /* DCE6 has 6 audio blocks tied to DIG encoders */
Alex Deucher07839862012-05-14 16:52:29 +02001534 /* DCE4/5 has 6 audio blocks tied to DIG encoders */
1535 /* DCE4.1 has 2 audio blocks tied to DIG encoders */
Alex Deucherb5306022013-07-31 16:51:33 -04001536 if (ASIC_IS_DCE8(rdev))
1537 num_afmt = 7;
1538 else if (ASIC_IS_DCE6(rdev))
1539 num_afmt = 6;
1540 else if (ASIC_IS_DCE5(rdev))
Rafał Miłeckia4d39e62013-08-01 17:29:16 +02001541 num_afmt = 6;
1542 else if (ASIC_IS_DCE41(rdev))
1543 num_afmt = 2;
1544 else /* DCE4 */
1545 num_afmt = 6;
1546
1547 BUG_ON(num_afmt > ARRAY_SIZE(eg_offsets));
1548 for (i = 0; i < num_afmt; i++) {
1549 rdev->mode_info.afmt[i] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL);
1550 if (rdev->mode_info.afmt[i]) {
1551 rdev->mode_info.afmt[i]->offset = eg_offsets[i];
1552 rdev->mode_info.afmt[i]->id = i;
Alex Deucher07839862012-05-14 16:52:29 +02001553 }
1554 }
1555 } else if (ASIC_IS_DCE3(rdev)) {
1556 /* DCE3.x has 2 audio blocks tied to DIG encoders */
1557 rdev->mode_info.afmt[0] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL);
1558 if (rdev->mode_info.afmt[0]) {
1559 rdev->mode_info.afmt[0]->offset = DCE3_HDMI_OFFSET0;
1560 rdev->mode_info.afmt[0]->id = 0;
1561 }
1562 rdev->mode_info.afmt[1] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL);
1563 if (rdev->mode_info.afmt[1]) {
1564 rdev->mode_info.afmt[1]->offset = DCE3_HDMI_OFFSET1;
1565 rdev->mode_info.afmt[1]->id = 1;
1566 }
1567 } else if (ASIC_IS_DCE2(rdev)) {
1568 /* DCE2 has at least 1 routable audio block */
1569 rdev->mode_info.afmt[0] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL);
1570 if (rdev->mode_info.afmt[0]) {
1571 rdev->mode_info.afmt[0]->offset = DCE2_HDMI_OFFSET0;
1572 rdev->mode_info.afmt[0]->id = 0;
1573 }
1574 /* r6xx has 2 routable audio blocks */
1575 if (rdev->family >= CHIP_R600) {
1576 rdev->mode_info.afmt[1] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL);
1577 if (rdev->mode_info.afmt[1]) {
1578 rdev->mode_info.afmt[1]->offset = DCE2_HDMI_OFFSET1;
1579 rdev->mode_info.afmt[1]->id = 1;
1580 }
1581 }
1582 }
1583}
1584
1585static void radeon_afmt_fini(struct radeon_device *rdev)
1586{
1587 int i;
1588
1589 for (i = 0; i < RADEON_MAX_AFMT_BLOCKS; i++) {
1590 kfree(rdev->mode_info.afmt[i]);
1591 rdev->mode_info.afmt[i] = NULL;
1592 }
1593}
1594
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001595int radeon_modeset_init(struct radeon_device *rdev)
1596{
Alex Deucher18917b62010-02-01 16:02:25 -05001597 int i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001598 int ret;
1599
1600 drm_mode_config_init(rdev->ddev);
1601 rdev->mode_info.mode_config_initialized = true;
1602
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02001603 rdev->ddev->mode_config.funcs = &radeon_mode_funcs;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001604
Alex Deucher881dd742011-01-06 21:19:14 -05001605 if (ASIC_IS_DCE5(rdev)) {
1606 rdev->ddev->mode_config.max_width = 16384;
1607 rdev->ddev->mode_config.max_height = 16384;
1608 } else if (ASIC_IS_AVIVO(rdev)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001609 rdev->ddev->mode_config.max_width = 8192;
1610 rdev->ddev->mode_config.max_height = 8192;
1611 } else {
1612 rdev->ddev->mode_config.max_width = 4096;
1613 rdev->ddev->mode_config.max_height = 4096;
1614 }
1615
Dave Airlie019d96c2011-09-29 16:20:42 +01001616 rdev->ddev->mode_config.preferred_depth = 24;
1617 rdev->ddev->mode_config.prefer_shadow = 1;
1618
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001619 rdev->ddev->mode_config.fb_base = rdev->mc.aper_base;
1620
Dave Airlie445282d2009-09-09 17:40:54 +10001621 ret = radeon_modeset_create_props(rdev);
1622 if (ret) {
1623 return ret;
1624 }
Dave Airliedfee5612009-10-02 09:19:09 +10001625
Alex Deucherf376b942010-08-05 21:21:16 -04001626 /* init i2c buses */
1627 radeon_i2c_init(rdev);
1628
Alex Deucher3c537882010-02-05 04:21:19 -05001629 /* check combios for a valid hardcoded EDID - Sun servers */
1630 if (!rdev->is_atom_bios) {
1631 /* check for hardcoded EDID in BIOS */
1632 radeon_combios_check_hardcoded_edid(rdev);
1633 }
1634
Dave Airliedfee5612009-10-02 09:19:09 +10001635 /* allocate crtcs */
Alex Deucher18917b62010-02-01 16:02:25 -05001636 for (i = 0; i < rdev->num_crtc; i++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001637 radeon_crtc_init(rdev->ddev, i);
1638 }
1639
1640 /* okay we should have all the bios connectors */
1641 ret = radeon_setup_enc_conn(rdev->ddev);
1642 if (!ret) {
1643 return ret;
1644 }
Alex Deucherac89af12011-05-22 13:20:36 -04001645
Alex Deucher3fa47d92012-01-20 14:56:39 -05001646 /* init dig PHYs, disp eng pll */
1647 if (rdev->is_atom_bios) {
Alex Deucherac89af12011-05-22 13:20:36 -04001648 radeon_atom_encoder_init(rdev);
Alex Deucherf3f1f032012-03-20 17:18:04 -04001649 radeon_atom_disp_eng_pll_init(rdev);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001650 }
Alex Deucherac89af12011-05-22 13:20:36 -04001651
Alex Deucherd4877cf2009-12-04 16:56:37 -05001652 /* initialize hpd */
1653 radeon_hpd_init(rdev);
Dave Airlie38651672010-03-30 05:34:13 +00001654
Alex Deucher07839862012-05-14 16:52:29 +02001655 /* setup afmt */
1656 radeon_afmt_init(rdev);
1657
Dave Airlie38651672010-03-30 05:34:13 +00001658 radeon_fbdev_init(rdev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001659 drm_kms_helper_poll_init(rdev->ddev);
1660
Alex Deucher6c7bcce2013-12-18 14:07:14 -05001661 if (rdev->pm.dpm_enabled) {
1662 /* do dpm late init */
1663 ret = radeon_pm_late_init(rdev);
1664 if (ret) {
1665 rdev->pm.dpm_enabled = false;
1666 DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n");
1667 }
1668 /* set the dpm state for PX since there won't be
1669 * a modeset to call this.
1670 */
1671 radeon_pm_compute_clocks(rdev);
1672 }
1673
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001674 return 0;
1675}
1676
1677void radeon_modeset_fini(struct radeon_device *rdev)
1678{
Dave Airlie38651672010-03-30 05:34:13 +00001679 radeon_fbdev_fini(rdev);
Alex Deucher3c537882010-02-05 04:21:19 -05001680 kfree(rdev->mode_info.bios_hardcoded_edid);
1681
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001682 if (rdev->mode_info.mode_config_initialized) {
Alex Deucher07839862012-05-14 16:52:29 +02001683 radeon_afmt_fini(rdev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001684 drm_kms_helper_poll_fini(rdev->ddev);
Alex Deucherd4877cf2009-12-04 16:56:37 -05001685 radeon_hpd_fini(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001686 drm_mode_config_cleanup(rdev->ddev);
1687 rdev->mode_info.mode_config_initialized = false;
1688 }
Alex Deucherf376b942010-08-05 21:21:16 -04001689 /* free i2c buses */
1690 radeon_i2c_fini(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001691}
1692
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001693static bool is_hdtv_mode(const struct drm_display_mode *mode)
Alex Deucher039ed2d2010-08-20 11:57:19 -04001694{
1695 /* try and guess if this is a tv or a monitor */
1696 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
1697 (mode->vdisplay == 576) || /* 576p */
1698 (mode->vdisplay == 720) || /* 720p */
1699 (mode->vdisplay == 1080)) /* 1080p */
1700 return true;
1701 else
1702 return false;
1703}
1704
Jerome Glissec93bb852009-07-13 21:04:08 +02001705bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001706 const struct drm_display_mode *mode,
Jerome Glissec93bb852009-07-13 21:04:08 +02001707 struct drm_display_mode *adjusted_mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001708{
Jerome Glissec93bb852009-07-13 21:04:08 +02001709 struct drm_device *dev = crtc->dev;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001710 struct radeon_device *rdev = dev->dev_private;
Jerome Glissec93bb852009-07-13 21:04:08 +02001711 struct drm_encoder *encoder;
1712 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1713 struct radeon_encoder *radeon_encoder;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001714 struct drm_connector *connector;
1715 struct radeon_connector *radeon_connector;
Jerome Glissec93bb852009-07-13 21:04:08 +02001716 bool first = true;
Alex Deucherd65d65b2010-08-03 19:58:49 -04001717 u32 src_v = 1, dst_v = 1;
1718 u32 src_h = 1, dst_h = 1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001719
Alex Deucher5b1714d2010-08-03 19:59:20 -04001720 radeon_crtc->h_border = 0;
1721 radeon_crtc->v_border = 0;
1722
Jerome Glissec93bb852009-07-13 21:04:08 +02001723 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Jerome Glissec93bb852009-07-13 21:04:08 +02001724 if (encoder->crtc != crtc)
1725 continue;
Alex Deucherd65d65b2010-08-03 19:58:49 -04001726 radeon_encoder = to_radeon_encoder(encoder);
Alex Deucher5b1714d2010-08-03 19:59:20 -04001727 connector = radeon_get_connector_for_encoder(encoder);
1728 radeon_connector = to_radeon_connector(connector);
1729
Jerome Glissec93bb852009-07-13 21:04:08 +02001730 if (first) {
Alex Deucher80297e82009-11-12 14:55:14 -05001731 /* set scaling */
1732 if (radeon_encoder->rmx_type == RMX_OFF)
1733 radeon_crtc->rmx_type = RMX_OFF;
1734 else if (mode->hdisplay < radeon_encoder->native_mode.hdisplay ||
1735 mode->vdisplay < radeon_encoder->native_mode.vdisplay)
1736 radeon_crtc->rmx_type = radeon_encoder->rmx_type;
1737 else
1738 radeon_crtc->rmx_type = RMX_OFF;
1739 /* copy native mode */
Jerome Glissec93bb852009-07-13 21:04:08 +02001740 memcpy(&radeon_crtc->native_mode,
Alex Deucher80297e82009-11-12 14:55:14 -05001741 &radeon_encoder->native_mode,
Alex Deucherde2103e2009-10-09 15:14:30 -04001742 sizeof(struct drm_display_mode));
Alex Deucherff32a592010-09-07 13:26:39 -04001743 src_v = crtc->mode.vdisplay;
1744 dst_v = radeon_crtc->native_mode.vdisplay;
1745 src_h = crtc->mode.hdisplay;
1746 dst_h = radeon_crtc->native_mode.hdisplay;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001747
1748 /* fix up for overscan on hdmi */
1749 if (ASIC_IS_AVIVO(rdev) &&
Alex Deuchere6db0da2010-09-10 03:19:05 -04001750 (!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
Alex Deucher5b1714d2010-08-03 19:59:20 -04001751 ((radeon_encoder->underscan_type == UNDERSCAN_ON) ||
1752 ((radeon_encoder->underscan_type == UNDERSCAN_AUTO) &&
Alex Deucher039ed2d2010-08-20 11:57:19 -04001753 drm_detect_hdmi_monitor(radeon_connector->edid) &&
1754 is_hdtv_mode(mode)))) {
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001755 if (radeon_encoder->underscan_hborder != 0)
1756 radeon_crtc->h_border = radeon_encoder->underscan_hborder;
1757 else
1758 radeon_crtc->h_border = (mode->hdisplay >> 5) + 16;
1759 if (radeon_encoder->underscan_vborder != 0)
1760 radeon_crtc->v_border = radeon_encoder->underscan_vborder;
1761 else
1762 radeon_crtc->v_border = (mode->vdisplay >> 5) + 16;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001763 radeon_crtc->rmx_type = RMX_FULL;
1764 src_v = crtc->mode.vdisplay;
1765 dst_v = crtc->mode.vdisplay - (radeon_crtc->v_border * 2);
1766 src_h = crtc->mode.hdisplay;
1767 dst_h = crtc->mode.hdisplay - (radeon_crtc->h_border * 2);
1768 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001769 first = false;
1770 } else {
1771 if (radeon_crtc->rmx_type != radeon_encoder->rmx_type) {
1772 /* WARNING: Right now this can't happen but
1773 * in the future we need to check that scaling
Alex Deucherd65d65b2010-08-03 19:58:49 -04001774 * are consistent across different encoder
Jerome Glissec93bb852009-07-13 21:04:08 +02001775 * (ie all encoder can work with the same
1776 * scaling).
1777 */
Alex Deucherd65d65b2010-08-03 19:58:49 -04001778 DRM_ERROR("Scaling not consistent across encoder.\n");
Jerome Glissec93bb852009-07-13 21:04:08 +02001779 return false;
1780 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001781 }
1782 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001783 if (radeon_crtc->rmx_type != RMX_OFF) {
1784 fixed20_12 a, b;
Alex Deucherd65d65b2010-08-03 19:58:49 -04001785 a.full = dfixed_const(src_v);
1786 b.full = dfixed_const(dst_v);
Ben Skeggs68adac52010-04-28 11:46:42 +10001787 radeon_crtc->vsc.full = dfixed_div(a, b);
Alex Deucherd65d65b2010-08-03 19:58:49 -04001788 a.full = dfixed_const(src_h);
1789 b.full = dfixed_const(dst_h);
Ben Skeggs68adac52010-04-28 11:46:42 +10001790 radeon_crtc->hsc.full = dfixed_div(a, b);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001791 } else {
Ben Skeggs68adac52010-04-28 11:46:42 +10001792 radeon_crtc->vsc.full = dfixed_const(1);
1793 radeon_crtc->hsc.full = dfixed_const(1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001794 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001795 return true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001796}
Mario Kleiner6383cf72010-10-05 19:57:36 -04001797
1798/*
Mario Kleinerd47abc52013-10-30 05:13:07 +01001799 * Retrieve current video scanout position of crtc on a given gpu, and
1800 * an optional accurate timestamp of when query happened.
Mario Kleiner6383cf72010-10-05 19:57:36 -04001801 *
Mario Kleinerf5a80202010-10-23 04:42:17 +02001802 * \param dev Device to query.
Mario Kleiner6383cf72010-10-05 19:57:36 -04001803 * \param crtc Crtc to query.
Ville Syrjäläabca9e42013-10-28 20:50:48 +02001804 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0).
Mario Kleiner6383cf72010-10-05 19:57:36 -04001805 * \param *vpos Location where vertical scanout position should be stored.
1806 * \param *hpos Location where horizontal scanout position should go.
Mario Kleinerd47abc52013-10-30 05:13:07 +01001807 * \param *stime Target location for timestamp taken immediately before
1808 * scanout position query. Can be NULL to skip timestamp.
1809 * \param *etime Target location for timestamp taken immediately after
1810 * scanout position query. Can be NULL to skip timestamp.
Mario Kleiner6383cf72010-10-05 19:57:36 -04001811 *
1812 * Returns vpos as a positive number while in active scanout area.
1813 * Returns vpos as a negative number inside vblank, counting the number
1814 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
1815 * until start of active scanout / end of vblank."
1816 *
1817 * \return Flags, or'ed together as follows:
1818 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001819 * DRM_SCANOUTPOS_VALID = Query successful.
Mario Kleinerf5a80202010-10-23 04:42:17 +02001820 * DRM_SCANOUTPOS_INVBL = Inside vblank.
1821 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
Mario Kleiner6383cf72010-10-05 19:57:36 -04001822 * this flag means that returned position may be offset by a constant but
1823 * unknown small number of scanlines wrt. real scanout position.
1824 *
1825 */
Ville Syrjäläabca9e42013-10-28 20:50:48 +02001826int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc, unsigned int flags,
1827 int *vpos, int *hpos, ktime_t *stime, ktime_t *etime)
Mario Kleiner6383cf72010-10-05 19:57:36 -04001828{
1829 u32 stat_crtc = 0, vbl = 0, position = 0;
1830 int vbl_start, vbl_end, vtotal, ret = 0;
1831 bool in_vbl = true;
1832
Mario Kleinerf5a80202010-10-23 04:42:17 +02001833 struct radeon_device *rdev = dev->dev_private;
1834
Mario Kleinerd47abc52013-10-30 05:13:07 +01001835 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
1836
1837 /* Get optional system timestamp before query. */
1838 if (stime)
1839 *stime = ktime_get();
1840
Mario Kleiner6383cf72010-10-05 19:57:36 -04001841 if (ASIC_IS_DCE4(rdev)) {
1842 if (crtc == 0) {
1843 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1844 EVERGREEN_CRTC0_REGISTER_OFFSET);
1845 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1846 EVERGREEN_CRTC0_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001847 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001848 }
1849 if (crtc == 1) {
1850 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1851 EVERGREEN_CRTC1_REGISTER_OFFSET);
1852 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1853 EVERGREEN_CRTC1_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001854 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001855 }
1856 if (crtc == 2) {
1857 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1858 EVERGREEN_CRTC2_REGISTER_OFFSET);
1859 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1860 EVERGREEN_CRTC2_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001861 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001862 }
1863 if (crtc == 3) {
1864 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1865 EVERGREEN_CRTC3_REGISTER_OFFSET);
1866 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1867 EVERGREEN_CRTC3_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001868 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001869 }
1870 if (crtc == 4) {
1871 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1872 EVERGREEN_CRTC4_REGISTER_OFFSET);
1873 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1874 EVERGREEN_CRTC4_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001875 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001876 }
1877 if (crtc == 5) {
1878 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1879 EVERGREEN_CRTC5_REGISTER_OFFSET);
1880 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1881 EVERGREEN_CRTC5_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001882 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001883 }
1884 } else if (ASIC_IS_AVIVO(rdev)) {
1885 if (crtc == 0) {
1886 vbl = RREG32(AVIVO_D1CRTC_V_BLANK_START_END);
1887 position = RREG32(AVIVO_D1CRTC_STATUS_POSITION);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001888 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001889 }
1890 if (crtc == 1) {
1891 vbl = RREG32(AVIVO_D2CRTC_V_BLANK_START_END);
1892 position = RREG32(AVIVO_D2CRTC_STATUS_POSITION);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001893 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001894 }
1895 } else {
1896 /* Pre-AVIVO: Different encoding of scanout pos and vblank interval. */
1897 if (crtc == 0) {
1898 /* Assume vbl_end == 0, get vbl_start from
1899 * upper 16 bits.
1900 */
1901 vbl = (RREG32(RADEON_CRTC_V_TOTAL_DISP) &
1902 RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT;
1903 /* Only retrieve vpos from upper 16 bits, set hpos == 0. */
1904 position = (RREG32(RADEON_CRTC_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL;
1905 stat_crtc = RREG32(RADEON_CRTC_STATUS);
1906 if (!(stat_crtc & 1))
1907 in_vbl = false;
1908
Mario Kleinerf5a80202010-10-23 04:42:17 +02001909 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001910 }
1911 if (crtc == 1) {
1912 vbl = (RREG32(RADEON_CRTC2_V_TOTAL_DISP) &
1913 RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT;
1914 position = (RREG32(RADEON_CRTC2_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL;
1915 stat_crtc = RREG32(RADEON_CRTC2_STATUS);
1916 if (!(stat_crtc & 1))
1917 in_vbl = false;
1918
Mario Kleinerf5a80202010-10-23 04:42:17 +02001919 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001920 }
1921 }
1922
Mario Kleinerd47abc52013-10-30 05:13:07 +01001923 /* Get optional system timestamp after query. */
1924 if (etime)
1925 *etime = ktime_get();
1926
1927 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
1928
Mario Kleiner6383cf72010-10-05 19:57:36 -04001929 /* Decode into vertical and horizontal scanout position. */
1930 *vpos = position & 0x1fff;
1931 *hpos = (position >> 16) & 0x1fff;
1932
1933 /* Valid vblank area boundaries from gpu retrieved? */
1934 if (vbl > 0) {
1935 /* Yes: Decode. */
Mario Kleinerf5a80202010-10-23 04:42:17 +02001936 ret |= DRM_SCANOUTPOS_ACCURATE;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001937 vbl_start = vbl & 0x1fff;
1938 vbl_end = (vbl >> 16) & 0x1fff;
1939 }
1940 else {
1941 /* No: Fake something reasonable which gives at least ok results. */
Mario Kleinerf5a80202010-10-23 04:42:17 +02001942 vbl_start = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vdisplay;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001943 vbl_end = 0;
1944 }
1945
1946 /* Test scanout position against vblank region. */
1947 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
1948 in_vbl = false;
1949
1950 /* Check if inside vblank area and apply corrective offsets:
1951 * vpos will then be >=0 in video scanout area, but negative
1952 * within vblank area, counting down the number of lines until
1953 * start of scanout.
1954 */
1955
1956 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
1957 if (in_vbl && (*vpos >= vbl_start)) {
Mario Kleinerf5a80202010-10-23 04:42:17 +02001958 vtotal = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vtotal;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001959 *vpos = *vpos - vtotal;
1960 }
1961
1962 /* Correct for shifted end of vbl at vbl_end. */
1963 *vpos = *vpos - vbl_end;
1964
1965 /* In vblank? */
1966 if (in_vbl)
Mario Kleinerf5a80202010-10-23 04:42:17 +02001967 ret |= DRM_SCANOUTPOS_INVBL;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001968
Ville Syrjälä8072bfa2013-10-28 21:22:52 +02001969 /* Is vpos outside nominal vblank area, but less than
1970 * 1/100 of a frame height away from start of vblank?
1971 * If so, assume this isn't a massively delayed vblank
1972 * interrupt, but a vblank interrupt that fired a few
1973 * microseconds before true start of vblank. Compensate
1974 * by adding a full frame duration to the final timestamp.
1975 * Happens, e.g., on ATI R500, R600.
1976 *
1977 * We only do this if DRM_CALLED_FROM_VBLIRQ.
1978 */
1979 if ((flags & DRM_CALLED_FROM_VBLIRQ) && !in_vbl) {
1980 vbl_start = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vdisplay;
1981 vtotal = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vtotal;
1982
1983 if (vbl_start - *vpos < vtotal / 100) {
1984 *vpos -= vtotal;
1985
1986 /* Signal this correction as "applied". */
1987 ret |= 0x8;
1988 }
1989 }
1990
Mario Kleiner6383cf72010-10-05 19:57:36 -04001991 return ret;
1992}