1 /* 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 27 #include <linux/pci.h> 28 #include <linux/pm_runtime.h> 29 #include <linux/gcd.h> 30 31 #include <asm/div64.h> 32 33 #include <drm/drm_crtc_helper.h> 34 #include <drm/drm_device.h> 35 #include <drm/drm_drv.h> 36 #include <drm/drm_edid.h> 37 #include <drm/drm_fb_helper.h> 38 #include <drm/drm_fourcc.h> 39 #include <drm/drm_gem_framebuffer_helper.h> 40 #include <drm/drm_plane_helper.h> 41 #include <drm/drm_probe_helper.h> 42 #include <drm/drm_vblank.h> 43 #include <drm/radeon_drm.h> 44 45 #include "atom.h" 46 #include "radeon.h" 47 48 static void avivo_crtc_load_lut(struct drm_crtc *crtc) 49 { 50 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 51 struct drm_device *dev = crtc->dev; 52 struct radeon_device *rdev = dev->dev_private; 53 u16 *r, *g, *b; 54 int i; 55 56 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id); 57 WREG32(AVIVO_DC_LUTA_CONTROL + radeon_crtc->crtc_offset, 0); 58 59 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0); 60 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0); 61 WREG32(AVIVO_DC_LUTA_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0); 62 63 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff); 64 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff); 65 WREG32(AVIVO_DC_LUTA_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff); 66 67 WREG32(AVIVO_DC_LUT_RW_SELECT, radeon_crtc->crtc_id); 68 WREG32(AVIVO_DC_LUT_RW_MODE, 0); 69 WREG32(AVIVO_DC_LUT_WRITE_EN_MASK, 0x0000003f); 70 71 WREG8(AVIVO_DC_LUT_RW_INDEX, 0); 72 r = crtc->gamma_store; 73 g = r + crtc->gamma_size; 74 b = g + crtc->gamma_size; 75 for (i = 0; i < 256; i++) { 76 WREG32(AVIVO_DC_LUT_30_COLOR, 77 ((*r++ & 0xffc0) << 14) | 78 ((*g++ & 0xffc0) << 4) | 79 (*b++ >> 6)); 80 } 81 82 /* Only change bit 0 of LUT_SEL, other bits are set elsewhere */ 83 WREG32_P(AVIVO_D1GRPH_LUT_SEL + radeon_crtc->crtc_offset, radeon_crtc->crtc_id, ~1); 84 } 85 86 static void dce4_crtc_load_lut(struct drm_crtc *crtc) 87 { 88 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 89 struct drm_device *dev = crtc->dev; 90 struct radeon_device *rdev = dev->dev_private; 91 u16 *r, *g, *b; 92 int i; 93 94 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id); 95 WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0); 96 97 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0); 98 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0); 99 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0); 100 101 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff); 102 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff); 103 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff); 104 105 WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0); 106 WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007); 107 108 WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0); 109 r = crtc->gamma_store; 110 g = r + crtc->gamma_size; 111 b = g + crtc->gamma_size; 112 for (i = 0; i < 256; i++) { 113 WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset, 114 ((*r++ & 0xffc0) << 14) | 115 ((*g++ & 0xffc0) << 4) | 116 (*b++ >> 6)); 117 } 118 } 119 120 static void dce5_crtc_load_lut(struct drm_crtc *crtc) 121 { 122 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 123 struct drm_device *dev = crtc->dev; 124 struct radeon_device *rdev = dev->dev_private; 125 u16 *r, *g, *b; 126 int i; 127 128 DRM_DEBUG_KMS("%d\n", radeon_crtc->crtc_id); 129 130 msleep(10); 131 132 WREG32(NI_INPUT_CSC_CONTROL + radeon_crtc->crtc_offset, 133 (NI_INPUT_CSC_GRPH_MODE(NI_INPUT_CSC_BYPASS) | 134 NI_INPUT_CSC_OVL_MODE(NI_INPUT_CSC_BYPASS))); 135 WREG32(NI_PRESCALE_GRPH_CONTROL + radeon_crtc->crtc_offset, 136 NI_GRPH_PRESCALE_BYPASS); 137 WREG32(NI_PRESCALE_OVL_CONTROL + radeon_crtc->crtc_offset, 138 NI_OVL_PRESCALE_BYPASS); 139 WREG32(NI_INPUT_GAMMA_CONTROL + radeon_crtc->crtc_offset, 140 (NI_GRPH_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT) | 141 NI_OVL_INPUT_GAMMA_MODE(NI_INPUT_GAMMA_USE_LUT))); 142 143 WREG32(EVERGREEN_DC_LUT_CONTROL + radeon_crtc->crtc_offset, 0); 144 145 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_BLUE + radeon_crtc->crtc_offset, 0); 146 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_GREEN + radeon_crtc->crtc_offset, 0); 147 WREG32(EVERGREEN_DC_LUT_BLACK_OFFSET_RED + radeon_crtc->crtc_offset, 0); 148 149 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_BLUE + radeon_crtc->crtc_offset, 0xffff); 150 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_GREEN + radeon_crtc->crtc_offset, 0xffff); 151 WREG32(EVERGREEN_DC_LUT_WHITE_OFFSET_RED + radeon_crtc->crtc_offset, 0xffff); 152 153 WREG32(EVERGREEN_DC_LUT_RW_MODE + radeon_crtc->crtc_offset, 0); 154 WREG32(EVERGREEN_DC_LUT_WRITE_EN_MASK + radeon_crtc->crtc_offset, 0x00000007); 155 156 WREG32(EVERGREEN_DC_LUT_RW_INDEX + radeon_crtc->crtc_offset, 0); 157 r = crtc->gamma_store; 158 g = r + crtc->gamma_size; 159 b = g + crtc->gamma_size; 160 for (i = 0; i < 256; i++) { 161 WREG32(EVERGREEN_DC_LUT_30_COLOR + radeon_crtc->crtc_offset, 162 ((*r++ & 0xffc0) << 14) | 163 ((*g++ & 0xffc0) << 4) | 164 (*b++ >> 6)); 165 } 166 167 WREG32(NI_DEGAMMA_CONTROL + radeon_crtc->crtc_offset, 168 (NI_GRPH_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) | 169 NI_OVL_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) | 170 NI_ICON_DEGAMMA_MODE(NI_DEGAMMA_BYPASS) | 171 NI_CURSOR_DEGAMMA_MODE(NI_DEGAMMA_BYPASS))); 172 WREG32(NI_GAMUT_REMAP_CONTROL + radeon_crtc->crtc_offset, 173 (NI_GRPH_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS) | 174 NI_OVL_GAMUT_REMAP_MODE(NI_GAMUT_REMAP_BYPASS))); 175 WREG32(NI_REGAMMA_CONTROL + radeon_crtc->crtc_offset, 176 (NI_GRPH_REGAMMA_MODE(NI_REGAMMA_BYPASS) | 177 NI_OVL_REGAMMA_MODE(NI_REGAMMA_BYPASS))); 178 WREG32(NI_OUTPUT_CSC_CONTROL + radeon_crtc->crtc_offset, 179 (NI_OUTPUT_CSC_GRPH_MODE(radeon_crtc->output_csc) | 180 NI_OUTPUT_CSC_OVL_MODE(NI_OUTPUT_CSC_BYPASS))); 181 /* XXX match this to the depth of the crtc fmt block, move to modeset? */ 182 WREG32(0x6940 + radeon_crtc->crtc_offset, 0); 183 if (ASIC_IS_DCE8(rdev)) { 184 /* XXX this only needs to be programmed once per crtc at startup, 185 * not sure where the best place for it is 186 */ 187 WREG32(CIK_ALPHA_CONTROL + radeon_crtc->crtc_offset, 188 CIK_CURSOR_ALPHA_BLND_ENA); 189 } 190 } 191 192 static void legacy_crtc_load_lut(struct drm_crtc *crtc) 193 { 194 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 195 struct drm_device *dev = crtc->dev; 196 struct radeon_device *rdev = dev->dev_private; 197 u16 *r, *g, *b; 198 int i; 199 uint32_t dac2_cntl; 200 201 dac2_cntl = RREG32(RADEON_DAC_CNTL2); 202 if (radeon_crtc->crtc_id == 0) 203 dac2_cntl &= (uint32_t)~RADEON_DAC2_PALETTE_ACC_CTL; 204 else 205 dac2_cntl |= RADEON_DAC2_PALETTE_ACC_CTL; 206 WREG32(RADEON_DAC_CNTL2, dac2_cntl); 207 208 WREG8(RADEON_PALETTE_INDEX, 0); 209 r = crtc->gamma_store; 210 g = r + crtc->gamma_size; 211 b = g + crtc->gamma_size; 212 for (i = 0; i < 256; i++) { 213 WREG32(RADEON_PALETTE_30_DATA, 214 ((*r++ & 0xffc0) << 14) | 215 ((*g++ & 0xffc0) << 4) | 216 (*b++ >> 6)); 217 } 218 } 219 220 void radeon_crtc_load_lut(struct drm_crtc *crtc) 221 { 222 struct drm_device *dev = crtc->dev; 223 struct radeon_device *rdev = dev->dev_private; 224 225 if (!crtc->enabled) 226 return; 227 228 if (ASIC_IS_DCE5(rdev)) 229 dce5_crtc_load_lut(crtc); 230 else if (ASIC_IS_DCE4(rdev)) 231 dce4_crtc_load_lut(crtc); 232 else if (ASIC_IS_AVIVO(rdev)) 233 avivo_crtc_load_lut(crtc); 234 else 235 legacy_crtc_load_lut(crtc); 236 } 237 238 static int radeon_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, 239 u16 *blue, uint32_t size, 240 struct drm_modeset_acquire_ctx *ctx) 241 { 242 radeon_crtc_load_lut(crtc); 243 244 return 0; 245 } 246 247 static void radeon_crtc_destroy(struct drm_crtc *crtc) 248 { 249 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 250 251 drm_crtc_cleanup(crtc); 252 destroy_workqueue(radeon_crtc->flip_queue); 253 kfree(radeon_crtc); 254 } 255 256 /** 257 * radeon_unpin_work_func - unpin old buffer object 258 * 259 * @__work - kernel work item 260 * 261 * Unpin the old frame buffer object outside of the interrupt handler 262 */ 263 static void radeon_unpin_work_func(struct work_struct *__work) 264 { 265 struct radeon_flip_work *work = 266 container_of(__work, struct radeon_flip_work, unpin_work); 267 int r; 268 269 /* unpin of the old buffer */ 270 r = radeon_bo_reserve(work->old_rbo, false); 271 if (likely(r == 0)) { 272 r = radeon_bo_unpin(work->old_rbo); 273 if (unlikely(r != 0)) { 274 DRM_ERROR("failed to unpin buffer after flip\n"); 275 } 276 radeon_bo_unreserve(work->old_rbo); 277 } else 278 DRM_ERROR("failed to reserve buffer after flip\n"); 279 280 drm_gem_object_put_unlocked(&work->old_rbo->tbo.base); 281 kfree(work); 282 } 283 284 void radeon_crtc_handle_vblank(struct radeon_device *rdev, int crtc_id) 285 { 286 struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id]; 287 unsigned long flags; 288 u32 update_pending; 289 int vpos, hpos; 290 291 /* can happen during initialization */ 292 if (radeon_crtc == NULL) 293 return; 294 295 /* Skip the pageflip completion check below (based on polling) on 296 * asics which reliably support hw pageflip completion irqs. pflip 297 * irqs are a reliable and race-free method of handling pageflip 298 * completion detection. A use_pflipirq module parameter < 2 allows 299 * to override this in case of asics with faulty pflip irqs. 300 * A module parameter of 0 would only use this polling based path, 301 * a parameter of 1 would use pflip irq only as a backup to this 302 * path, as in Linux 3.16. 303 */ 304 if ((radeon_use_pflipirq == 2) && ASIC_IS_DCE4(rdev)) 305 return; 306 307 spin_lock_irqsave(&rdev->ddev->event_lock, flags); 308 if (radeon_crtc->flip_status != RADEON_FLIP_SUBMITTED) { 309 DRM_DEBUG_DRIVER("radeon_crtc->flip_status = %d != " 310 "RADEON_FLIP_SUBMITTED(%d)\n", 311 radeon_crtc->flip_status, 312 RADEON_FLIP_SUBMITTED); 313 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags); 314 return; 315 } 316 317 update_pending = radeon_page_flip_pending(rdev, crtc_id); 318 319 /* Has the pageflip already completed in crtc, or is it certain 320 * to complete in this vblank? GET_DISTANCE_TO_VBLANKSTART provides 321 * distance to start of "fudged earlier" vblank in vpos, distance to 322 * start of real vblank in hpos. vpos >= 0 && hpos < 0 means we are in 323 * the last few scanlines before start of real vblank, where the vblank 324 * irq can fire, so we have sampled update_pending a bit too early and 325 * know the flip will complete at leading edge of the upcoming real 326 * vblank. On pre-AVIVO hardware, flips also complete inside the real 327 * vblank, not only at leading edge, so if update_pending for hpos >= 0 328 * == inside real vblank, the flip will complete almost immediately. 329 * Note that this method of completion handling is still not 100% race 330 * free, as we could execute before the radeon_flip_work_func managed 331 * to run and set the RADEON_FLIP_SUBMITTED status, thereby we no-op, 332 * but the flip still gets programmed into hw and completed during 333 * vblank, leading to a delayed emission of the flip completion event. 334 * This applies at least to pre-AVIVO hardware, where flips are always 335 * completing inside vblank, not only at leading edge of vblank. 336 */ 337 if (update_pending && 338 (DRM_SCANOUTPOS_VALID & 339 radeon_get_crtc_scanoutpos(rdev->ddev, crtc_id, 340 GET_DISTANCE_TO_VBLANKSTART, 341 &vpos, &hpos, NULL, NULL, 342 &rdev->mode_info.crtcs[crtc_id]->base.hwmode)) && 343 ((vpos >= 0 && hpos < 0) || (hpos >= 0 && !ASIC_IS_AVIVO(rdev)))) { 344 /* crtc didn't flip in this target vblank interval, 345 * but flip is pending in crtc. Based on the current 346 * scanout position we know that the current frame is 347 * (nearly) complete and the flip will (likely) 348 * complete before the start of the next frame. 349 */ 350 update_pending = 0; 351 } 352 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags); 353 if (!update_pending) 354 radeon_crtc_handle_flip(rdev, crtc_id); 355 } 356 357 /** 358 * radeon_crtc_handle_flip - page flip completed 359 * 360 * @rdev: radeon device pointer 361 * @crtc_id: crtc number this event is for 362 * 363 * Called when we are sure that a page flip for this crtc is completed. 364 */ 365 void radeon_crtc_handle_flip(struct radeon_device *rdev, int crtc_id) 366 { 367 struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id]; 368 struct radeon_flip_work *work; 369 unsigned long flags; 370 371 /* this can happen at init */ 372 if (radeon_crtc == NULL) 373 return; 374 375 spin_lock_irqsave(&rdev->ddev->event_lock, flags); 376 work = radeon_crtc->flip_work; 377 if (radeon_crtc->flip_status != RADEON_FLIP_SUBMITTED) { 378 DRM_DEBUG_DRIVER("radeon_crtc->flip_status = %d != " 379 "RADEON_FLIP_SUBMITTED(%d)\n", 380 radeon_crtc->flip_status, 381 RADEON_FLIP_SUBMITTED); 382 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags); 383 return; 384 } 385 386 /* Pageflip completed. Clean up. */ 387 radeon_crtc->flip_status = RADEON_FLIP_NONE; 388 radeon_crtc->flip_work = NULL; 389 390 /* wakeup userspace */ 391 if (work->event) 392 drm_crtc_send_vblank_event(&radeon_crtc->base, work->event); 393 394 spin_unlock_irqrestore(&rdev->ddev->event_lock, flags); 395 396 drm_crtc_vblank_put(&radeon_crtc->base); 397 radeon_irq_kms_pflip_irq_put(rdev, work->crtc_id); 398 queue_work(radeon_crtc->flip_queue, &work->unpin_work); 399 } 400 401 /** 402 * radeon_flip_work_func - page flip framebuffer 403 * 404 * @work - kernel work item 405 * 406 * Wait for the buffer object to become idle and do the actual page flip 407 */ 408 static void radeon_flip_work_func(struct work_struct *__work) 409 { 410 struct radeon_flip_work *work = 411 container_of(__work, struct radeon_flip_work, flip_work); 412 struct radeon_device *rdev = work->rdev; 413 struct drm_device *dev = rdev->ddev; 414 struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[work->crtc_id]; 415 416 struct drm_crtc *crtc = &radeon_crtc->base; 417 unsigned long flags; 418 int r; 419 int vpos, hpos; 420 421 down_read(&rdev->exclusive_lock); 422 if (work->fence) { 423 struct radeon_fence *fence; 424 425 fence = to_radeon_fence(work->fence); 426 if (fence && fence->rdev == rdev) { 427 r = radeon_fence_wait(fence, false); 428 if (r == -EDEADLK) { 429 up_read(&rdev->exclusive_lock); 430 do { 431 r = radeon_gpu_reset(rdev); 432 } while (r == -EAGAIN); 433 down_read(&rdev->exclusive_lock); 434 } 435 } else 436 r = dma_fence_wait(work->fence, false); 437 438 if (r) 439 DRM_ERROR("failed to wait on page flip fence (%d)!\n", r); 440 441 /* We continue with the page flip even if we failed to wait on 442 * the fence, otherwise the DRM core and userspace will be 443 * confused about which BO the CRTC is scanning out 444 */ 445 446 dma_fence_put(work->fence); 447 work->fence = NULL; 448 } 449 450 /* Wait until we're out of the vertical blank period before the one 451 * targeted by the flip. Always wait on pre DCE4 to avoid races with 452 * flip completion handling from vblank irq, as these old asics don't 453 * have reliable pageflip completion interrupts. 454 */ 455 while (radeon_crtc->enabled && 456 (radeon_get_crtc_scanoutpos(dev, work->crtc_id, 0, 457 &vpos, &hpos, NULL, NULL, 458 &crtc->hwmode) 459 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) == 460 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) && 461 (!ASIC_IS_AVIVO(rdev) || 462 ((int) (work->target_vblank - 463 dev->driver->get_vblank_counter(dev, work->crtc_id)) > 0))) 464 usleep_range(1000, 2000); 465 466 /* We borrow the event spin lock for protecting flip_status */ 467 spin_lock_irqsave(&crtc->dev->event_lock, flags); 468 469 /* set the proper interrupt */ 470 radeon_irq_kms_pflip_irq_get(rdev, radeon_crtc->crtc_id); 471 472 /* do the flip (mmio) */ 473 radeon_page_flip(rdev, radeon_crtc->crtc_id, work->base, work->async); 474 475 radeon_crtc->flip_status = RADEON_FLIP_SUBMITTED; 476 spin_unlock_irqrestore(&crtc->dev->event_lock, flags); 477 up_read(&rdev->exclusive_lock); 478 } 479 480 static int radeon_crtc_page_flip_target(struct drm_crtc *crtc, 481 struct drm_framebuffer *fb, 482 struct drm_pending_vblank_event *event, 483 uint32_t page_flip_flags, 484 uint32_t target, 485 struct drm_modeset_acquire_ctx *ctx) 486 { 487 struct drm_device *dev = crtc->dev; 488 struct radeon_device *rdev = dev->dev_private; 489 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 490 struct drm_gem_object *obj; 491 struct radeon_flip_work *work; 492 struct radeon_bo *new_rbo; 493 uint32_t tiling_flags, pitch_pixels; 494 uint64_t base; 495 unsigned long flags; 496 int r; 497 498 work = kzalloc(sizeof *work, GFP_KERNEL); 499 if (work == NULL) 500 return -ENOMEM; 501 502 INIT_WORK(&work->flip_work, radeon_flip_work_func); 503 INIT_WORK(&work->unpin_work, radeon_unpin_work_func); 504 505 work->rdev = rdev; 506 work->crtc_id = radeon_crtc->crtc_id; 507 work->event = event; 508 work->async = (page_flip_flags & DRM_MODE_PAGE_FLIP_ASYNC) != 0; 509 510 /* schedule unpin of the old buffer */ 511 obj = crtc->primary->fb->obj[0]; 512 513 /* take a reference to the old object */ 514 drm_gem_object_get(obj); 515 work->old_rbo = gem_to_radeon_bo(obj); 516 517 obj = fb->obj[0]; 518 new_rbo = gem_to_radeon_bo(obj); 519 520 /* pin the new buffer */ 521 DRM_DEBUG_DRIVER("flip-ioctl() cur_rbo = %p, new_rbo = %p\n", 522 work->old_rbo, new_rbo); 523 524 r = radeon_bo_reserve(new_rbo, false); 525 if (unlikely(r != 0)) { 526 DRM_ERROR("failed to reserve new rbo buffer before flip\n"); 527 goto cleanup; 528 } 529 /* Only 27 bit offset for legacy CRTC */ 530 r = radeon_bo_pin_restricted(new_rbo, RADEON_GEM_DOMAIN_VRAM, 531 ASIC_IS_AVIVO(rdev) ? 0 : 1 << 27, &base); 532 if (unlikely(r != 0)) { 533 radeon_bo_unreserve(new_rbo); 534 r = -EINVAL; 535 DRM_ERROR("failed to pin new rbo buffer before flip\n"); 536 goto cleanup; 537 } 538 work->fence = dma_fence_get(dma_resv_get_excl(new_rbo->tbo.base.resv)); 539 radeon_bo_get_tiling_flags(new_rbo, &tiling_flags, NULL); 540 radeon_bo_unreserve(new_rbo); 541 542 if (!ASIC_IS_AVIVO(rdev)) { 543 /* crtc offset is from display base addr not FB location */ 544 base -= radeon_crtc->legacy_display_base_addr; 545 pitch_pixels = fb->pitches[0] / fb->format->cpp[0]; 546 547 if (tiling_flags & RADEON_TILING_MACRO) { 548 if (ASIC_IS_R300(rdev)) { 549 base &= ~0x7ff; 550 } else { 551 int byteshift = fb->format->cpp[0] * 8 >> 4; 552 int tile_addr = (((crtc->y >> 3) * pitch_pixels + crtc->x) >> (8 - byteshift)) << 11; 553 base += tile_addr + ((crtc->x << byteshift) % 256) + ((crtc->y % 8) << 8); 554 } 555 } else { 556 int offset = crtc->y * pitch_pixels + crtc->x; 557 switch (fb->format->cpp[0] * 8) { 558 case 8: 559 default: 560 offset *= 1; 561 break; 562 case 15: 563 case 16: 564 offset *= 2; 565 break; 566 case 24: 567 offset *= 3; 568 break; 569 case 32: 570 offset *= 4; 571 break; 572 } 573 base += offset; 574 } 575 base &= ~7; 576 } 577 work->base = base; 578 work->target_vblank = target - (uint32_t)drm_crtc_vblank_count(crtc) + 579 dev->driver->get_vblank_counter(dev, work->crtc_id); 580 581 /* We borrow the event spin lock for protecting flip_work */ 582 spin_lock_irqsave(&crtc->dev->event_lock, flags); 583 584 if (radeon_crtc->flip_status != RADEON_FLIP_NONE) { 585 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); 586 spin_unlock_irqrestore(&crtc->dev->event_lock, flags); 587 r = -EBUSY; 588 goto pflip_cleanup; 589 } 590 radeon_crtc->flip_status = RADEON_FLIP_PENDING; 591 radeon_crtc->flip_work = work; 592 593 /* update crtc fb */ 594 crtc->primary->fb = fb; 595 596 spin_unlock_irqrestore(&crtc->dev->event_lock, flags); 597 598 queue_work(radeon_crtc->flip_queue, &work->flip_work); 599 return 0; 600 601 pflip_cleanup: 602 if (unlikely(radeon_bo_reserve(new_rbo, false) != 0)) { 603 DRM_ERROR("failed to reserve new rbo in error path\n"); 604 goto cleanup; 605 } 606 if (unlikely(radeon_bo_unpin(new_rbo) != 0)) { 607 DRM_ERROR("failed to unpin new rbo in error path\n"); 608 } 609 radeon_bo_unreserve(new_rbo); 610 611 cleanup: 612 drm_gem_object_put_unlocked(&work->old_rbo->tbo.base); 613 dma_fence_put(work->fence); 614 kfree(work); 615 return r; 616 } 617 618 static int 619 radeon_crtc_set_config(struct drm_mode_set *set, 620 struct drm_modeset_acquire_ctx *ctx) 621 { 622 struct drm_device *dev; 623 struct radeon_device *rdev; 624 struct drm_crtc *crtc; 625 bool active = false; 626 int ret; 627 628 if (!set || !set->crtc) 629 return -EINVAL; 630 631 dev = set->crtc->dev; 632 633 ret = pm_runtime_get_sync(dev->dev); 634 if (ret < 0) 635 return ret; 636 637 ret = drm_crtc_helper_set_config(set, ctx); 638 639 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) 640 if (crtc->enabled) 641 active = true; 642 643 pm_runtime_mark_last_busy(dev->dev); 644 645 rdev = dev->dev_private; 646 /* if we have active crtcs and we don't have a power ref, 647 take the current one */ 648 if (active && !rdev->have_disp_power_ref) { 649 rdev->have_disp_power_ref = true; 650 return ret; 651 } 652 /* if we have no active crtcs, then drop the power ref 653 we got before */ 654 if (!active && rdev->have_disp_power_ref) { 655 pm_runtime_put_autosuspend(dev->dev); 656 rdev->have_disp_power_ref = false; 657 } 658 659 /* drop the power reference we got coming in here */ 660 pm_runtime_put_autosuspend(dev->dev); 661 return ret; 662 } 663 664 static const struct drm_crtc_funcs radeon_crtc_funcs = { 665 .cursor_set2 = radeon_crtc_cursor_set2, 666 .cursor_move = radeon_crtc_cursor_move, 667 .gamma_set = radeon_crtc_gamma_set, 668 .set_config = radeon_crtc_set_config, 669 .destroy = radeon_crtc_destroy, 670 .page_flip_target = radeon_crtc_page_flip_target, 671 }; 672 673 static void radeon_crtc_init(struct drm_device *dev, int index) 674 { 675 struct radeon_device *rdev = dev->dev_private; 676 struct radeon_crtc *radeon_crtc; 677 678 radeon_crtc = kzalloc(sizeof(struct radeon_crtc) + (RADEONFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); 679 if (radeon_crtc == NULL) 680 return; 681 682 drm_crtc_init(dev, &radeon_crtc->base, &radeon_crtc_funcs); 683 684 drm_mode_crtc_set_gamma_size(&radeon_crtc->base, 256); 685 radeon_crtc->crtc_id = index; 686 radeon_crtc->flip_queue = alloc_workqueue("radeon-crtc", WQ_HIGHPRI, 0); 687 rdev->mode_info.crtcs[index] = radeon_crtc; 688 689 if (rdev->family >= CHIP_BONAIRE) { 690 radeon_crtc->max_cursor_width = CIK_CURSOR_WIDTH; 691 radeon_crtc->max_cursor_height = CIK_CURSOR_HEIGHT; 692 } else { 693 radeon_crtc->max_cursor_width = CURSOR_WIDTH; 694 radeon_crtc->max_cursor_height = CURSOR_HEIGHT; 695 } 696 dev->mode_config.cursor_width = radeon_crtc->max_cursor_width; 697 dev->mode_config.cursor_height = radeon_crtc->max_cursor_height; 698 699 #if 0 700 radeon_crtc->mode_set.crtc = &radeon_crtc->base; 701 radeon_crtc->mode_set.connectors = (struct drm_connector **)(radeon_crtc + 1); 702 radeon_crtc->mode_set.num_connectors = 0; 703 #endif 704 705 if (rdev->is_atom_bios && (ASIC_IS_AVIVO(rdev) || radeon_r4xx_atom)) 706 radeon_atombios_init_crtc(dev, radeon_crtc); 707 else 708 radeon_legacy_init_crtc(dev, radeon_crtc); 709 } 710 711 static const char *encoder_names[38] = { 712 "NONE", 713 "INTERNAL_LVDS", 714 "INTERNAL_TMDS1", 715 "INTERNAL_TMDS2", 716 "INTERNAL_DAC1", 717 "INTERNAL_DAC2", 718 "INTERNAL_SDVOA", 719 "INTERNAL_SDVOB", 720 "SI170B", 721 "CH7303", 722 "CH7301", 723 "INTERNAL_DVO1", 724 "EXTERNAL_SDVOA", 725 "EXTERNAL_SDVOB", 726 "TITFP513", 727 "INTERNAL_LVTM1", 728 "VT1623", 729 "HDMI_SI1930", 730 "HDMI_INTERNAL", 731 "INTERNAL_KLDSCP_TMDS1", 732 "INTERNAL_KLDSCP_DVO1", 733 "INTERNAL_KLDSCP_DAC1", 734 "INTERNAL_KLDSCP_DAC2", 735 "SI178", 736 "MVPU_FPGA", 737 "INTERNAL_DDI", 738 "VT1625", 739 "HDMI_SI1932", 740 "DP_AN9801", 741 "DP_DP501", 742 "INTERNAL_UNIPHY", 743 "INTERNAL_KLDSCP_LVTMA", 744 "INTERNAL_UNIPHY1", 745 "INTERNAL_UNIPHY2", 746 "NUTMEG", 747 "TRAVIS", 748 "INTERNAL_VCE", 749 "INTERNAL_UNIPHY3", 750 }; 751 752 static const char *hpd_names[6] = { 753 "HPD1", 754 "HPD2", 755 "HPD3", 756 "HPD4", 757 "HPD5", 758 "HPD6", 759 }; 760 761 static void radeon_print_display_setup(struct drm_device *dev) 762 { 763 struct drm_connector *connector; 764 struct radeon_connector *radeon_connector; 765 struct drm_encoder *encoder; 766 struct radeon_encoder *radeon_encoder; 767 uint32_t devices; 768 int i = 0; 769 770 DRM_INFO("Radeon Display Connectors\n"); 771 list_for_each_entry(connector, &dev->mode_config.connector_list, head) { 772 radeon_connector = to_radeon_connector(connector); 773 DRM_INFO("Connector %d:\n", i); 774 DRM_INFO(" %s\n", connector->name); 775 if (radeon_connector->hpd.hpd != RADEON_HPD_NONE) 776 DRM_INFO(" %s\n", hpd_names[radeon_connector->hpd.hpd]); 777 if (radeon_connector->ddc_bus) { 778 DRM_INFO(" DDC: 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n", 779 radeon_connector->ddc_bus->rec.mask_clk_reg, 780 radeon_connector->ddc_bus->rec.mask_data_reg, 781 radeon_connector->ddc_bus->rec.a_clk_reg, 782 radeon_connector->ddc_bus->rec.a_data_reg, 783 radeon_connector->ddc_bus->rec.en_clk_reg, 784 radeon_connector->ddc_bus->rec.en_data_reg, 785 radeon_connector->ddc_bus->rec.y_clk_reg, 786 radeon_connector->ddc_bus->rec.y_data_reg); 787 if (radeon_connector->router.ddc_valid) 788 DRM_INFO(" DDC Router 0x%x/0x%x\n", 789 radeon_connector->router.ddc_mux_control_pin, 790 radeon_connector->router.ddc_mux_state); 791 if (radeon_connector->router.cd_valid) 792 DRM_INFO(" Clock/Data Router 0x%x/0x%x\n", 793 radeon_connector->router.cd_mux_control_pin, 794 radeon_connector->router.cd_mux_state); 795 } else { 796 if (connector->connector_type == DRM_MODE_CONNECTOR_VGA || 797 connector->connector_type == DRM_MODE_CONNECTOR_DVII || 798 connector->connector_type == DRM_MODE_CONNECTOR_DVID || 799 connector->connector_type == DRM_MODE_CONNECTOR_DVIA || 800 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA || 801 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) 802 DRM_INFO(" DDC: no ddc bus - possible BIOS bug - please report to xorg-driver-ati@lists.x.org\n"); 803 } 804 DRM_INFO(" Encoders:\n"); 805 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { 806 radeon_encoder = to_radeon_encoder(encoder); 807 devices = radeon_encoder->devices & radeon_connector->devices; 808 if (devices) { 809 if (devices & ATOM_DEVICE_CRT1_SUPPORT) 810 DRM_INFO(" CRT1: %s\n", encoder_names[radeon_encoder->encoder_id]); 811 if (devices & ATOM_DEVICE_CRT2_SUPPORT) 812 DRM_INFO(" CRT2: %s\n", encoder_names[radeon_encoder->encoder_id]); 813 if (devices & ATOM_DEVICE_LCD1_SUPPORT) 814 DRM_INFO(" LCD1: %s\n", encoder_names[radeon_encoder->encoder_id]); 815 if (devices & ATOM_DEVICE_DFP1_SUPPORT) 816 DRM_INFO(" DFP1: %s\n", encoder_names[radeon_encoder->encoder_id]); 817 if (devices & ATOM_DEVICE_DFP2_SUPPORT) 818 DRM_INFO(" DFP2: %s\n", encoder_names[radeon_encoder->encoder_id]); 819 if (devices & ATOM_DEVICE_DFP3_SUPPORT) 820 DRM_INFO(" DFP3: %s\n", encoder_names[radeon_encoder->encoder_id]); 821 if (devices & ATOM_DEVICE_DFP4_SUPPORT) 822 DRM_INFO(" DFP4: %s\n", encoder_names[radeon_encoder->encoder_id]); 823 if (devices & ATOM_DEVICE_DFP5_SUPPORT) 824 DRM_INFO(" DFP5: %s\n", encoder_names[radeon_encoder->encoder_id]); 825 if (devices & ATOM_DEVICE_DFP6_SUPPORT) 826 DRM_INFO(" DFP6: %s\n", encoder_names[radeon_encoder->encoder_id]); 827 if (devices & ATOM_DEVICE_TV1_SUPPORT) 828 DRM_INFO(" TV1: %s\n", encoder_names[radeon_encoder->encoder_id]); 829 if (devices & ATOM_DEVICE_CV_SUPPORT) 830 DRM_INFO(" CV: %s\n", encoder_names[radeon_encoder->encoder_id]); 831 } 832 } 833 i++; 834 } 835 } 836 837 static bool radeon_setup_enc_conn(struct drm_device *dev) 838 { 839 struct radeon_device *rdev = dev->dev_private; 840 bool ret = false; 841 842 if (rdev->bios) { 843 if (rdev->is_atom_bios) { 844 ret = radeon_get_atom_connector_info_from_supported_devices_table(dev); 845 if (!ret) 846 ret = radeon_get_atom_connector_info_from_object_table(dev); 847 } else { 848 ret = radeon_get_legacy_connector_info_from_bios(dev); 849 if (!ret) 850 ret = radeon_get_legacy_connector_info_from_table(dev); 851 } 852 } else { 853 if (!ASIC_IS_AVIVO(rdev)) 854 ret = radeon_get_legacy_connector_info_from_table(dev); 855 } 856 if (ret) { 857 radeon_setup_encoder_clones(dev); 858 radeon_print_display_setup(dev); 859 } 860 861 return ret; 862 } 863 864 /* avivo */ 865 866 /** 867 * avivo_reduce_ratio - fractional number reduction 868 * 869 * @nom: nominator 870 * @den: denominator 871 * @nom_min: minimum value for nominator 872 * @den_min: minimum value for denominator 873 * 874 * Find the greatest common divisor and apply it on both nominator and 875 * denominator, but make nominator and denominator are at least as large 876 * as their minimum values. 877 */ 878 static void avivo_reduce_ratio(unsigned *nom, unsigned *den, 879 unsigned nom_min, unsigned den_min) 880 { 881 unsigned tmp; 882 883 /* reduce the numbers to a simpler ratio */ 884 tmp = gcd(*nom, *den); 885 *nom /= tmp; 886 *den /= tmp; 887 888 /* make sure nominator is large enough */ 889 if (*nom < nom_min) { 890 tmp = DIV_ROUND_UP(nom_min, *nom); 891 *nom *= tmp; 892 *den *= tmp; 893 } 894 895 /* make sure the denominator is large enough */ 896 if (*den < den_min) { 897 tmp = DIV_ROUND_UP(den_min, *den); 898 *nom *= tmp; 899 *den *= tmp; 900 } 901 } 902 903 /** 904 * avivo_get_fb_ref_div - feedback and ref divider calculation 905 * 906 * @nom: nominator 907 * @den: denominator 908 * @post_div: post divider 909 * @fb_div_max: feedback divider maximum 910 * @ref_div_max: reference divider maximum 911 * @fb_div: resulting feedback divider 912 * @ref_div: resulting reference divider 913 * 914 * Calculate feedback and reference divider for a given post divider. Makes 915 * sure we stay within the limits. 916 */ 917 static void avivo_get_fb_ref_div(unsigned nom, unsigned den, unsigned post_div, 918 unsigned fb_div_max, unsigned ref_div_max, 919 unsigned *fb_div, unsigned *ref_div) 920 { 921 /* limit reference * post divider to a maximum */ 922 ref_div_max = max(min(100 / post_div, ref_div_max), 1u); 923 924 /* get matching reference and feedback divider */ 925 *ref_div = min(max(den/post_div, 1u), ref_div_max); 926 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den); 927 928 /* limit fb divider to its maximum */ 929 if (*fb_div > fb_div_max) { 930 *ref_div = (*ref_div * fb_div_max)/(*fb_div); 931 *fb_div = fb_div_max; 932 } 933 } 934 935 /** 936 * radeon_compute_pll_avivo - compute PLL paramaters 937 * 938 * @pll: information about the PLL 939 * @dot_clock_p: resulting pixel clock 940 * fb_div_p: resulting feedback divider 941 * frac_fb_div_p: fractional part of the feedback divider 942 * ref_div_p: resulting reference divider 943 * post_div_p: resulting reference divider 944 * 945 * Try to calculate the PLL parameters to generate the given frequency: 946 * dot_clock = (ref_freq * feedback_div) / (ref_div * post_div) 947 */ 948 void radeon_compute_pll_avivo(struct radeon_pll *pll, 949 u32 freq, 950 u32 *dot_clock_p, 951 u32 *fb_div_p, 952 u32 *frac_fb_div_p, 953 u32 *ref_div_p, 954 u32 *post_div_p) 955 { 956 unsigned target_clock = pll->flags & RADEON_PLL_USE_FRAC_FB_DIV ? 957 freq : freq / 10; 958 959 unsigned fb_div_min, fb_div_max, fb_div; 960 unsigned post_div_min, post_div_max, post_div; 961 unsigned ref_div_min, ref_div_max, ref_div; 962 unsigned post_div_best, diff_best; 963 unsigned nom, den; 964 965 /* determine allowed feedback divider range */ 966 fb_div_min = pll->min_feedback_div; 967 fb_div_max = pll->max_feedback_div; 968 969 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { 970 fb_div_min *= 10; 971 fb_div_max *= 10; 972 } 973 974 /* determine allowed ref divider range */ 975 if (pll->flags & RADEON_PLL_USE_REF_DIV) 976 ref_div_min = pll->reference_div; 977 else 978 ref_div_min = pll->min_ref_div; 979 980 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV && 981 pll->flags & RADEON_PLL_USE_REF_DIV) 982 ref_div_max = pll->reference_div; 983 else if (pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP) 984 /* fix for problems on RS880 */ 985 ref_div_max = min(pll->max_ref_div, 7u); 986 else 987 ref_div_max = pll->max_ref_div; 988 989 /* determine allowed post divider range */ 990 if (pll->flags & RADEON_PLL_USE_POST_DIV) { 991 post_div_min = pll->post_div; 992 post_div_max = pll->post_div; 993 } else { 994 unsigned vco_min, vco_max; 995 996 if (pll->flags & RADEON_PLL_IS_LCD) { 997 vco_min = pll->lcd_pll_out_min; 998 vco_max = pll->lcd_pll_out_max; 999 } else { 1000 vco_min = pll->pll_out_min; 1001 vco_max = pll->pll_out_max; 1002 } 1003 1004 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { 1005 vco_min *= 10; 1006 vco_max *= 10; 1007 } 1008 1009 post_div_min = vco_min / target_clock; 1010 if ((target_clock * post_div_min) < vco_min) 1011 ++post_div_min; 1012 if (post_div_min < pll->min_post_div) 1013 post_div_min = pll->min_post_div; 1014 1015 post_div_max = vco_max / target_clock; 1016 if ((target_clock * post_div_max) > vco_max) 1017 --post_div_max; 1018 if (post_div_max > pll->max_post_div) 1019 post_div_max = pll->max_post_div; 1020 } 1021 1022 /* represent the searched ratio as fractional number */ 1023 nom = target_clock; 1024 den = pll->reference_freq; 1025 1026 /* reduce the numbers to a simpler ratio */ 1027 avivo_reduce_ratio(&nom, &den, fb_div_min, post_div_min); 1028 1029 /* now search for a post divider */ 1030 if (pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP) 1031 post_div_best = post_div_min; 1032 else 1033 post_div_best = post_div_max; 1034 diff_best = ~0; 1035 1036 for (post_div = post_div_min; post_div <= post_div_max; ++post_div) { 1037 unsigned diff; 1038 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max, 1039 ref_div_max, &fb_div, &ref_div); 1040 diff = abs(target_clock - (pll->reference_freq * fb_div) / 1041 (ref_div * post_div)); 1042 1043 if (diff < diff_best || (diff == diff_best && 1044 !(pll->flags & RADEON_PLL_PREFER_MINM_OVER_MAXP))) { 1045 1046 post_div_best = post_div; 1047 diff_best = diff; 1048 } 1049 } 1050 post_div = post_div_best; 1051 1052 /* get the feedback and reference divider for the optimal value */ 1053 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max, ref_div_max, 1054 &fb_div, &ref_div); 1055 1056 /* reduce the numbers to a simpler ratio once more */ 1057 /* this also makes sure that the reference divider is large enough */ 1058 avivo_reduce_ratio(&fb_div, &ref_div, fb_div_min, ref_div_min); 1059 1060 /* avoid high jitter with small fractional dividers */ 1061 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV && (fb_div % 10)) { 1062 fb_div_min = max(fb_div_min, (9 - (fb_div % 10)) * 20 + 50); 1063 if (fb_div < fb_div_min) { 1064 unsigned tmp = DIV_ROUND_UP(fb_div_min, fb_div); 1065 fb_div *= tmp; 1066 ref_div *= tmp; 1067 } 1068 } 1069 1070 /* and finally save the result */ 1071 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { 1072 *fb_div_p = fb_div / 10; 1073 *frac_fb_div_p = fb_div % 10; 1074 } else { 1075 *fb_div_p = fb_div; 1076 *frac_fb_div_p = 0; 1077 } 1078 1079 *dot_clock_p = ((pll->reference_freq * *fb_div_p * 10) + 1080 (pll->reference_freq * *frac_fb_div_p)) / 1081 (ref_div * post_div * 10); 1082 *ref_div_p = ref_div; 1083 *post_div_p = post_div; 1084 1085 DRM_DEBUG_KMS("%d - %d, pll dividers - fb: %d.%d ref: %d, post %d\n", 1086 freq, *dot_clock_p * 10, *fb_div_p, *frac_fb_div_p, 1087 ref_div, post_div); 1088 } 1089 1090 /* pre-avivo */ 1091 static inline uint32_t radeon_div(uint64_t n, uint32_t d) 1092 { 1093 uint64_t mod; 1094 1095 n += d / 2; 1096 1097 mod = do_div(n, d); 1098 return n; 1099 } 1100 1101 void radeon_compute_pll_legacy(struct radeon_pll *pll, 1102 uint64_t freq, 1103 uint32_t *dot_clock_p, 1104 uint32_t *fb_div_p, 1105 uint32_t *frac_fb_div_p, 1106 uint32_t *ref_div_p, 1107 uint32_t *post_div_p) 1108 { 1109 uint32_t min_ref_div = pll->min_ref_div; 1110 uint32_t max_ref_div = pll->max_ref_div; 1111 uint32_t min_post_div = pll->min_post_div; 1112 uint32_t max_post_div = pll->max_post_div; 1113 uint32_t min_fractional_feed_div = 0; 1114 uint32_t max_fractional_feed_div = 0; 1115 uint32_t best_vco = pll->best_vco; 1116 uint32_t best_post_div = 1; 1117 uint32_t best_ref_div = 1; 1118 uint32_t best_feedback_div = 1; 1119 uint32_t best_frac_feedback_div = 0; 1120 uint32_t best_freq = -1; 1121 uint32_t best_error = 0xffffffff; 1122 uint32_t best_vco_diff = 1; 1123 uint32_t post_div; 1124 u32 pll_out_min, pll_out_max; 1125 1126 DRM_DEBUG_KMS("PLL freq %llu %u %u\n", freq, pll->min_ref_div, pll->max_ref_div); 1127 freq = freq * 1000; 1128 1129 if (pll->flags & RADEON_PLL_IS_LCD) { 1130 pll_out_min = pll->lcd_pll_out_min; 1131 pll_out_max = pll->lcd_pll_out_max; 1132 } else { 1133 pll_out_min = pll->pll_out_min; 1134 pll_out_max = pll->pll_out_max; 1135 } 1136 1137 if (pll_out_min > 64800) 1138 pll_out_min = 64800; 1139 1140 if (pll->flags & RADEON_PLL_USE_REF_DIV) 1141 min_ref_div = max_ref_div = pll->reference_div; 1142 else { 1143 while (min_ref_div < max_ref_div-1) { 1144 uint32_t mid = (min_ref_div + max_ref_div) / 2; 1145 uint32_t pll_in = pll->reference_freq / mid; 1146 if (pll_in < pll->pll_in_min) 1147 max_ref_div = mid; 1148 else if (pll_in > pll->pll_in_max) 1149 min_ref_div = mid; 1150 else 1151 break; 1152 } 1153 } 1154 1155 if (pll->flags & RADEON_PLL_USE_POST_DIV) 1156 min_post_div = max_post_div = pll->post_div; 1157 1158 if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV) { 1159 min_fractional_feed_div = pll->min_frac_feedback_div; 1160 max_fractional_feed_div = pll->max_frac_feedback_div; 1161 } 1162 1163 for (post_div = max_post_div; post_div >= min_post_div; --post_div) { 1164 uint32_t ref_div; 1165 1166 if ((pll->flags & RADEON_PLL_NO_ODD_POST_DIV) && (post_div & 1)) 1167 continue; 1168 1169 /* legacy radeons only have a few post_divs */ 1170 if (pll->flags & RADEON_PLL_LEGACY) { 1171 if ((post_div == 5) || 1172 (post_div == 7) || 1173 (post_div == 9) || 1174 (post_div == 10) || 1175 (post_div == 11) || 1176 (post_div == 13) || 1177 (post_div == 14) || 1178 (post_div == 15)) 1179 continue; 1180 } 1181 1182 for (ref_div = min_ref_div; ref_div <= max_ref_div; ++ref_div) { 1183 uint32_t feedback_div, current_freq = 0, error, vco_diff; 1184 uint32_t pll_in = pll->reference_freq / ref_div; 1185 uint32_t min_feed_div = pll->min_feedback_div; 1186 uint32_t max_feed_div = pll->max_feedback_div + 1; 1187 1188 if (pll_in < pll->pll_in_min || pll_in > pll->pll_in_max) 1189 continue; 1190 1191 while (min_feed_div < max_feed_div) { 1192 uint32_t vco; 1193 uint32_t min_frac_feed_div = min_fractional_feed_div; 1194 uint32_t max_frac_feed_div = max_fractional_feed_div + 1; 1195 uint32_t frac_feedback_div; 1196 uint64_t tmp; 1197 1198 feedback_div = (min_feed_div + max_feed_div) / 2; 1199 1200 tmp = (uint64_t)pll->reference_freq * feedback_div; 1201 vco = radeon_div(tmp, ref_div); 1202 1203 if (vco < pll_out_min) { 1204 min_feed_div = feedback_div + 1; 1205 continue; 1206 } else if (vco > pll_out_max) { 1207 max_feed_div = feedback_div; 1208 continue; 1209 } 1210 1211 while (min_frac_feed_div < max_frac_feed_div) { 1212 frac_feedback_div = (min_frac_feed_div + max_frac_feed_div) / 2; 1213 tmp = (uint64_t)pll->reference_freq * 10000 * feedback_div; 1214 tmp += (uint64_t)pll->reference_freq * 1000 * frac_feedback_div; 1215 current_freq = radeon_div(tmp, ref_div * post_div); 1216 1217 if (pll->flags & RADEON_PLL_PREFER_CLOSEST_LOWER) { 1218 if (freq < current_freq) 1219 error = 0xffffffff; 1220 else 1221 error = freq - current_freq; 1222 } else 1223 error = abs(current_freq - freq); 1224 vco_diff = abs(vco - best_vco); 1225 1226 if ((best_vco == 0 && error < best_error) || 1227 (best_vco != 0 && 1228 ((best_error > 100 && error < best_error - 100) || 1229 (abs(error - best_error) < 100 && vco_diff < best_vco_diff)))) { 1230 best_post_div = post_div; 1231 best_ref_div = ref_div; 1232 best_feedback_div = feedback_div; 1233 best_frac_feedback_div = frac_feedback_div; 1234 best_freq = current_freq; 1235 best_error = error; 1236 best_vco_diff = vco_diff; 1237 } else if (current_freq == freq) { 1238 if (best_freq == -1) { 1239 best_post_div = post_div; 1240 best_ref_div = ref_div; 1241 best_feedback_div = feedback_div; 1242 best_frac_feedback_div = frac_feedback_div; 1243 best_freq = current_freq; 1244 best_error = error; 1245 best_vco_diff = vco_diff; 1246 } else if (((pll->flags & RADEON_PLL_PREFER_LOW_REF_DIV) && (ref_div < best_ref_div)) || 1247 ((pll->flags & RADEON_PLL_PREFER_HIGH_REF_DIV) && (ref_div > best_ref_div)) || 1248 ((pll->flags & RADEON_PLL_PREFER_LOW_FB_DIV) && (feedback_div < best_feedback_div)) || 1249 ((pll->flags & RADEON_PLL_PREFER_HIGH_FB_DIV) && (feedback_div > best_feedback_div)) || 1250 ((pll->flags & RADEON_PLL_PREFER_LOW_POST_DIV) && (post_div < best_post_div)) || 1251 ((pll->flags & RADEON_PLL_PREFER_HIGH_POST_DIV) && (post_div > best_post_div))) { 1252 best_post_div = post_div; 1253 best_ref_div = ref_div; 1254 best_feedback_div = feedback_div; 1255 best_frac_feedback_div = frac_feedback_div; 1256 best_freq = current_freq; 1257 best_error = error; 1258 best_vco_diff = vco_diff; 1259 } 1260 } 1261 if (current_freq < freq) 1262 min_frac_feed_div = frac_feedback_div + 1; 1263 else 1264 max_frac_feed_div = frac_feedback_div; 1265 } 1266 if (current_freq < freq) 1267 min_feed_div = feedback_div + 1; 1268 else 1269 max_feed_div = feedback_div; 1270 } 1271 } 1272 } 1273 1274 *dot_clock_p = best_freq / 10000; 1275 *fb_div_p = best_feedback_div; 1276 *frac_fb_div_p = best_frac_feedback_div; 1277 *ref_div_p = best_ref_div; 1278 *post_div_p = best_post_div; 1279 DRM_DEBUG_KMS("%lld %d, pll dividers - fb: %d.%d ref: %d, post %d\n", 1280 (long long)freq, 1281 best_freq / 1000, best_feedback_div, best_frac_feedback_div, 1282 best_ref_div, best_post_div); 1283 1284 } 1285 1286 static const struct drm_framebuffer_funcs radeon_fb_funcs = { 1287 .destroy = drm_gem_fb_destroy, 1288 .create_handle = drm_gem_fb_create_handle, 1289 }; 1290 1291 int 1292 radeon_framebuffer_init(struct drm_device *dev, 1293 struct drm_framebuffer *fb, 1294 const struct drm_mode_fb_cmd2 *mode_cmd, 1295 struct drm_gem_object *obj) 1296 { 1297 int ret; 1298 fb->obj[0] = obj; 1299 drm_helper_mode_fill_fb_struct(dev, fb, mode_cmd); 1300 ret = drm_framebuffer_init(dev, fb, &radeon_fb_funcs); 1301 if (ret) { 1302 fb->obj[0] = NULL; 1303 return ret; 1304 } 1305 return 0; 1306 } 1307 1308 static struct drm_framebuffer * 1309 radeon_user_framebuffer_create(struct drm_device *dev, 1310 struct drm_file *file_priv, 1311 const struct drm_mode_fb_cmd2 *mode_cmd) 1312 { 1313 struct drm_gem_object *obj; 1314 struct drm_framebuffer *fb; 1315 int ret; 1316 1317 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]); 1318 if (obj == NULL) { 1319 dev_err(&dev->pdev->dev, "No GEM object associated to handle 0x%08X, " 1320 "can't create framebuffer\n", mode_cmd->handles[0]); 1321 return ERR_PTR(-ENOENT); 1322 } 1323 1324 /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */ 1325 if (obj->import_attach) { 1326 DRM_DEBUG_KMS("Cannot create framebuffer from imported dma_buf\n"); 1327 return ERR_PTR(-EINVAL); 1328 } 1329 1330 fb = kzalloc(sizeof(*fb), GFP_KERNEL); 1331 if (fb == NULL) { 1332 drm_gem_object_put_unlocked(obj); 1333 return ERR_PTR(-ENOMEM); 1334 } 1335 1336 ret = radeon_framebuffer_init(dev, fb, mode_cmd, obj); 1337 if (ret) { 1338 kfree(fb); 1339 drm_gem_object_put_unlocked(obj); 1340 return ERR_PTR(ret); 1341 } 1342 1343 return fb; 1344 } 1345 1346 static const struct drm_mode_config_funcs radeon_mode_funcs = { 1347 .fb_create = radeon_user_framebuffer_create, 1348 .output_poll_changed = drm_fb_helper_output_poll_changed, 1349 }; 1350 1351 static const struct drm_prop_enum_list radeon_tmds_pll_enum_list[] = 1352 { { 0, "driver" }, 1353 { 1, "bios" }, 1354 }; 1355 1356 static const struct drm_prop_enum_list radeon_tv_std_enum_list[] = 1357 { { TV_STD_NTSC, "ntsc" }, 1358 { TV_STD_PAL, "pal" }, 1359 { TV_STD_PAL_M, "pal-m" }, 1360 { TV_STD_PAL_60, "pal-60" }, 1361 { TV_STD_NTSC_J, "ntsc-j" }, 1362 { TV_STD_SCART_PAL, "scart-pal" }, 1363 { TV_STD_PAL_CN, "pal-cn" }, 1364 { TV_STD_SECAM, "secam" }, 1365 }; 1366 1367 static const struct drm_prop_enum_list radeon_underscan_enum_list[] = 1368 { { UNDERSCAN_OFF, "off" }, 1369 { UNDERSCAN_ON, "on" }, 1370 { UNDERSCAN_AUTO, "auto" }, 1371 }; 1372 1373 static const struct drm_prop_enum_list radeon_audio_enum_list[] = 1374 { { RADEON_AUDIO_DISABLE, "off" }, 1375 { RADEON_AUDIO_ENABLE, "on" }, 1376 { RADEON_AUDIO_AUTO, "auto" }, 1377 }; 1378 1379 /* XXX support different dither options? spatial, temporal, both, etc. */ 1380 static const struct drm_prop_enum_list radeon_dither_enum_list[] = 1381 { { RADEON_FMT_DITHER_DISABLE, "off" }, 1382 { RADEON_FMT_DITHER_ENABLE, "on" }, 1383 }; 1384 1385 static const struct drm_prop_enum_list radeon_output_csc_enum_list[] = 1386 { { RADEON_OUTPUT_CSC_BYPASS, "bypass" }, 1387 { RADEON_OUTPUT_CSC_TVRGB, "tvrgb" }, 1388 { RADEON_OUTPUT_CSC_YCBCR601, "ycbcr601" }, 1389 { RADEON_OUTPUT_CSC_YCBCR709, "ycbcr709" }, 1390 }; 1391 1392 static int radeon_modeset_create_props(struct radeon_device *rdev) 1393 { 1394 int sz; 1395 1396 if (rdev->is_atom_bios) { 1397 rdev->mode_info.coherent_mode_property = 1398 drm_property_create_range(rdev->ddev, 0 , "coherent", 0, 1); 1399 if (!rdev->mode_info.coherent_mode_property) 1400 return -ENOMEM; 1401 } 1402 1403 if (!ASIC_IS_AVIVO(rdev)) { 1404 sz = ARRAY_SIZE(radeon_tmds_pll_enum_list); 1405 rdev->mode_info.tmds_pll_property = 1406 drm_property_create_enum(rdev->ddev, 0, 1407 "tmds_pll", 1408 radeon_tmds_pll_enum_list, sz); 1409 } 1410 1411 rdev->mode_info.load_detect_property = 1412 drm_property_create_range(rdev->ddev, 0, "load detection", 0, 1); 1413 if (!rdev->mode_info.load_detect_property) 1414 return -ENOMEM; 1415 1416 drm_mode_create_scaling_mode_property(rdev->ddev); 1417 1418 sz = ARRAY_SIZE(radeon_tv_std_enum_list); 1419 rdev->mode_info.tv_std_property = 1420 drm_property_create_enum(rdev->ddev, 0, 1421 "tv standard", 1422 radeon_tv_std_enum_list, sz); 1423 1424 sz = ARRAY_SIZE(radeon_underscan_enum_list); 1425 rdev->mode_info.underscan_property = 1426 drm_property_create_enum(rdev->ddev, 0, 1427 "underscan", 1428 radeon_underscan_enum_list, sz); 1429 1430 rdev->mode_info.underscan_hborder_property = 1431 drm_property_create_range(rdev->ddev, 0, 1432 "underscan hborder", 0, 128); 1433 if (!rdev->mode_info.underscan_hborder_property) 1434 return -ENOMEM; 1435 1436 rdev->mode_info.underscan_vborder_property = 1437 drm_property_create_range(rdev->ddev, 0, 1438 "underscan vborder", 0, 128); 1439 if (!rdev->mode_info.underscan_vborder_property) 1440 return -ENOMEM; 1441 1442 sz = ARRAY_SIZE(radeon_audio_enum_list); 1443 rdev->mode_info.audio_property = 1444 drm_property_create_enum(rdev->ddev, 0, 1445 "audio", 1446 radeon_audio_enum_list, sz); 1447 1448 sz = ARRAY_SIZE(radeon_dither_enum_list); 1449 rdev->mode_info.dither_property = 1450 drm_property_create_enum(rdev->ddev, 0, 1451 "dither", 1452 radeon_dither_enum_list, sz); 1453 1454 sz = ARRAY_SIZE(radeon_output_csc_enum_list); 1455 rdev->mode_info.output_csc_property = 1456 drm_property_create_enum(rdev->ddev, 0, 1457 "output_csc", 1458 radeon_output_csc_enum_list, sz); 1459 1460 return 0; 1461 } 1462 1463 void radeon_update_display_priority(struct radeon_device *rdev) 1464 { 1465 /* adjustment options for the display watermarks */ 1466 if ((radeon_disp_priority == 0) || (radeon_disp_priority > 2)) { 1467 /* set display priority to high for r3xx, rv515 chips 1468 * this avoids flickering due to underflow to the 1469 * display controllers during heavy acceleration. 1470 * Don't force high on rs4xx igp chips as it seems to 1471 * affect the sound card. See kernel bug 15982. 1472 */ 1473 if ((ASIC_IS_R300(rdev) || (rdev->family == CHIP_RV515)) && 1474 !(rdev->flags & RADEON_IS_IGP)) 1475 rdev->disp_priority = 2; 1476 else 1477 rdev->disp_priority = 0; 1478 } else 1479 rdev->disp_priority = radeon_disp_priority; 1480 1481 } 1482 1483 /* 1484 * Allocate hdmi structs and determine register offsets 1485 */ 1486 static void radeon_afmt_init(struct radeon_device *rdev) 1487 { 1488 int i; 1489 1490 for (i = 0; i < RADEON_MAX_AFMT_BLOCKS; i++) 1491 rdev->mode_info.afmt[i] = NULL; 1492 1493 if (ASIC_IS_NODCE(rdev)) { 1494 /* nothing to do */ 1495 } else if (ASIC_IS_DCE4(rdev)) { 1496 static uint32_t eg_offsets[] = { 1497 EVERGREEN_CRTC0_REGISTER_OFFSET, 1498 EVERGREEN_CRTC1_REGISTER_OFFSET, 1499 EVERGREEN_CRTC2_REGISTER_OFFSET, 1500 EVERGREEN_CRTC3_REGISTER_OFFSET, 1501 EVERGREEN_CRTC4_REGISTER_OFFSET, 1502 EVERGREEN_CRTC5_REGISTER_OFFSET, 1503 0x13830 - 0x7030, 1504 }; 1505 int num_afmt; 1506 1507 /* DCE8 has 7 audio blocks tied to DIG encoders */ 1508 /* DCE6 has 6 audio blocks tied to DIG encoders */ 1509 /* DCE4/5 has 6 audio blocks tied to DIG encoders */ 1510 /* DCE4.1 has 2 audio blocks tied to DIG encoders */ 1511 if (ASIC_IS_DCE8(rdev)) 1512 num_afmt = 7; 1513 else if (ASIC_IS_DCE6(rdev)) 1514 num_afmt = 6; 1515 else if (ASIC_IS_DCE5(rdev)) 1516 num_afmt = 6; 1517 else if (ASIC_IS_DCE41(rdev)) 1518 num_afmt = 2; 1519 else /* DCE4 */ 1520 num_afmt = 6; 1521 1522 BUG_ON(num_afmt > ARRAY_SIZE(eg_offsets)); 1523 for (i = 0; i < num_afmt; i++) { 1524 rdev->mode_info.afmt[i] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); 1525 if (rdev->mode_info.afmt[i]) { 1526 rdev->mode_info.afmt[i]->offset = eg_offsets[i]; 1527 rdev->mode_info.afmt[i]->id = i; 1528 } 1529 } 1530 } else if (ASIC_IS_DCE3(rdev)) { 1531 /* DCE3.x has 2 audio blocks tied to DIG encoders */ 1532 rdev->mode_info.afmt[0] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); 1533 if (rdev->mode_info.afmt[0]) { 1534 rdev->mode_info.afmt[0]->offset = DCE3_HDMI_OFFSET0; 1535 rdev->mode_info.afmt[0]->id = 0; 1536 } 1537 rdev->mode_info.afmt[1] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); 1538 if (rdev->mode_info.afmt[1]) { 1539 rdev->mode_info.afmt[1]->offset = DCE3_HDMI_OFFSET1; 1540 rdev->mode_info.afmt[1]->id = 1; 1541 } 1542 } else if (ASIC_IS_DCE2(rdev)) { 1543 /* DCE2 has at least 1 routable audio block */ 1544 rdev->mode_info.afmt[0] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); 1545 if (rdev->mode_info.afmt[0]) { 1546 rdev->mode_info.afmt[0]->offset = DCE2_HDMI_OFFSET0; 1547 rdev->mode_info.afmt[0]->id = 0; 1548 } 1549 /* r6xx has 2 routable audio blocks */ 1550 if (rdev->family >= CHIP_R600) { 1551 rdev->mode_info.afmt[1] = kzalloc(sizeof(struct radeon_afmt), GFP_KERNEL); 1552 if (rdev->mode_info.afmt[1]) { 1553 rdev->mode_info.afmt[1]->offset = DCE2_HDMI_OFFSET1; 1554 rdev->mode_info.afmt[1]->id = 1; 1555 } 1556 } 1557 } 1558 } 1559 1560 static void radeon_afmt_fini(struct radeon_device *rdev) 1561 { 1562 int i; 1563 1564 for (i = 0; i < RADEON_MAX_AFMT_BLOCKS; i++) { 1565 kfree(rdev->mode_info.afmt[i]); 1566 rdev->mode_info.afmt[i] = NULL; 1567 } 1568 } 1569 1570 int radeon_modeset_init(struct radeon_device *rdev) 1571 { 1572 int i; 1573 int ret; 1574 1575 drm_mode_config_init(rdev->ddev); 1576 rdev->mode_info.mode_config_initialized = true; 1577 1578 rdev->ddev->mode_config.funcs = &radeon_mode_funcs; 1579 1580 if (radeon_use_pflipirq == 2 && rdev->family >= CHIP_R600) 1581 rdev->ddev->mode_config.async_page_flip = true; 1582 1583 if (ASIC_IS_DCE5(rdev)) { 1584 rdev->ddev->mode_config.max_width = 16384; 1585 rdev->ddev->mode_config.max_height = 16384; 1586 } else if (ASIC_IS_AVIVO(rdev)) { 1587 rdev->ddev->mode_config.max_width = 8192; 1588 rdev->ddev->mode_config.max_height = 8192; 1589 } else { 1590 rdev->ddev->mode_config.max_width = 4096; 1591 rdev->ddev->mode_config.max_height = 4096; 1592 } 1593 1594 rdev->ddev->mode_config.preferred_depth = 24; 1595 rdev->ddev->mode_config.prefer_shadow = 1; 1596 1597 rdev->ddev->mode_config.fb_base = rdev->mc.aper_base; 1598 1599 ret = radeon_modeset_create_props(rdev); 1600 if (ret) { 1601 return ret; 1602 } 1603 1604 /* init i2c buses */ 1605 radeon_i2c_init(rdev); 1606 1607 /* check combios for a valid hardcoded EDID - Sun servers */ 1608 if (!rdev->is_atom_bios) { 1609 /* check for hardcoded EDID in BIOS */ 1610 radeon_combios_check_hardcoded_edid(rdev); 1611 } 1612 1613 /* allocate crtcs */ 1614 for (i = 0; i < rdev->num_crtc; i++) { 1615 radeon_crtc_init(rdev->ddev, i); 1616 } 1617 1618 /* okay we should have all the bios connectors */ 1619 ret = radeon_setup_enc_conn(rdev->ddev); 1620 if (!ret) { 1621 return ret; 1622 } 1623 1624 /* init dig PHYs, disp eng pll */ 1625 if (rdev->is_atom_bios) { 1626 radeon_atom_encoder_init(rdev); 1627 radeon_atom_disp_eng_pll_init(rdev); 1628 } 1629 1630 /* initialize hpd */ 1631 radeon_hpd_init(rdev); 1632 1633 /* setup afmt */ 1634 radeon_afmt_init(rdev); 1635 1636 radeon_fbdev_init(rdev); 1637 drm_kms_helper_poll_init(rdev->ddev); 1638 1639 /* do pm late init */ 1640 ret = radeon_pm_late_init(rdev); 1641 1642 return 0; 1643 } 1644 1645 void radeon_modeset_fini(struct radeon_device *rdev) 1646 { 1647 if (rdev->mode_info.mode_config_initialized) { 1648 drm_kms_helper_poll_fini(rdev->ddev); 1649 radeon_hpd_fini(rdev); 1650 drm_helper_force_disable_all(rdev->ddev); 1651 radeon_fbdev_fini(rdev); 1652 radeon_afmt_fini(rdev); 1653 drm_mode_config_cleanup(rdev->ddev); 1654 rdev->mode_info.mode_config_initialized = false; 1655 } 1656 1657 kfree(rdev->mode_info.bios_hardcoded_edid); 1658 1659 /* free i2c buses */ 1660 radeon_i2c_fini(rdev); 1661 } 1662 1663 static bool is_hdtv_mode(const struct drm_display_mode *mode) 1664 { 1665 /* try and guess if this is a tv or a monitor */ 1666 if ((mode->vdisplay == 480 && mode->hdisplay == 720) || /* 480p */ 1667 (mode->vdisplay == 576) || /* 576p */ 1668 (mode->vdisplay == 720) || /* 720p */ 1669 (mode->vdisplay == 1080)) /* 1080p */ 1670 return true; 1671 else 1672 return false; 1673 } 1674 1675 bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc, 1676 const struct drm_display_mode *mode, 1677 struct drm_display_mode *adjusted_mode) 1678 { 1679 struct drm_device *dev = crtc->dev; 1680 struct radeon_device *rdev = dev->dev_private; 1681 struct drm_encoder *encoder; 1682 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 1683 struct radeon_encoder *radeon_encoder; 1684 struct drm_connector *connector; 1685 bool first = true; 1686 u32 src_v = 1, dst_v = 1; 1687 u32 src_h = 1, dst_h = 1; 1688 1689 radeon_crtc->h_border = 0; 1690 radeon_crtc->v_border = 0; 1691 1692 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { 1693 if (encoder->crtc != crtc) 1694 continue; 1695 radeon_encoder = to_radeon_encoder(encoder); 1696 connector = radeon_get_connector_for_encoder(encoder); 1697 1698 if (first) { 1699 /* set scaling */ 1700 if (radeon_encoder->rmx_type == RMX_OFF) 1701 radeon_crtc->rmx_type = RMX_OFF; 1702 else if (mode->hdisplay < radeon_encoder->native_mode.hdisplay || 1703 mode->vdisplay < radeon_encoder->native_mode.vdisplay) 1704 radeon_crtc->rmx_type = radeon_encoder->rmx_type; 1705 else 1706 radeon_crtc->rmx_type = RMX_OFF; 1707 /* copy native mode */ 1708 memcpy(&radeon_crtc->native_mode, 1709 &radeon_encoder->native_mode, 1710 sizeof(struct drm_display_mode)); 1711 src_v = crtc->mode.vdisplay; 1712 dst_v = radeon_crtc->native_mode.vdisplay; 1713 src_h = crtc->mode.hdisplay; 1714 dst_h = radeon_crtc->native_mode.hdisplay; 1715 1716 /* fix up for overscan on hdmi */ 1717 if (ASIC_IS_AVIVO(rdev) && 1718 (!(mode->flags & DRM_MODE_FLAG_INTERLACE)) && 1719 ((radeon_encoder->underscan_type == UNDERSCAN_ON) || 1720 ((radeon_encoder->underscan_type == UNDERSCAN_AUTO) && 1721 drm_detect_hdmi_monitor(radeon_connector_edid(connector)) && 1722 is_hdtv_mode(mode)))) { 1723 if (radeon_encoder->underscan_hborder != 0) 1724 radeon_crtc->h_border = radeon_encoder->underscan_hborder; 1725 else 1726 radeon_crtc->h_border = (mode->hdisplay >> 5) + 16; 1727 if (radeon_encoder->underscan_vborder != 0) 1728 radeon_crtc->v_border = radeon_encoder->underscan_vborder; 1729 else 1730 radeon_crtc->v_border = (mode->vdisplay >> 5) + 16; 1731 radeon_crtc->rmx_type = RMX_FULL; 1732 src_v = crtc->mode.vdisplay; 1733 dst_v = crtc->mode.vdisplay - (radeon_crtc->v_border * 2); 1734 src_h = crtc->mode.hdisplay; 1735 dst_h = crtc->mode.hdisplay - (radeon_crtc->h_border * 2); 1736 } 1737 first = false; 1738 } else { 1739 if (radeon_crtc->rmx_type != radeon_encoder->rmx_type) { 1740 /* WARNING: Right now this can't happen but 1741 * in the future we need to check that scaling 1742 * are consistent across different encoder 1743 * (ie all encoder can work with the same 1744 * scaling). 1745 */ 1746 DRM_ERROR("Scaling not consistent across encoder.\n"); 1747 return false; 1748 } 1749 } 1750 } 1751 if (radeon_crtc->rmx_type != RMX_OFF) { 1752 fixed20_12 a, b; 1753 a.full = dfixed_const(src_v); 1754 b.full = dfixed_const(dst_v); 1755 radeon_crtc->vsc.full = dfixed_div(a, b); 1756 a.full = dfixed_const(src_h); 1757 b.full = dfixed_const(dst_h); 1758 radeon_crtc->hsc.full = dfixed_div(a, b); 1759 } else { 1760 radeon_crtc->vsc.full = dfixed_const(1); 1761 radeon_crtc->hsc.full = dfixed_const(1); 1762 } 1763 return true; 1764 } 1765 1766 /* 1767 * Retrieve current video scanout position of crtc on a given gpu, and 1768 * an optional accurate timestamp of when query happened. 1769 * 1770 * \param dev Device to query. 1771 * \param crtc Crtc to query. 1772 * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0). 1773 * For driver internal use only also supports these flags: 1774 * 1775 * USE_REAL_VBLANKSTART to use the real start of vblank instead 1776 * of a fudged earlier start of vblank. 1777 * 1778 * GET_DISTANCE_TO_VBLANKSTART to return distance to the 1779 * fudged earlier start of vblank in *vpos and the distance 1780 * to true start of vblank in *hpos. 1781 * 1782 * \param *vpos Location where vertical scanout position should be stored. 1783 * \param *hpos Location where horizontal scanout position should go. 1784 * \param *stime Target location for timestamp taken immediately before 1785 * scanout position query. Can be NULL to skip timestamp. 1786 * \param *etime Target location for timestamp taken immediately after 1787 * scanout position query. Can be NULL to skip timestamp. 1788 * 1789 * Returns vpos as a positive number while in active scanout area. 1790 * Returns vpos as a negative number inside vblank, counting the number 1791 * of scanlines to go until end of vblank, e.g., -1 means "one scanline 1792 * until start of active scanout / end of vblank." 1793 * 1794 * \return Flags, or'ed together as follows: 1795 * 1796 * DRM_SCANOUTPOS_VALID = Query successful. 1797 * DRM_SCANOUTPOS_INVBL = Inside vblank. 1798 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of 1799 * this flag means that returned position may be offset by a constant but 1800 * unknown small number of scanlines wrt. real scanout position. 1801 * 1802 */ 1803 int radeon_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe, 1804 unsigned int flags, int *vpos, int *hpos, 1805 ktime_t *stime, ktime_t *etime, 1806 const struct drm_display_mode *mode) 1807 { 1808 u32 stat_crtc = 0, vbl = 0, position = 0; 1809 int vbl_start, vbl_end, vtotal, ret = 0; 1810 bool in_vbl = true; 1811 1812 struct radeon_device *rdev = dev->dev_private; 1813 1814 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */ 1815 1816 /* Get optional system timestamp before query. */ 1817 if (stime) 1818 *stime = ktime_get(); 1819 1820 if (ASIC_IS_DCE4(rdev)) { 1821 if (pipe == 0) { 1822 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + 1823 EVERGREEN_CRTC0_REGISTER_OFFSET); 1824 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + 1825 EVERGREEN_CRTC0_REGISTER_OFFSET); 1826 ret |= DRM_SCANOUTPOS_VALID; 1827 } 1828 if (pipe == 1) { 1829 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + 1830 EVERGREEN_CRTC1_REGISTER_OFFSET); 1831 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + 1832 EVERGREEN_CRTC1_REGISTER_OFFSET); 1833 ret |= DRM_SCANOUTPOS_VALID; 1834 } 1835 if (pipe == 2) { 1836 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + 1837 EVERGREEN_CRTC2_REGISTER_OFFSET); 1838 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + 1839 EVERGREEN_CRTC2_REGISTER_OFFSET); 1840 ret |= DRM_SCANOUTPOS_VALID; 1841 } 1842 if (pipe == 3) { 1843 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + 1844 EVERGREEN_CRTC3_REGISTER_OFFSET); 1845 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + 1846 EVERGREEN_CRTC3_REGISTER_OFFSET); 1847 ret |= DRM_SCANOUTPOS_VALID; 1848 } 1849 if (pipe == 4) { 1850 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + 1851 EVERGREEN_CRTC4_REGISTER_OFFSET); 1852 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + 1853 EVERGREEN_CRTC4_REGISTER_OFFSET); 1854 ret |= DRM_SCANOUTPOS_VALID; 1855 } 1856 if (pipe == 5) { 1857 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + 1858 EVERGREEN_CRTC5_REGISTER_OFFSET); 1859 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION + 1860 EVERGREEN_CRTC5_REGISTER_OFFSET); 1861 ret |= DRM_SCANOUTPOS_VALID; 1862 } 1863 } else if (ASIC_IS_AVIVO(rdev)) { 1864 if (pipe == 0) { 1865 vbl = RREG32(AVIVO_D1CRTC_V_BLANK_START_END); 1866 position = RREG32(AVIVO_D1CRTC_STATUS_POSITION); 1867 ret |= DRM_SCANOUTPOS_VALID; 1868 } 1869 if (pipe == 1) { 1870 vbl = RREG32(AVIVO_D2CRTC_V_BLANK_START_END); 1871 position = RREG32(AVIVO_D2CRTC_STATUS_POSITION); 1872 ret |= DRM_SCANOUTPOS_VALID; 1873 } 1874 } else { 1875 /* Pre-AVIVO: Different encoding of scanout pos and vblank interval. */ 1876 if (pipe == 0) { 1877 /* Assume vbl_end == 0, get vbl_start from 1878 * upper 16 bits. 1879 */ 1880 vbl = (RREG32(RADEON_CRTC_V_TOTAL_DISP) & 1881 RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT; 1882 /* Only retrieve vpos from upper 16 bits, set hpos == 0. */ 1883 position = (RREG32(RADEON_CRTC_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL; 1884 stat_crtc = RREG32(RADEON_CRTC_STATUS); 1885 if (!(stat_crtc & 1)) 1886 in_vbl = false; 1887 1888 ret |= DRM_SCANOUTPOS_VALID; 1889 } 1890 if (pipe == 1) { 1891 vbl = (RREG32(RADEON_CRTC2_V_TOTAL_DISP) & 1892 RADEON_CRTC_V_DISP) >> RADEON_CRTC_V_DISP_SHIFT; 1893 position = (RREG32(RADEON_CRTC2_VLINE_CRNT_VLINE) >> 16) & RADEON_CRTC_V_TOTAL; 1894 stat_crtc = RREG32(RADEON_CRTC2_STATUS); 1895 if (!(stat_crtc & 1)) 1896 in_vbl = false; 1897 1898 ret |= DRM_SCANOUTPOS_VALID; 1899 } 1900 } 1901 1902 /* Get optional system timestamp after query. */ 1903 if (etime) 1904 *etime = ktime_get(); 1905 1906 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */ 1907 1908 /* Decode into vertical and horizontal scanout position. */ 1909 *vpos = position & 0x1fff; 1910 *hpos = (position >> 16) & 0x1fff; 1911 1912 /* Valid vblank area boundaries from gpu retrieved? */ 1913 if (vbl > 0) { 1914 /* Yes: Decode. */ 1915 ret |= DRM_SCANOUTPOS_ACCURATE; 1916 vbl_start = vbl & 0x1fff; 1917 vbl_end = (vbl >> 16) & 0x1fff; 1918 } 1919 else { 1920 /* No: Fake something reasonable which gives at least ok results. */ 1921 vbl_start = mode->crtc_vdisplay; 1922 vbl_end = 0; 1923 } 1924 1925 /* Called from driver internal vblank counter query code? */ 1926 if (flags & GET_DISTANCE_TO_VBLANKSTART) { 1927 /* Caller wants distance from real vbl_start in *hpos */ 1928 *hpos = *vpos - vbl_start; 1929 } 1930 1931 /* Fudge vblank to start a few scanlines earlier to handle the 1932 * problem that vblank irqs fire a few scanlines before start 1933 * of vblank. Some driver internal callers need the true vblank 1934 * start to be used and signal this via the USE_REAL_VBLANKSTART flag. 1935 * 1936 * The cause of the "early" vblank irq is that the irq is triggered 1937 * by the line buffer logic when the line buffer read position enters 1938 * the vblank, whereas our crtc scanout position naturally lags the 1939 * line buffer read position. 1940 */ 1941 if (!(flags & USE_REAL_VBLANKSTART)) 1942 vbl_start -= rdev->mode_info.crtcs[pipe]->lb_vblank_lead_lines; 1943 1944 /* Test scanout position against vblank region. */ 1945 if ((*vpos < vbl_start) && (*vpos >= vbl_end)) 1946 in_vbl = false; 1947 1948 /* In vblank? */ 1949 if (in_vbl) 1950 ret |= DRM_SCANOUTPOS_IN_VBLANK; 1951 1952 /* Called from driver internal vblank counter query code? */ 1953 if (flags & GET_DISTANCE_TO_VBLANKSTART) { 1954 /* Caller wants distance from fudged earlier vbl_start */ 1955 *vpos -= vbl_start; 1956 return ret; 1957 } 1958 1959 /* Check if inside vblank area and apply corrective offsets: 1960 * vpos will then be >=0 in video scanout area, but negative 1961 * within vblank area, counting down the number of lines until 1962 * start of scanout. 1963 */ 1964 1965 /* Inside "upper part" of vblank area? Apply corrective offset if so: */ 1966 if (in_vbl && (*vpos >= vbl_start)) { 1967 vtotal = mode->crtc_vtotal; 1968 *vpos = *vpos - vtotal; 1969 } 1970 1971 /* Correct for shifted end of vbl at vbl_end. */ 1972 *vpos = *vpos - vbl_end; 1973 1974 return ret; 1975 } 1976