blob: 2eff98cfd72884ab2c2e871f87858cbf97edbb13 [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 */
26#include "drmP.h"
27#include "radeon_drm.h"
28#include "radeon.h"
29
30#include "atom.h"
31#include <asm/div64.h>
32
33#include "drm_crtc_helper.h"
34#include "drm_edid.h"
35
36static int radeon_ddc_dump(struct drm_connector *connector);
37
38static void avivo_crtc_load_lut(struct drm_crtc *crtc)
39{
40 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
41 struct drm_device *dev = crtc->dev;
42 struct radeon_device *rdev = dev->dev_private;
43 int i;
44
Dave Airlied9fdaaf2010-08-02 10:42:55 +100045 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020046 WREG32(AVIVO_DC_LUTA_CONTROL + radeon_crtc->crtc_offset, 0);
47
48 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0);
49 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0);
50 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0);
51
52 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff);
53 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff);
54 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff);
55
56 WREG32(AVIVO_DC_LUT_RW_SELECT, radeon_crtc->crtc_id);
57 WREG32(AVIVO_DC_LUT_RW_MODE, 0);
58 WREG32(AVIVO_DC_LUT_WRITE_EN_MASK, 0x0000003f);
59
60 WREG8(AVIVO_DC_LUT_RW_INDEX, 0);
61 for (i = 0; i < 256; i++) {
62 WREG32(AVIVO_DC_LUT_30_COLOR,
63 (radeon_crtc->lut_r[i] << 20) |
64 (radeon_crtc->lut_g[i] << 10) |
65 (radeon_crtc->lut_b[i] << 0));
66 }
67
68 WREG32(AVIVO_D1GRPH_LUT_SEL + radeon_crtc->crtc_offset, radeon_crtc->crtc_id);
69}
70
Alex Deucherfee298f2011-01-06 21:19:30 -050071static void dce4_crtc_load_lut(struct drm_crtc *crtc)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050072{
73 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
74 struct drm_device *dev = crtc->dev;
75 struct radeon_device *rdev = dev->dev_private;
76 int i;
77
Dave Airlied9fdaaf2010-08-02 10:42:55 +100078 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050079 WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0);
80
81 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0);
82 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0);
83 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0);
84
85 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff);
86 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff);
87 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff);
88
Alex Deucher677d0762010-04-22 22:58:50 -040089 WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0);
90 WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050091
Alex Deucher677d0762010-04-22 22:58:50 -040092 WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050093 for (i = 0; i < 256; i++) {
Alex Deucher677d0762010-04-22 22:58:50 -040094 WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset,
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050095 (radeon_crtc->lut_r[i] << 20) |
96 (radeon_crtc->lut_g[i] << 10) |
97 (radeon_crtc->lut_b[i] << 0));
98 }
99}
100
Alex Deucherfee298f2011-01-06 21:19:30 -0500101static void dce5_crtc_load_lut(struct drm_crtc *crtc)
102{
103 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
104 struct drm_device *dev = crtc->dev;
105 struct radeon_device *rdev = dev->dev_private;
106 int i;
107
108 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id);
109
110 WREG32(NI_INPUT_CSC_CONTROL + radeon_crtc->crtc_offset,
111 (NI_INPUT_CSC_GRPH_MODE(NI_INPUT_CSC_BYPASS) |
112 NI_INPUT_CSC_OVL_MODE(NI_INPUT_CSC_BYPASS)));
113 WREG32(NI_PRESCALE_GRPH_CONTROL + radeon_crtc->crtc_offset,
114 NI_GRPH_PRESCALE_BYPASS);
115 WREG32(NI_PRESCALE_OVL_CONTROL + radeon_crtc->crtc_offset,
116 NI_OVL_PRESCALE_BYPASS);
117 WREG32(NI_INPUT_GAMMA_CONTROL + radeon_crtc->crtc_offset,
118 (NI_GRPH_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT) |
119 NI_OVL_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT)));
120
121 WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0);
122
123 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0);
124 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0);
125 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0);
126
127 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff);
128 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff);
129 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff);
130
131 WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0);
132 WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007);
133
134 WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0);
135 for (i = 0; i < 256; i++) {
136 WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset,
137 (radeon_crtc->lut_r[i] << 20) |
138 (radeon_crtc->lut_g[i] << 10) |
139 (radeon_crtc->lut_b[i] << 0));
140 }
141
142 WREG32(NI_DEGAMMA_CONTROL + radeon_crtc->crtc_offset,
143 (NI_GRPH_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) |
144 NI_OVL_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) |
145 NI_ICON_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) |
146 NI_CURSOR_DEGAMMA_MODE(NI_DEGAMMA_BYPASS)));
147 WREG32(NI_GAMUT_REMAP_CONTROL + radeon_crtc->crtc_offset,
148 (NI_GRPH_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS) |
149 NI_OVL_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS)));
150 WREG32(NI_REGAMMA_CONTROL + radeon_crtc->crtc_offset,
151 (NI_GRPH_REGAMMA_MODE(NI_REGAMMA_BYPASS) |
152 NI_OVL_REGAMMA_MODE(NI_REGAMMA_BYPASS)));
153 WREG32(NI_OUTPUT_CSC_CONTROL + radeon_crtc->crtc_offset,
154 (NI_OUTPUT_CSC_GRPH_MODE(NI_OUTPUT_CSC_BYPASS) |
155 NI_OUTPUT_CSC_OVL_MODE(NI_OUTPUT_CSC_BYPASS)));
156 /* XXX match this to the depth of the crtc fmt block, move to modeset? */
157 WREG32(0x6940 + radeon_crtc->crtc_offset, 0);
158
159}
160
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200161static void legacy_crtc_load_lut(struct drm_crtc *crtc)
162{
163 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
164 struct drm_device *dev = crtc->dev;
165 struct radeon_device *rdev = dev->dev_private;
166 int i;
167 uint32_t dac2_cntl;
168
169 dac2_cntl = RREG32(RADEON_DAC_CNTL2);
170 if (radeon_crtc->crtc_id == 0)
171 dac2_cntl &= (uint32_t)~RADEON_DAC2_PALETTE_ACC_CTL;
172 else
173 dac2_cntl |= RADEON_DAC2_PALETTE_ACC_CTL;
174 WREG32(RADEON_DAC_CNTL2, dac2_cntl);
175
176 WREG8(RADEON_PALETTE_INDEX, 0);
177 for (i = 0; i < 256; i++) {
178 WREG32(RADEON_PALETTE_30_DATA,
179 (radeon_crtc->lut_r[i] << 20) |
180 (radeon_crtc->lut_g[i] << 10) |
181 (radeon_crtc->lut_b[i] << 0));
182 }
183}
184
185void radeon_crtc_load_lut(struct drm_crtc *crtc)
186{
187 struct drm_device *dev = crtc->dev;
188 struct radeon_device *rdev = dev->dev_private;
189
190 if (!crtc->enabled)
191 return;
192
Alex Deucherfee298f2011-01-06 21:19:30 -0500193 if (ASIC_IS_DCE5(rdev))
194 dce5_crtc_load_lut(crtc);
195 else if (ASIC_IS_DCE4(rdev))
196 dce4_crtc_load_lut(crtc);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500197 else if (ASIC_IS_AVIVO(rdev))
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200198 avivo_crtc_load_lut(crtc);
199 else
200 legacy_crtc_load_lut(crtc);
201}
202
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000203/** Sets the color ramps on behalf of fbcon */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200204void radeon_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
205 u16 blue, int regno)
206{
207 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
208
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200209 radeon_crtc->lut_r[regno] = red >> 6;
210 radeon_crtc->lut_g[regno] = green >> 6;
211 radeon_crtc->lut_b[regno] = blue >> 6;
212}
213
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000214/** Gets the color ramps on behalf of fbcon */
215void radeon_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
216 u16 *blue, int regno)
217{
218 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
219
220 *red = radeon_crtc->lut_r[regno] << 6;
221 *green = radeon_crtc->lut_g[regno] << 6;
222 *blue = radeon_crtc->lut_b[regno] << 6;
223}
224
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200225static void radeon_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +0100226 u16 *blue, uint32_t start, uint32_t size)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200227{
228 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
James Simmons72034252010-08-03 01:33:19 +0100229 int end = (start + size > 256) ? 256 : start + size, i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200230
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000231 /* userspace palettes are always correct as is */
James Simmons72034252010-08-03 01:33:19 +0100232 for (i = start; i < end; i++) {
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000233 radeon_crtc->lut_r[i] = red[i] >> 6;
234 radeon_crtc->lut_g[i] = green[i] >> 6;
235 radeon_crtc->lut_b[i] = blue[i] >> 6;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200236 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200237 radeon_crtc_load_lut(crtc);
238}
239
240static void radeon_crtc_destroy(struct drm_crtc *crtc)
241{
242 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
243
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200244 drm_crtc_cleanup(crtc);
245 kfree(radeon_crtc);
246}
247
Alex Deucher6f34be52010-11-21 10:59:01 -0500248/*
249 * Handle unpin events outside the interrupt handler proper.
250 */
251static void radeon_unpin_work_func(struct work_struct *__work)
252{
253 struct radeon_unpin_work *work =
254 container_of(__work, struct radeon_unpin_work, work);
255 int r;
256
257 /* unpin of the old buffer */
258 r = radeon_bo_reserve(work->old_rbo, false);
259 if (likely(r == 0)) {
260 r = radeon_bo_unpin(work->old_rbo);
261 if (unlikely(r != 0)) {
262 DRM_ERROR("failed to unpin buffer after flip\n");
263 }
264 radeon_bo_unreserve(work->old_rbo);
265 } else
266 DRM_ERROR("failed to reserve buffer after flip\n");
267 kfree(work);
268}
269
270void radeon_crtc_handle_flip(struct radeon_device *rdev, int crtc_id)
271{
272 struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id];
273 struct radeon_unpin_work *work;
274 struct drm_pending_vblank_event *e;
275 struct timeval now;
276 unsigned long flags;
277 u32 update_pending;
278 int vpos, hpos;
279
280 spin_lock_irqsave(&rdev->ddev->event_lock, flags);
281 work = radeon_crtc->unpin_work;
282 if (work == NULL ||
283 !radeon_fence_signaled(work->fence)) {
284 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags);
285 return;
286 }
287 /* New pageflip, or just completion of a previous one? */
288 if (!radeon_crtc->deferred_flip_completion) {
289 /* do the flip (mmio) */
290 update_pending = radeon_page_flip(rdev, crtc_id, work->new_crtc_base);
291 } else {
292 /* This is just a completion of a flip queued in crtc
293 * at last invocation. Make sure we go directly to
294 * completion routine.
295 */
296 update_pending = 0;
297 radeon_crtc->deferred_flip_completion = 0;
298 }
299
300 /* Has the pageflip already completed in crtc, or is it certain
301 * to complete in this vblank?
302 */
303 if (update_pending &&
304 (DRM_SCANOUTPOS_VALID & radeon_get_crtc_scanoutpos(rdev->ddev, crtc_id,
305 &vpos, &hpos)) &&
306 (vpos >=0) &&
307 (vpos < (99 * rdev->mode_info.crtcs[crtc_id]->base.hwmode.crtc_vdisplay)/100)) {
308 /* crtc didn't flip in this target vblank interval,
309 * but flip is pending in crtc. It will complete it
310 * in next vblank interval, so complete the flip at
311 * next vblank irq.
312 */
313 radeon_crtc->deferred_flip_completion = 1;
314 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags);
315 return;
316 }
317
318 /* Pageflip (will be) certainly completed in this vblank. Clean up. */
319 radeon_crtc->unpin_work = NULL;
320
321 /* wakeup userspace */
322 if (work->event) {
323 e = work->event;
Mario Kleinerb6724402010-11-21 10:59:03 -0500324 e->event.sequence = drm_vblank_count_and_time(rdev->ddev, crtc_id, &now);
Alex Deucher6f34be52010-11-21 10:59:01 -0500325 e->event.tv_sec = now.tv_sec;
326 e->event.tv_usec = now.tv_usec;
327 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
328 wake_up_interruptible(&e->base.file_priv->event_wait);
329 }
330 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags);
331
332 drm_vblank_put(rdev->ddev, radeon_crtc->crtc_id);
333 radeon_fence_unref(&work->fence);
334 radeon_post_page_flip(work->rdev, work->crtc_id);
335 schedule_work(&work->work);
336}
337
338static int radeon_crtc_page_flip(struct drm_crtc *crtc,
339 struct drm_framebuffer *fb,
340 struct drm_pending_vblank_event *event)
341{
342 struct drm_device *dev = crtc->dev;
343 struct radeon_device *rdev = dev->dev_private;
344 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
345 struct radeon_framebuffer *old_radeon_fb;
346 struct radeon_framebuffer *new_radeon_fb;
347 struct drm_gem_object *obj;
348 struct radeon_bo *rbo;
349 struct radeon_fence *fence;
350 struct radeon_unpin_work *work;
351 unsigned long flags;
352 u32 tiling_flags, pitch_pixels;
353 u64 base;
354 int r;
355
356 work = kzalloc(sizeof *work, GFP_KERNEL);
357 if (work == NULL)
358 return -ENOMEM;
359
360 r = radeon_fence_create(rdev, &fence);
361 if (unlikely(r != 0)) {
362 kfree(work);
363 DRM_ERROR("flip queue: failed to create fence.\n");
364 return -ENOMEM;
365 }
366 work->event = event;
367 work->rdev = rdev;
368 work->crtc_id = radeon_crtc->crtc_id;
369 work->fence = radeon_fence_ref(fence);
370 old_radeon_fb = to_radeon_framebuffer(crtc->fb);
371 new_radeon_fb = to_radeon_framebuffer(fb);
372 /* schedule unpin of the old buffer */
373 obj = old_radeon_fb->obj;
374 rbo = obj->driver_private;
375 work->old_rbo = rbo;
376 INIT_WORK(&work->work, radeon_unpin_work_func);
377
378 /* We borrow the event spin lock for protecting unpin_work */
379 spin_lock_irqsave(&dev->event_lock, flags);
380 if (radeon_crtc->unpin_work) {
381 spin_unlock_irqrestore(&dev->event_lock, flags);
382 kfree(work);
383 radeon_fence_unref(&fence);
384
385 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
386 return -EBUSY;
387 }
388 radeon_crtc->unpin_work = work;
389 radeon_crtc->deferred_flip_completion = 0;
390 spin_unlock_irqrestore(&dev->event_lock, flags);
391
392 /* pin the new buffer */
393 obj = new_radeon_fb->obj;
394 rbo = obj->driver_private;
395
396 DRM_DEBUG_DRIVER("flip-ioctl() cur_fbo = %p, cur_bbo = %p\n",
397 work->old_rbo, rbo);
398
399 r = radeon_bo_reserve(rbo, false);
400 if (unlikely(r != 0)) {
401 DRM_ERROR("failed to reserve new rbo buffer before flip\n");
402 goto pflip_cleanup;
403 }
404 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &base);
405 if (unlikely(r != 0)) {
406 radeon_bo_unreserve(rbo);
407 r = -EINVAL;
408 DRM_ERROR("failed to pin new rbo buffer before flip\n");
409 goto pflip_cleanup;
410 }
411 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
412 radeon_bo_unreserve(rbo);
413
414 if (!ASIC_IS_AVIVO(rdev)) {
415 /* crtc offset is from display base addr not FB location */
416 base -= radeon_crtc->legacy_display_base_addr;
417 pitch_pixels = fb->pitch / (fb->bits_per_pixel / 8);
418
419 if (tiling_flags & RADEON_TILING_MACRO) {
420 if (ASIC_IS_R300(rdev)) {
421 base &= ~0x7ff;
422 } else {
423 int byteshift = fb->bits_per_pixel >> 4;
424 int tile_addr = (((crtc->y >> 3) * pitch_pixels + crtc->x) >> (8 - byteshift)) << 11;
425 base += tile_addr + ((crtc->x << byteshift) % 256) + ((crtc->y % 8) << 8);
426 }
427 } else {
428 int offset = crtc->y * pitch_pixels + crtc->x;
429 switch (fb->bits_per_pixel) {
430 case 8:
431 default:
432 offset *= 1;
433 break;
434 case 15:
435 case 16:
436 offset *= 2;
437 break;
438 case 24:
439 offset *= 3;
440 break;
441 case 32:
442 offset *= 4;
443 break;
444 }
445 base += offset;
446 }
447 base &= ~7;
448 }
449
450 spin_lock_irqsave(&dev->event_lock, flags);
451 work->new_crtc_base = base;
452 spin_unlock_irqrestore(&dev->event_lock, flags);
453
454 /* update crtc fb */
455 crtc->fb = fb;
456
457 r = drm_vblank_get(dev, radeon_crtc->crtc_id);
458 if (r) {
459 DRM_ERROR("failed to get vblank before flip\n");
460 goto pflip_cleanup1;
461 }
462
463 /* 32 ought to cover us */
464 r = radeon_ring_lock(rdev, 32);
465 if (r) {
466 DRM_ERROR("failed to lock the ring before flip\n");
467 goto pflip_cleanup2;
468 }
469
470 /* emit the fence */
471 radeon_fence_emit(rdev, fence);
472 /* set the proper interrupt */
473 radeon_pre_page_flip(rdev, radeon_crtc->crtc_id);
474 /* fire the ring */
475 radeon_ring_unlock_commit(rdev);
476
477 return 0;
478
479pflip_cleanup2:
480 drm_vblank_put(dev, radeon_crtc->crtc_id);
481
482pflip_cleanup1:
483 r = radeon_bo_reserve(rbo, false);
484 if (unlikely(r != 0)) {
485 DRM_ERROR("failed to reserve new rbo in error path\n");
486 goto pflip_cleanup;
487 }
488 r = radeon_bo_unpin(rbo);
489 if (unlikely(r != 0)) {
490 radeon_bo_unreserve(rbo);
491 r = -EINVAL;
492 DRM_ERROR("failed to unpin new rbo in error path\n");
493 goto pflip_cleanup;
494 }
495 radeon_bo_unreserve(rbo);
496
497pflip_cleanup:
498 spin_lock_irqsave(&dev->event_lock, flags);
499 radeon_crtc->unpin_work = NULL;
500 spin_unlock_irqrestore(&dev->event_lock, flags);
501 radeon_fence_unref(&fence);
502 kfree(work);
503
504 return r;
505}
506
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200507static const struct drm_crtc_funcs radeon_crtc_funcs = {
508 .cursor_set = radeon_crtc_cursor_set,
509 .cursor_move = radeon_crtc_cursor_move,
510 .gamma_set = radeon_crtc_gamma_set,
511 .set_config = drm_crtc_helper_set_config,
512 .destroy = radeon_crtc_destroy,
Alex Deucher6f34be52010-11-21 10:59:01 -0500513 .page_flip = radeon_crtc_page_flip,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200514};
515
516static void radeon_crtc_init(struct drm_device *dev, int index)
517{
518 struct radeon_device *rdev = dev->dev_private;
519 struct radeon_crtc *radeon_crtc;
520 int i;
521
522 radeon_crtc = kzalloc(sizeof(struct radeon_crtc) + (RADEONFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
523 if (radeon_crtc == NULL)
524 return;
525
526 drm_crtc_init(dev, &radeon_crtc->base, &radeon_crtc_funcs);
527
528 drm_mode_crtc_set_gamma_size(&radeon_crtc->base, 256);
529 radeon_crtc->crtc_id = index;
Jerome Glissec93bb852009-07-13 21:04:08 +0200530 rdev->mode_info.crtcs[index] = radeon_crtc;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200531
Dave Airlie785b93e2009-08-28 15:46:53 +1000532#if 0
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200533 radeon_crtc->mode_set.crtc = &radeon_crtc->base;
534 radeon_crtc->mode_set.connectors = (struct drm_connector **)(radeon_crtc + 1);
535 radeon_crtc->mode_set.num_connectors = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000536#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200537
538 for (i = 0; i < 256; i++) {
539 radeon_crtc->lut_r[i] = i << 2;
540 radeon_crtc->lut_g[i] = i << 2;
541 radeon_crtc->lut_b[i] = i << 2;
542 }
543
544 if (rdev->is_atom_bios && (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom))
545 radeon_atombios_init_crtc(dev, radeon_crtc);
546 else
547 radeon_legacy_init_crtc(dev, radeon_crtc);
548}
549
Alex Deucherbf982eb2010-11-22 17:56:24 -0500550static const char *encoder_names[36] = {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200551 "NONE",
552 "INTERNAL_LVDS",
553 "INTERNAL_TMDS1",
554 "INTERNAL_TMDS2",
555 "INTERNAL_DAC1",
556 "INTERNAL_DAC2",
557 "INTERNAL_SDVOA",
558 "INTERNAL_SDVOB",
559 "SI170B",
560 "CH7303",
561 "CH7301",
562 "INTERNAL_DVO1",
563 "EXTERNAL_SDVOA",
564 "EXTERNAL_SDVOB",
565 "TITFP513",
566 "INTERNAL_LVTM1",
567 "VT1623",
568 "HDMI_SI1930",
569 "HDMI_INTERNAL",
570 "INTERNAL_KLDSCP_TMDS1",
571 "INTERNAL_KLDSCP_DVO1",
572 "INTERNAL_KLDSCP_DAC1",
573 "INTERNAL_KLDSCP_DAC2",
574 "SI178",
575 "MVPU_FPGA",
576 "INTERNAL_DDI",
577 "VT1625",
578 "HDMI_SI1932",
579 "DP_AN9801",
580 "DP_DP501",
581 "INTERNAL_UNIPHY",
582 "INTERNAL_KLDSCP_LVTMA",
583 "INTERNAL_UNIPHY1",
584 "INTERNAL_UNIPHY2",
Alex Deucherbf982eb2010-11-22 17:56:24 -0500585 "NUTMEG",
586 "TRAVIS",
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200587};
588
Alex Deucher196c58d2010-01-07 14:22:32 -0500589static const char *connector_names[15] = {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200590 "Unknown",
591 "VGA",
592 "DVI-I",
593 "DVI-D",
594 "DVI-A",
595 "Composite",
596 "S-video",
597 "LVDS",
598 "Component",
599 "DIN",
600 "DisplayPort",
601 "HDMI-A",
602 "HDMI-B",
Alex Deucher196c58d2010-01-07 14:22:32 -0500603 "TV",
604 "eDP",
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200605};
606
Alex Deuchercbd46232010-06-07 02:24:54 -0400607static const char *hpd_names[6] = {
Alex Deuchereed45b32009-12-04 14:45:27 -0500608 "HPD1",
609 "HPD2",
610 "HPD3",
611 "HPD4",
612 "HPD5",
613 "HPD6",
614};
615
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200616static void radeon_print_display_setup(struct drm_device *dev)
617{
618 struct drm_connector *connector;
619 struct radeon_connector *radeon_connector;
620 struct drm_encoder *encoder;
621 struct radeon_encoder *radeon_encoder;
622 uint32_t devices;
623 int i = 0;
624
625 DRM_INFO("Radeon Display Connectors\n");
626 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
627 radeon_connector = to_radeon_connector(connector);
628 DRM_INFO("Connector %d:\n", i);
629 DRM_INFO(" %s\n", connector_names[connector->connector_type]);
Alex Deuchereed45b32009-12-04 14:45:27 -0500630 if (radeon_connector->hpd.hpd != RADEON_HPD_NONE)
631 DRM_INFO(" %s\n", hpd_names[radeon_connector->hpd.hpd]);
Dave Airlie4b9d2a22010-02-08 13:16:55 +1000632 if (radeon_connector->ddc_bus) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200633 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
634 radeon_connector->ddc_bus->rec.mask_clk_reg,
635 radeon_connector->ddc_bus->rec.mask_data_reg,
636 radeon_connector->ddc_bus->rec.a_clk_reg,
637 radeon_connector->ddc_bus->rec.a_data_reg,
Alex Deucher9b9fe722009-11-10 15:59:44 -0500638 radeon_connector->ddc_bus->rec.en_clk_reg,
639 radeon_connector->ddc_bus->rec.en_data_reg,
640 radeon_connector->ddc_bus->rec.y_clk_reg,
641 radeon_connector->ddc_bus->rec.y_data_reg);
Alex Deucherfb939df2010-11-08 16:08:29 +0000642 if (radeon_connector->router.ddc_valid)
Alex Deucher26b5bc92010-08-05 21:21:18 -0400643 DRM_INFO(" DDC Router 0x%x/0x%x\n",
Alex Deucherfb939df2010-11-08 16:08:29 +0000644 radeon_connector->router.ddc_mux_control_pin,
645 radeon_connector->router.ddc_mux_state);
646 if (radeon_connector->router.cd_valid)
647 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n",
648 radeon_connector->router.cd_mux_control_pin,
649 radeon_connector->router.cd_mux_state);
Dave Airlie4b9d2a22010-02-08 13:16:55 +1000650 } else {
651 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA ||
652 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
653 connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
654 connector->connector_type == DRM_MODE_CONNECTOR_DVIA ||
655 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
656 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
657 DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n");
658 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200659 DRM_INFO(" Encoders:\n");
660 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
661 radeon_encoder = to_radeon_encoder(encoder);
662 devices = radeon_encoder->devices & radeon_connector->devices;
663 if (devices) {
664 if (devices & ATOM_DEVICE_CRT1_SUPPORT)
665 DRM_INFO(" CRT1: %s\n", encoder_names[radeon_encoder->encoder_id]);
666 if (devices & ATOM_DEVICE_CRT2_SUPPORT)
667 DRM_INFO(" CRT2: %s\n", encoder_names[radeon_encoder->encoder_id]);
668 if (devices & ATOM_DEVICE_LCD1_SUPPORT)
669 DRM_INFO(" LCD1: %s\n", encoder_names[radeon_encoder->encoder_id]);
670 if (devices & ATOM_DEVICE_DFP1_SUPPORT)
671 DRM_INFO(" DFP1: %s\n", encoder_names[radeon_encoder->encoder_id]);
672 if (devices & ATOM_DEVICE_DFP2_SUPPORT)
673 DRM_INFO(" DFP2: %s\n", encoder_names[radeon_encoder->encoder_id]);
674 if (devices & ATOM_DEVICE_DFP3_SUPPORT)
675 DRM_INFO(" DFP3: %s\n", encoder_names[radeon_encoder->encoder_id]);
676 if (devices & ATOM_DEVICE_DFP4_SUPPORT)
677 DRM_INFO(" DFP4: %s\n", encoder_names[radeon_encoder->encoder_id]);
678 if (devices & ATOM_DEVICE_DFP5_SUPPORT)
679 DRM_INFO(" DFP5: %s\n", encoder_names[radeon_encoder->encoder_id]);
Alex Deucher73758a52010-09-24 14:59:32 -0400680 if (devices & ATOM_DEVICE_DFP6_SUPPORT)
681 DRM_INFO(" DFP6: %s\n", encoder_names[radeon_encoder->encoder_id]);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200682 if (devices & ATOM_DEVICE_TV1_SUPPORT)
683 DRM_INFO(" TV1: %s\n", encoder_names[radeon_encoder->encoder_id]);
684 if (devices & ATOM_DEVICE_CV_SUPPORT)
685 DRM_INFO(" CV: %s\n", encoder_names[radeon_encoder->encoder_id]);
686 }
687 }
688 i++;
689 }
690}
691
Dave Airlie4ce001a2009-08-13 16:32:14 +1000692static bool radeon_setup_enc_conn(struct drm_device *dev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200693{
694 struct radeon_device *rdev = dev->dev_private;
695 struct drm_connector *drm_connector;
696 bool ret = false;
697
698 if (rdev->bios) {
699 if (rdev->is_atom_bios) {
Alex Deuchera084e6e2010-03-18 01:04:01 -0400700 ret = radeon_get_atom_connector_info_from_supported_devices_table(dev);
701 if (ret == false)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200702 ret = radeon_get_atom_connector_info_from_object_table(dev);
Alex Deucherb9597a12010-01-04 19:12:02 -0500703 } else {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200704 ret = radeon_get_legacy_connector_info_from_bios(dev);
Alex Deucherb9597a12010-01-04 19:12:02 -0500705 if (ret == false)
706 ret = radeon_get_legacy_connector_info_from_table(dev);
707 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200708 } else {
709 if (!ASIC_IS_AVIVO(rdev))
710 ret = radeon_get_legacy_connector_info_from_table(dev);
711 }
712 if (ret) {
Dave Airlie1f3b6a42009-10-13 14:10:37 +1000713 radeon_setup_encoder_clones(dev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200714 radeon_print_display_setup(dev);
715 list_for_each_entry(drm_connector, &dev->mode_config.connector_list, head)
716 radeon_ddc_dump(drm_connector);
717 }
718
719 return ret;
720}
721
722int radeon_ddc_get_modes(struct radeon_connector *radeon_connector)
723{
Alex Deucher3c537882010-02-05 04:21:19 -0500724 struct drm_device *dev = radeon_connector->base.dev;
725 struct radeon_device *rdev = dev->dev_private;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200726 int ret = 0;
727
Alex Deucher26b5bc92010-08-05 21:21:18 -0400728 /* on hw with routers, select right port */
Alex Deucherfb939df2010-11-08 16:08:29 +0000729 if (radeon_connector->router.ddc_valid)
730 radeon_router_select_ddc_port(radeon_connector);
Alex Deucher26b5bc92010-08-05 21:21:18 -0400731
Alex Deucher196c58d2010-01-07 14:22:32 -0500732 if ((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort) ||
733 (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)) {
Dave Airlie746c1aa2009-12-08 07:07:28 +1000734 struct radeon_connector_atom_dig *dig = radeon_connector->con_priv;
Dave Airlie7a15cbd42010-01-14 11:42:17 +1000735 if ((dig->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT ||
736 dig->dp_sink_type == CONNECTOR_OBJECT_ID_eDP) && dig->dp_i2c_bus)
Alex Deucher9fa05c92009-11-27 13:01:46 -0500737 radeon_connector->edid = drm_get_edid(&radeon_connector->base, &dig->dp_i2c_bus->adapter);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000738 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200739 if (!radeon_connector->ddc_bus)
740 return -1;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000741 if (!radeon_connector->edid) {
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400742 radeon_connector->edid = drm_get_edid(&radeon_connector->base, &radeon_connector->ddc_bus->adapter);
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400743 }
Alex Deucherc324acd2010-12-08 22:13:06 -0500744
745 if (!radeon_connector->edid) {
746 if (rdev->is_atom_bios) {
747 /* some laptops provide a hardcoded edid in rom for LCDs */
748 if (((radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_LVDS) ||
749 (radeon_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)))
750 radeon_connector->edid = radeon_bios_get_hardcoded_edid(rdev);
751 } else
752 /* some servers provide a hardcoded edid in rom for KVMs */
753 radeon_connector->edid = radeon_bios_get_hardcoded_edid(rdev);
754 }
Alex Deucher0294cf4f2009-10-15 16:16:35 -0400755 if (radeon_connector->edid) {
756 drm_mode_connector_update_edid_property(&radeon_connector->base, radeon_connector->edid);
757 ret = drm_add_edid_modes(&radeon_connector->base, radeon_connector->edid);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200758 return ret;
759 }
760 drm_mode_connector_update_edid_property(&radeon_connector->base, NULL);
Dave Airlie42dea5d2009-09-15 20:21:11 +1000761 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200762}
763
764static int radeon_ddc_dump(struct drm_connector *connector)
765{
766 struct edid *edid;
767 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
768 int ret = 0;
769
Alex Deucher26b5bc92010-08-05 21:21:18 -0400770 /* on hw with routers, select right port */
Alex Deucherfb939df2010-11-08 16:08:29 +0000771 if (radeon_connector->router.ddc_valid)
772 radeon_router_select_ddc_port(radeon_connector);
Alex Deucher26b5bc92010-08-05 21:21:18 -0400773
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200774 if (!radeon_connector->ddc_bus)
775 return -1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200776 edid = drm_get_edid(connector, &radeon_connector->ddc_bus->adapter);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200777 if (edid) {
778 kfree(edid);
779 }
780 return ret;
781}
782
Alex Deucherf523f742011-01-31 16:48:52 -0500783/* avivo */
784static void avivo_get_fb_div(struct radeon_pll *pll,
785 u32 target_clock,
786 u32 post_div,
787 u32 ref_div,
788 u32 *fb_div,
789 u32 *frac_fb_div)
790{
791 u32 tmp = post_div * ref_div;
792
793 tmp *= target_clock;
794 *fb_div = tmp / pll->reference_freq;
795 *frac_fb_div = tmp % pll->reference_freq;
796}
797
798static u32 avivo_get_post_div(struct radeon_pll *pll,
799 u32 target_clock)
800{
801 u32 vco, post_div, tmp;
802
803 if (pll->flags & RADEON_PLL_USE_POST_DIV)
804 return pll->post_div;
805
806 if (pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP) {
807 if (pll->flags & RADEON_PLL_IS_LCD)
808 vco = pll->lcd_pll_out_min;
809 else
810 vco = pll->pll_out_min;
811 } else {
812 if (pll->flags & RADEON_PLL_IS_LCD)
813 vco = pll->lcd_pll_out_max;
814 else
815 vco = pll->pll_out_max;
816 }
817
818 post_div = vco / target_clock;
819 tmp = vco % target_clock;
820
821 if (pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP) {
822 if (tmp)
823 post_div++;
824 } else {
825 if (!tmp)
826 post_div--;
827 }
828
829 return post_div;
830}
831
832#define MAX_TOLERANCE 10
833
834void radeon_compute_pll_avivo(struct radeon_pll *pll,
835 u32 freq,
836 u32 *dot_clock_p,
837 u32 *fb_div_p,
838 u32 *frac_fb_div_p,
839 u32 *ref_div_p,
840 u32 *post_div_p)
841{
842 u32 target_clock = freq / 10;
843 u32 post_div = avivo_get_post_div(pll, target_clock);
844 u32 ref_div = pll->min_ref_div;
845 u32 fb_div = 0, frac_fb_div = 0, tmp;
846
847 if (pll->flags & RADEON_PLL_USE_REF_DIV)
848 ref_div = pll->reference_div;
849
850 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) {
851 avivo_get_fb_div(pll, target_clock, post_div, ref_div, &fb_div, &frac_fb_div);
852 frac_fb_div = (100 * frac_fb_div) / pll->reference_freq;
853 if (frac_fb_div >= 5) {
854 frac_fb_div -= 5;
855 frac_fb_div = frac_fb_div / 10;
856 frac_fb_div++;
857 }
858 if (frac_fb_div >= 10) {
859 fb_div++;
860 frac_fb_div = 0;
861 }
862 } else {
863 while (ref_div <= pll->max_ref_div) {
864 avivo_get_fb_div(pll, target_clock, post_div, ref_div,
865 &fb_div, &frac_fb_div);
866 if (frac_fb_div >= (pll->reference_freq / 2))
867 fb_div++;
868 frac_fb_div = 0;
869 tmp = (pll->reference_freq * fb_div) / (post_div * ref_div);
870 tmp = (tmp * 10000) / target_clock;
871
872 if (tmp > (10000 + MAX_TOLERANCE))
873 ref_div++;
874 else if (tmp >= (10000 - MAX_TOLERANCE))
875 break;
876 else
877 ref_div++;
878 }
879 }
880
881 *dot_clock_p = ((pll->reference_freq * fb_div * 10) + (pll->reference_freq * frac_fb_div)) /
882 (ref_div * post_div * 10);
883 *fb_div_p = fb_div;
884 *frac_fb_div_p = frac_fb_div;
885 *ref_div_p = ref_div;
886 *post_div_p = post_div;
887 DRM_DEBUG_KMS("%d, pll dividers - fb: %d.%d ref: %d, post %d\n",
888 *dot_clock_p, fb_div, frac_fb_div, ref_div, post_div);
889}
890
891/* pre-avivo */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200892static inline uint32_t radeon_div(uint64_t n, uint32_t d)
893{
894 uint64_t mod;
895
896 n += d / 2;
897
898 mod = do_div(n, d);
899 return n;
900}
901
Alex Deucherf523f742011-01-31 16:48:52 -0500902void radeon_compute_pll_legacy(struct radeon_pll *pll,
903 uint64_t freq,
904 uint32_t *dot_clock_p,
905 uint32_t *fb_div_p,
906 uint32_t *frac_fb_div_p,
907 uint32_t *ref_div_p,
908 uint32_t *post_div_p)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200909{
910 uint32_t min_ref_div = pll->min_ref_div;
911 uint32_t max_ref_div = pll->max_ref_div;
Alex Deucherfc103322010-01-19 17:16:10 -0500912 uint32_t min_post_div = pll->min_post_div;
913 uint32_t max_post_div = pll->max_post_div;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200914 uint32_t min_fractional_feed_div = 0;
915 uint32_t max_fractional_feed_div = 0;
916 uint32_t best_vco = pll->best_vco;
917 uint32_t best_post_div = 1;
918 uint32_t best_ref_div = 1;
919 uint32_t best_feedback_div = 1;
920 uint32_t best_frac_feedback_div = 0;
921 uint32_t best_freq = -1;
922 uint32_t best_error = 0xffffffff;
923 uint32_t best_vco_diff = 1;
924 uint32_t post_div;
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500925 u32 pll_out_min, pll_out_max;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200926
Dave Airlied9fdaaf2010-08-02 10:42:55 +1000927 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 +0200928 freq = freq * 1000;
929
Alex Deucher86cb2bb2010-03-08 12:55:16 -0500930 if (pll->flags & RADEON_PLL_IS_LCD) {
931 pll_out_min = pll->lcd_pll_out_min;
932 pll_out_max = pll->lcd_pll_out_max;
933 } else {
934 pll_out_min = pll->pll_out_min;
935 pll_out_max = pll->pll_out_max;
936 }
937
Alex Deucher619efb12011-01-31 16:48:53 -0500938 if (pll_out_min > 64800)
939 pll_out_min = 64800;
940
Alex Deucherfc103322010-01-19 17:16:10 -0500941 if (pll->flags & RADEON_PLL_USE_REF_DIV)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200942 min_ref_div = max_ref_div = pll->reference_div;
943 else {
944 while (min_ref_div < max_ref_div-1) {
945 uint32_t mid = (min_ref_div + max_ref_div) / 2;
946 uint32_t pll_in = pll->reference_freq / mid;
947 if (pll_in < pll->pll_in_min)
948 max_ref_div = mid;
949 else if (pll_in > pll->pll_in_max)
950 min_ref_div = mid;
951 else
952 break;
953 }
954 }
955
Alex Deucherfc103322010-01-19 17:16:10 -0500956 if (pll->flags & RADEON_PLL_USE_POST_DIV)
957 min_post_div = max_post_div = pll->post_div;
958
959 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200960 min_fractional_feed_div = pll->min_frac_feedback_div;
961 max_fractional_feed_div = pll->max_frac_feedback_div;
962 }
963
Alex Deuchera6f97612011-01-31 16:48:50 -0500964 for (post_div = min_post_div; post_div <= max_post_div; ++post_div) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200965 uint32_t ref_div;
966
Alex Deucherfc103322010-01-19 17:16:10 -0500967 if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1))
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200968 continue;
969
970 /* legacy radeons only have a few post_divs */
Alex Deucherfc103322010-01-19 17:16:10 -0500971 if (pll->flags & RADEON_PLL_LEGACY) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200972 if ((post_div == 5) ||
973 (post_div == 7) ||
974 (post_div == 9) ||
975 (post_div == 10) ||
976 (post_div == 11) ||
977 (post_div == 13) ||
978 (post_div == 14) ||
979 (post_div == 15))
980 continue;
981 }
982
983 for (ref_div = min_ref_div; ref_div <= max_ref_div; ++ref_div) {
984 uint32_t feedback_div, current_freq = 0, error, vco_diff;
985 uint32_t pll_in = pll->reference_freq / ref_div;
986 uint32_t min_feed_div = pll->min_feedback_div;
987 uint32_t max_feed_div = pll->max_feedback_div + 1;
988
989 if (pll_in < pll->pll_in_min || pll_in > pll->pll_in_max)
990 continue;
991
992 while (min_feed_div < max_feed_div) {
993 uint32_t vco;
994 uint32_t min_frac_feed_div = min_fractional_feed_div;
995 uint32_t max_frac_feed_div = max_fractional_feed_div + 1;
996 uint32_t frac_feedback_div;
997 uint64_t tmp;
998
999 feedback_div = (min_feed_div + max_feed_div) / 2;
1000
1001 tmp = (uint64_t)pll->reference_freq * feedback_div;
1002 vco = radeon_div(tmp, ref_div);
1003
Alex Deucher86cb2bb2010-03-08 12:55:16 -05001004 if (vco < pll_out_min) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001005 min_feed_div = feedback_div + 1;
1006 continue;
Alex Deucher86cb2bb2010-03-08 12:55:16 -05001007 } else if (vco > pll_out_max) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001008 max_feed_div = feedback_div;
1009 continue;
1010 }
1011
1012 while (min_frac_feed_div < max_frac_feed_div) {
1013 frac_feedback_div = (min_frac_feed_div + max_frac_feed_div) / 2;
1014 tmp = (uint64_t)pll->reference_freq * 10000 * feedback_div;
1015 tmp += (uint64_t)pll->reference_freq * 1000 * frac_feedback_div;
1016 current_freq = radeon_div(tmp, ref_div * post_div);
1017
Alex Deucherfc103322010-01-19 17:16:10 -05001018 if (pll->flags & RADEON_PLL_PREFER_CLOSEST_LOWER) {
Dan Carpenter167ffc42010-07-17 12:28:02 +02001019 if (freq < current_freq)
1020 error = 0xffffffff;
1021 else
1022 error = freq - current_freq;
Alex Deucherd0e275a2009-07-13 11:08:18 -04001023 } else
1024 error = abs(current_freq - freq);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001025 vco_diff = abs(vco - best_vco);
1026
1027 if ((best_vco == 0 && error < best_error) ||
1028 (best_vco != 0 &&
Dan Carpenter167ffc42010-07-17 12:28:02 +02001029 ((best_error > 100 && error < best_error - 100) ||
Dave Airlie5480f722010-10-19 10:36:47 +10001030 (abs(error - best_error) < 100 && vco_diff < best_vco_diff)))) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001031 best_post_div = post_div;
1032 best_ref_div = ref_div;
1033 best_feedback_div = feedback_div;
1034 best_frac_feedback_div = frac_feedback_div;
1035 best_freq = current_freq;
1036 best_error = error;
1037 best_vco_diff = vco_diff;
Dave Airlie5480f722010-10-19 10:36:47 +10001038 } else if (current_freq == freq) {
1039 if (best_freq == -1) {
1040 best_post_div = post_div;
1041 best_ref_div = ref_div;
1042 best_feedback_div = feedback_div;
1043 best_frac_feedback_div = frac_feedback_div;
1044 best_freq = current_freq;
1045 best_error = error;
1046 best_vco_diff = vco_diff;
1047 } else if (((pll->flags & RADEON_PLL_PREFER_LOW_REF_DIV) && (ref_div < best_ref_div)) ||
1048 ((pll->flags & RADEON_PLL_PREFER_HIGH_REF_DIV) && (ref_div > best_ref_div)) ||
1049 ((pll->flags & RADEON_PLL_PREFER_LOW_FB_DIV) && (feedback_div < best_feedback_div)) ||
1050 ((pll->flags & RADEON_PLL_PREFER_HIGH_FB_DIV) && (feedback_div > best_feedback_div)) ||
1051 ((pll->flags & RADEON_PLL_PREFER_LOW_POST_DIV) && (post_div < best_post_div)) ||
1052 ((pll->flags & RADEON_PLL_PREFER_HIGH_POST_DIV) && (post_div > best_post_div))) {
1053 best_post_div = post_div;
1054 best_ref_div = ref_div;
1055 best_feedback_div = feedback_div;
1056 best_frac_feedback_div = frac_feedback_div;
1057 best_freq = current_freq;
1058 best_error = error;
1059 best_vco_diff = vco_diff;
1060 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001061 }
1062 if (current_freq < freq)
1063 min_frac_feed_div = frac_feedback_div + 1;
1064 else
1065 max_frac_feed_div = frac_feedback_div;
1066 }
1067 if (current_freq < freq)
1068 min_feed_div = feedback_div + 1;
1069 else
1070 max_feed_div = feedback_div;
1071 }
1072 }
1073 }
1074
1075 *dot_clock_p = best_freq / 10000;
1076 *fb_div_p = best_feedback_div;
1077 *frac_fb_div_p = best_frac_feedback_div;
1078 *ref_div_p = best_ref_div;
1079 *post_div_p = best_post_div;
Alex Deucher51d4bf82011-01-31 16:48:51 -05001080 DRM_DEBUG_KMS("%d %d, pll dividers - fb: %d.%d ref: %d, post %d\n",
1081 freq, best_freq / 1000, best_feedback_div, best_frac_feedback_div,
1082 best_ref_div, best_post_div);
1083
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001084}
1085
1086static void radeon_user_framebuffer_destroy(struct drm_framebuffer *fb)
1087{
1088 struct radeon_framebuffer *radeon_fb = to_radeon_framebuffer(fb);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001089
Dave Airlie29d08b32010-09-27 16:17:17 +10001090 if (radeon_fb->obj) {
Luca Barbieribc9025b2010-02-09 05:49:12 +00001091 drm_gem_object_unreference_unlocked(radeon_fb->obj);
Dave Airlie29d08b32010-09-27 16:17:17 +10001092 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001093 drm_framebuffer_cleanup(fb);
1094 kfree(radeon_fb);
1095}
1096
1097static int radeon_user_framebuffer_create_handle(struct drm_framebuffer *fb,
1098 struct drm_file *file_priv,
1099 unsigned int *handle)
1100{
1101 struct radeon_framebuffer *radeon_fb = to_radeon_framebuffer(fb);
1102
1103 return drm_gem_handle_create(file_priv, radeon_fb->obj, handle);
1104}
1105
1106static const struct drm_framebuffer_funcs radeon_fb_funcs = {
1107 .destroy = radeon_user_framebuffer_destroy,
1108 .create_handle = radeon_user_framebuffer_create_handle,
1109};
1110
Dave Airlie38651672010-03-30 05:34:13 +00001111void
1112radeon_framebuffer_init(struct drm_device *dev,
1113 struct radeon_framebuffer *rfb,
1114 struct drm_mode_fb_cmd *mode_cmd,
1115 struct drm_gem_object *obj)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001116{
Dave Airlie38651672010-03-30 05:34:13 +00001117 rfb->obj = obj;
1118 drm_framebuffer_init(dev, &rfb->base, &radeon_fb_funcs);
1119 drm_helper_mode_fill_fb_struct(&rfb->base, mode_cmd);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001120}
1121
1122static struct drm_framebuffer *
1123radeon_user_framebuffer_create(struct drm_device *dev,
1124 struct drm_file *file_priv,
1125 struct drm_mode_fb_cmd *mode_cmd)
1126{
1127 struct drm_gem_object *obj;
Dave Airlie38651672010-03-30 05:34:13 +00001128 struct radeon_framebuffer *radeon_fb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001129
1130 obj = drm_gem_object_lookup(dev, file_priv, mode_cmd->handle);
Jerome Glisse7e71c9e2010-01-17 21:21:41 +01001131 if (obj == NULL) {
1132 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, "
1133 "can't create framebuffer\n", mode_cmd->handle);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001134 return ERR_PTR(-ENOENT);
Jerome Glisse7e71c9e2010-01-17 21:21:41 +01001135 }
Dave Airlie38651672010-03-30 05:34:13 +00001136
1137 radeon_fb = kzalloc(sizeof(*radeon_fb), GFP_KERNEL);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01001138 if (radeon_fb == NULL)
1139 return ERR_PTR(-ENOMEM);
Dave Airlie38651672010-03-30 05:34:13 +00001140
1141 radeon_framebuffer_init(dev, radeon_fb, mode_cmd, obj);
1142
1143 return &radeon_fb->base;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001144}
1145
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001146static void radeon_output_poll_changed(struct drm_device *dev)
1147{
1148 struct radeon_device *rdev = dev->dev_private;
1149 radeon_fb_output_poll_changed(rdev);
1150}
1151
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001152static const struct drm_mode_config_funcs radeon_mode_funcs = {
1153 .fb_create = radeon_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001154 .output_poll_changed = radeon_output_poll_changed
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001155};
1156
Dave Airlie445282d2009-09-09 17:40:54 +10001157struct drm_prop_enum_list {
1158 int type;
1159 char *name;
1160};
1161
1162static struct drm_prop_enum_list radeon_tmds_pll_enum_list[] =
1163{ { 0, "driver" },
1164 { 1, "bios" },
1165};
1166
1167static struct drm_prop_enum_list radeon_tv_std_enum_list[] =
1168{ { TV_STD_NTSC, "ntsc" },
1169 { TV_STD_PAL, "pal" },
1170 { TV_STD_PAL_M, "pal-m" },
1171 { TV_STD_PAL_60, "pal-60" },
1172 { TV_STD_NTSC_J, "ntsc-j" },
1173 { TV_STD_SCART_PAL, "scart-pal" },
1174 { TV_STD_PAL_CN, "pal-cn" },
1175 { TV_STD_SECAM, "secam" },
1176};
1177
Alex Deucher5b1714d2010-08-03 19:59:20 -04001178static struct drm_prop_enum_list radeon_underscan_enum_list[] =
1179{ { UNDERSCAN_OFF, "off" },
1180 { UNDERSCAN_ON, "on" },
1181 { UNDERSCAN_AUTO, "auto" },
1182};
1183
Alex Deucherd79766f2009-12-17 19:00:29 -05001184static int radeon_modeset_create_props(struct radeon_device *rdev)
Dave Airlie445282d2009-09-09 17:40:54 +10001185{
1186 int i, sz;
1187
1188 if (rdev->is_atom_bios) {
1189 rdev->mode_info.coherent_mode_property =
1190 drm_property_create(rdev->ddev,
1191 DRM_MODE_PROP_RANGE,
1192 "coherent", 2);
1193 if (!rdev->mode_info.coherent_mode_property)
1194 return -ENOMEM;
1195
1196 rdev->mode_info.coherent_mode_property->values[0] = 0;
Alex Deucher390d0bb2009-12-08 12:48:20 -05001197 rdev->mode_info.coherent_mode_property->values[1] = 1;
Dave Airlie445282d2009-09-09 17:40:54 +10001198 }
1199
1200 if (!ASIC_IS_AVIVO(rdev)) {
1201 sz = ARRAY_SIZE(radeon_tmds_pll_enum_list);
1202 rdev->mode_info.tmds_pll_property =
1203 drm_property_create(rdev->ddev,
1204 DRM_MODE_PROP_ENUM,
1205 "tmds_pll", sz);
1206 for (i = 0; i < sz; i++) {
1207 drm_property_add_enum(rdev->mode_info.tmds_pll_property,
1208 i,
1209 radeon_tmds_pll_enum_list[i].type,
1210 radeon_tmds_pll_enum_list[i].name);
1211 }
1212 }
1213
1214 rdev->mode_info.load_detect_property =
1215 drm_property_create(rdev->ddev,
1216 DRM_MODE_PROP_RANGE,
1217 "load detection", 2);
1218 if (!rdev->mode_info.load_detect_property)
1219 return -ENOMEM;
1220 rdev->mode_info.load_detect_property->values[0] = 0;
Alex Deucher390d0bb2009-12-08 12:48:20 -05001221 rdev->mode_info.load_detect_property->values[1] = 1;
Dave Airlie445282d2009-09-09 17:40:54 +10001222
1223 drm_mode_create_scaling_mode_property(rdev->ddev);
1224
1225 sz = ARRAY_SIZE(radeon_tv_std_enum_list);
1226 rdev->mode_info.tv_std_property =
1227 drm_property_create(rdev->ddev,
1228 DRM_MODE_PROP_ENUM,
1229 "tv standard", sz);
1230 for (i = 0; i < sz; i++) {
1231 drm_property_add_enum(rdev->mode_info.tv_std_property,
1232 i,
1233 radeon_tv_std_enum_list[i].type,
1234 radeon_tv_std_enum_list[i].name);
1235 }
1236
Alex Deucher5b1714d2010-08-03 19:59:20 -04001237 sz = ARRAY_SIZE(radeon_underscan_enum_list);
1238 rdev->mode_info.underscan_property =
1239 drm_property_create(rdev->ddev,
1240 DRM_MODE_PROP_ENUM,
1241 "underscan", sz);
1242 for (i = 0; i < sz; i++) {
1243 drm_property_add_enum(rdev->mode_info.underscan_property,
1244 i,
1245 radeon_underscan_enum_list[i].type,
1246 radeon_underscan_enum_list[i].name);
1247 }
1248
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001249 rdev->mode_info.underscan_hborder_property =
1250 drm_property_create(rdev->ddev,
1251 DRM_MODE_PROP_RANGE,
1252 "underscan hborder", 2);
1253 if (!rdev->mode_info.underscan_hborder_property)
1254 return -ENOMEM;
1255 rdev->mode_info.underscan_hborder_property->values[0] = 0;
1256 rdev->mode_info.underscan_hborder_property->values[1] = 128;
1257
1258 rdev->mode_info.underscan_vborder_property =
1259 drm_property_create(rdev->ddev,
1260 DRM_MODE_PROP_RANGE,
1261 "underscan vborder", 2);
1262 if (!rdev->mode_info.underscan_vborder_property)
1263 return -ENOMEM;
1264 rdev->mode_info.underscan_vborder_property->values[0] = 0;
1265 rdev->mode_info.underscan_vborder_property->values[1] = 128;
1266
Dave Airlie445282d2009-09-09 17:40:54 +10001267 return 0;
1268}
1269
Alex Deucherf46c0122010-03-31 00:33:27 -04001270void radeon_update_display_priority(struct radeon_device *rdev)
1271{
1272 /* adjustment options for the display watermarks */
1273 if ((radeon_disp_priority == 0) || (radeon_disp_priority > 2)) {
1274 /* set display priority to high for r3xx, rv515 chips
1275 * this avoids flickering due to underflow to the
1276 * display controllers during heavy acceleration.
Alex Deucher45737442010-05-20 11:26:11 -04001277 * Don't force high on rs4xx igp chips as it seems to
1278 * affect the sound card. See kernel bug 15982.
Alex Deucherf46c0122010-03-31 00:33:27 -04001279 */
Alex Deucher45737442010-05-20 11:26:11 -04001280 if ((ASIC_IS_R300(rdev) || (rdev->family == CHIP_RV515)) &&
1281 !(rdev->flags & RADEON_IS_IGP))
Alex Deucherf46c0122010-03-31 00:33:27 -04001282 rdev->disp_priority = 2;
1283 else
1284 rdev->disp_priority = 0;
1285 } else
1286 rdev->disp_priority = radeon_disp_priority;
1287
1288}
1289
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001290int radeon_modeset_init(struct radeon_device *rdev)
1291{
Alex Deucher18917b62010-02-01 16:02:25 -05001292 int i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001293 int ret;
1294
1295 drm_mode_config_init(rdev->ddev);
1296 rdev->mode_info.mode_config_initialized = true;
1297
1298 rdev->ddev->mode_config.funcs = (void *)&radeon_mode_funcs;
1299
Alex Deucher881dd742011-01-06 21:19:14 -05001300 if (ASIC_IS_DCE5(rdev)) {
1301 rdev->ddev->mode_config.max_width = 16384;
1302 rdev->ddev->mode_config.max_height = 16384;
1303 } else if (ASIC_IS_AVIVO(rdev)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001304 rdev->ddev->mode_config.max_width = 8192;
1305 rdev->ddev->mode_config.max_height = 8192;
1306 } else {
1307 rdev->ddev->mode_config.max_width = 4096;
1308 rdev->ddev->mode_config.max_height = 4096;
1309 }
1310
1311 rdev->ddev->mode_config.fb_base = rdev->mc.aper_base;
1312
Dave Airlie445282d2009-09-09 17:40:54 +10001313 ret = radeon_modeset_create_props(rdev);
1314 if (ret) {
1315 return ret;
1316 }
Dave Airliedfee5612009-10-02 09:19:09 +10001317
Alex Deucherf376b942010-08-05 21:21:16 -04001318 /* init i2c buses */
1319 radeon_i2c_init(rdev);
1320
Alex Deucher3c537882010-02-05 04:21:19 -05001321 /* check combios for a valid hardcoded EDID - Sun servers */
1322 if (!rdev->is_atom_bios) {
1323 /* check for hardcoded EDID in BIOS */
1324 radeon_combios_check_hardcoded_edid(rdev);
1325 }
1326
Dave Airliedfee5612009-10-02 09:19:09 +10001327 /* allocate crtcs */
Alex Deucher18917b62010-02-01 16:02:25 -05001328 for (i = 0; i < rdev->num_crtc; i++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001329 radeon_crtc_init(rdev->ddev, i);
1330 }
1331
1332 /* okay we should have all the bios connectors */
1333 ret = radeon_setup_enc_conn(rdev->ddev);
1334 if (!ret) {
1335 return ret;
1336 }
Alex Deucherd4877cf2009-12-04 16:56:37 -05001337 /* initialize hpd */
1338 radeon_hpd_init(rdev);
Dave Airlie38651672010-03-30 05:34:13 +00001339
Alex Deucherce8f5372010-05-07 15:10:16 -04001340 /* Initialize power management */
1341 radeon_pm_init(rdev);
1342
Dave Airlie38651672010-03-30 05:34:13 +00001343 radeon_fbdev_init(rdev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001344 drm_kms_helper_poll_init(rdev->ddev);
1345
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001346 return 0;
1347}
1348
1349void radeon_modeset_fini(struct radeon_device *rdev)
1350{
Dave Airlie38651672010-03-30 05:34:13 +00001351 radeon_fbdev_fini(rdev);
Alex Deucher3c537882010-02-05 04:21:19 -05001352 kfree(rdev->mode_info.bios_hardcoded_edid);
Alex Deucherce8f5372010-05-07 15:10:16 -04001353 radeon_pm_fini(rdev);
Alex Deucher3c537882010-02-05 04:21:19 -05001354
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001355 if (rdev->mode_info.mode_config_initialized) {
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001356 drm_kms_helper_poll_fini(rdev->ddev);
Alex Deucherd4877cf2009-12-04 16:56:37 -05001357 radeon_hpd_fini(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001358 drm_mode_config_cleanup(rdev->ddev);
1359 rdev->mode_info.mode_config_initialized = false;
1360 }
Alex Deucherf376b942010-08-05 21:21:16 -04001361 /* free i2c buses */
1362 radeon_i2c_fini(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001363}
1364
Alex Deucher039ed2d2010-08-20 11:57:19 -04001365static bool is_hdtv_mode(struct drm_display_mode *mode)
1366{
1367 /* try and guess if this is a tv or a monitor */
1368 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */
1369 (mode->vdisplay == 576) || /* 576p */
1370 (mode->vdisplay == 720) || /* 720p */
1371 (mode->vdisplay == 1080)) /* 1080p */
1372 return true;
1373 else
1374 return false;
1375}
1376
Jerome Glissec93bb852009-07-13 21:04:08 +02001377bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc,
1378 struct drm_display_mode *mode,
1379 struct drm_display_mode *adjusted_mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001380{
Jerome Glissec93bb852009-07-13 21:04:08 +02001381 struct drm_device *dev = crtc->dev;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001382 struct radeon_device *rdev = dev->dev_private;
Jerome Glissec93bb852009-07-13 21:04:08 +02001383 struct drm_encoder *encoder;
1384 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1385 struct radeon_encoder *radeon_encoder;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001386 struct drm_connector *connector;
1387 struct radeon_connector *radeon_connector;
Jerome Glissec93bb852009-07-13 21:04:08 +02001388 bool first = true;
Alex Deucherd65d65b2010-08-03 19:58:49 -04001389 u32 src_v = 1, dst_v = 1;
1390 u32 src_h = 1, dst_h = 1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001391
Alex Deucher5b1714d2010-08-03 19:59:20 -04001392 radeon_crtc->h_border = 0;
1393 radeon_crtc->v_border = 0;
1394
Jerome Glissec93bb852009-07-13 21:04:08 +02001395 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Jerome Glissec93bb852009-07-13 21:04:08 +02001396 if (encoder->crtc != crtc)
1397 continue;
Alex Deucherd65d65b2010-08-03 19:58:49 -04001398 radeon_encoder = to_radeon_encoder(encoder);
Alex Deucher5b1714d2010-08-03 19:59:20 -04001399 connector = radeon_get_connector_for_encoder(encoder);
1400 radeon_connector = to_radeon_connector(connector);
1401
Jerome Glissec93bb852009-07-13 21:04:08 +02001402 if (first) {
Alex Deucher80297e82009-11-12 14:55:14 -05001403 /* set scaling */
1404 if (radeon_encoder->rmx_type == RMX_OFF)
1405 radeon_crtc->rmx_type = RMX_OFF;
1406 else if (mode->hdisplay < radeon_encoder->native_mode.hdisplay ||
1407 mode->vdisplay < radeon_encoder->native_mode.vdisplay)
1408 radeon_crtc->rmx_type = radeon_encoder->rmx_type;
1409 else
1410 radeon_crtc->rmx_type = RMX_OFF;
1411 /* copy native mode */
Jerome Glissec93bb852009-07-13 21:04:08 +02001412 memcpy(&radeon_crtc->native_mode,
Alex Deucher80297e82009-11-12 14:55:14 -05001413 &radeon_encoder->native_mode,
Alex Deucherde2103e2009-10-09 15:14:30 -04001414 sizeof(struct drm_display_mode));
Alex Deucherff32a592010-09-07 13:26:39 -04001415 src_v = crtc->mode.vdisplay;
1416 dst_v = radeon_crtc->native_mode.vdisplay;
1417 src_h = crtc->mode.hdisplay;
1418 dst_h = radeon_crtc->native_mode.hdisplay;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001419
1420 /* fix up for overscan on hdmi */
1421 if (ASIC_IS_AVIVO(rdev) &&
Alex Deuchere6db0da2010-09-10 03:19:05 -04001422 (!(mode->flags & DRM_MODE_FLAG_INTERLACE)) &&
Alex Deucher5b1714d2010-08-03 19:59:20 -04001423 ((radeon_encoder->underscan_type == UNDERSCAN_ON) ||
1424 ((radeon_encoder->underscan_type == UNDERSCAN_AUTO) &&
Alex Deucher039ed2d2010-08-20 11:57:19 -04001425 drm_detect_hdmi_monitor(radeon_connector->edid) &&
1426 is_hdtv_mode(mode)))) {
Marius Gröger5bccf5e2010-09-21 21:30:59 +02001427 if (radeon_encoder->underscan_hborder != 0)
1428 radeon_crtc->h_border = radeon_encoder->underscan_hborder;
1429 else
1430 radeon_crtc->h_border = (mode->hdisplay >> 5) + 16;
1431 if (radeon_encoder->underscan_vborder != 0)
1432 radeon_crtc->v_border = radeon_encoder->underscan_vborder;
1433 else
1434 radeon_crtc->v_border = (mode->vdisplay >> 5) + 16;
Alex Deucher5b1714d2010-08-03 19:59:20 -04001435 radeon_crtc->rmx_type = RMX_FULL;
1436 src_v = crtc->mode.vdisplay;
1437 dst_v = crtc->mode.vdisplay - (radeon_crtc->v_border * 2);
1438 src_h = crtc->mode.hdisplay;
1439 dst_h = crtc->mode.hdisplay - (radeon_crtc->h_border * 2);
1440 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001441 first = false;
1442 } else {
1443 if (radeon_crtc->rmx_type != radeon_encoder->rmx_type) {
1444 /* WARNING: Right now this can't happen but
1445 * in the future we need to check that scaling
Alex Deucherd65d65b2010-08-03 19:58:49 -04001446 * are consistent across different encoder
Jerome Glissec93bb852009-07-13 21:04:08 +02001447 * (ie all encoder can work with the same
1448 * scaling).
1449 */
Alex Deucherd65d65b2010-08-03 19:58:49 -04001450 DRM_ERROR("Scaling not consistent across encoder.\n");
Jerome Glissec93bb852009-07-13 21:04:08 +02001451 return false;
1452 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001453 }
1454 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001455 if (radeon_crtc->rmx_type != RMX_OFF) {
1456 fixed20_12 a, b;
Alex Deucherd65d65b2010-08-03 19:58:49 -04001457 a.full = dfixed_const(src_v);
1458 b.full = dfixed_const(dst_v);
Ben Skeggs68adac52010-04-28 11:46:42 +10001459 radeon_crtc->vsc.full = dfixed_div(a, b);
Alex Deucherd65d65b2010-08-03 19:58:49 -04001460 a.full = dfixed_const(src_h);
1461 b.full = dfixed_const(dst_h);
Ben Skeggs68adac52010-04-28 11:46:42 +10001462 radeon_crtc->hsc.full = dfixed_div(a, b);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001463 } else {
Ben Skeggs68adac52010-04-28 11:46:42 +10001464 radeon_crtc->vsc.full = dfixed_const(1);
1465 radeon_crtc->hsc.full = dfixed_const(1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001466 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001467 return true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001468}
Mario Kleiner6383cf72010-10-05 19:57:36 -04001469
1470/*
1471 * Retrieve current video scanout position of crtc on a given gpu.
1472 *
Mario Kleinerf5a80202010-10-23 04:42:17 +02001473 * \param dev Device to query.
Mario Kleiner6383cf72010-10-05 19:57:36 -04001474 * \param crtc Crtc to query.
1475 * \param *vpos Location where vertical scanout position should be stored.
1476 * \param *hpos Location where horizontal scanout position should go.
1477 *
1478 * Returns vpos as a positive number while in active scanout area.
1479 * Returns vpos as a negative number inside vblank, counting the number
1480 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
1481 * until start of active scanout / end of vblank."
1482 *
1483 * \return Flags, or'ed together as follows:
1484 *
Mario Kleinerf5a80202010-10-23 04:42:17 +02001485 * DRM_SCANOUTPOS_VALID = Query successfull.
1486 * DRM_SCANOUTPOS_INVBL = Inside vblank.
1487 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
Mario Kleiner6383cf72010-10-05 19:57:36 -04001488 * this flag means that returned position may be offset by a constant but
1489 * unknown small number of scanlines wrt. real scanout position.
1490 *
1491 */
Mario Kleinerf5a80202010-10-23 04:42:17 +02001492int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc, int *vpos, int *hpos)
Mario Kleiner6383cf72010-10-05 19:57:36 -04001493{
1494 u32 stat_crtc = 0, vbl = 0, position = 0;
1495 int vbl_start, vbl_end, vtotal, ret = 0;
1496 bool in_vbl = true;
1497
Mario Kleinerf5a80202010-10-23 04:42:17 +02001498 struct radeon_device *rdev = dev->dev_private;
1499
Mario Kleiner6383cf72010-10-05 19:57:36 -04001500 if (ASIC_IS_DCE4(rdev)) {
1501 if (crtc == 0) {
1502 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1503 EVERGREEN_CRTC0_REGISTER_OFFSET);
1504 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1505 EVERGREEN_CRTC0_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001506 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001507 }
1508 if (crtc == 1) {
1509 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1510 EVERGREEN_CRTC1_REGISTER_OFFSET);
1511 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1512 EVERGREEN_CRTC1_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001513 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001514 }
1515 if (crtc == 2) {
1516 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1517 EVERGREEN_CRTC2_REGISTER_OFFSET);
1518 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1519 EVERGREEN_CRTC2_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001520 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001521 }
1522 if (crtc == 3) {
1523 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1524 EVERGREEN_CRTC3_REGISTER_OFFSET);
1525 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1526 EVERGREEN_CRTC3_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001527 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001528 }
1529 if (crtc == 4) {
1530 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1531 EVERGREEN_CRTC4_REGISTER_OFFSET);
1532 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1533 EVERGREEN_CRTC4_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001534 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001535 }
1536 if (crtc == 5) {
1537 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END +
1538 EVERGREEN_CRTC5_REGISTER_OFFSET);
1539 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1540 EVERGREEN_CRTC5_REGISTER_OFFSET);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001541 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001542 }
1543 } else if (ASIC_IS_AVIVO(rdev)) {
1544 if (crtc == 0) {
1545 vbl = RREG32(AVIVO_D1CRTC_V_BLANK_START_END);
1546 position = RREG32(AVIVO_D1CRTC_STATUS_POSITION);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001547 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001548 }
1549 if (crtc == 1) {
1550 vbl = RREG32(AVIVO_D2CRTC_V_BLANK_START_END);
1551 position = RREG32(AVIVO_D2CRTC_STATUS_POSITION);
Mario Kleinerf5a80202010-10-23 04:42:17 +02001552 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001553 }
1554 } else {
1555 /* Pre-AVIVO: Different encoding of scanout pos and vblank interval. */
1556 if (crtc == 0) {
1557 /* Assume vbl_end == 0, get vbl_start from
1558 * upper 16 bits.
1559 */
1560 vbl = (RREG32(RADEON_CRTC_V_TOTAL_DISP) &
1561 RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT;
1562 /* Only retrieve vpos from upper 16 bits, set hpos == 0. */
1563 position = (RREG32(RADEON_CRTC_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL;
1564 stat_crtc = RREG32(RADEON_CRTC_STATUS);
1565 if (!(stat_crtc & 1))
1566 in_vbl = false;
1567
Mario Kleinerf5a80202010-10-23 04:42:17 +02001568 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001569 }
1570 if (crtc == 1) {
1571 vbl = (RREG32(RADEON_CRTC2_V_TOTAL_DISP) &
1572 RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT;
1573 position = (RREG32(RADEON_CRTC2_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL;
1574 stat_crtc = RREG32(RADEON_CRTC2_STATUS);
1575 if (!(stat_crtc & 1))
1576 in_vbl = false;
1577
Mario Kleinerf5a80202010-10-23 04:42:17 +02001578 ret |= DRM_SCANOUTPOS_VALID;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001579 }
1580 }
1581
1582 /* Decode into vertical and horizontal scanout position. */
1583 *vpos = position & 0x1fff;
1584 *hpos = (position >> 16) & 0x1fff;
1585
1586 /* Valid vblank area boundaries from gpu retrieved? */
1587 if (vbl > 0) {
1588 /* Yes: Decode. */
Mario Kleinerf5a80202010-10-23 04:42:17 +02001589 ret |= DRM_SCANOUTPOS_ACCURATE;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001590 vbl_start = vbl & 0x1fff;
1591 vbl_end = (vbl >> 16) & 0x1fff;
1592 }
1593 else {
1594 /* No: Fake something reasonable which gives at least ok results. */
Mario Kleinerf5a80202010-10-23 04:42:17 +02001595 vbl_start = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vdisplay;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001596 vbl_end = 0;
1597 }
1598
1599 /* Test scanout position against vblank region. */
1600 if ((*vpos < vbl_start) && (*vpos >= vbl_end))
1601 in_vbl = false;
1602
1603 /* Check if inside vblank area and apply corrective offsets:
1604 * vpos will then be >=0 in video scanout area, but negative
1605 * within vblank area, counting down the number of lines until
1606 * start of scanout.
1607 */
1608
1609 /* Inside "upper part" of vblank area? Apply corrective offset if so: */
1610 if (in_vbl && (*vpos >= vbl_start)) {
Mario Kleinerf5a80202010-10-23 04:42:17 +02001611 vtotal = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vtotal;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001612 *vpos = *vpos - vtotal;
1613 }
1614
1615 /* Correct for shifted end of vbl at vbl_end. */
1616 *vpos = *vpos - vbl_end;
1617
1618 /* In vblank? */
1619 if (in_vbl)
Mario Kleinerf5a80202010-10-23 04:42:17 +02001620 ret |= DRM_SCANOUTPOS_INVBL;
Mario Kleiner6383cf72010-10-05 19:57:36 -04001621
1622 return ret;
1623}