1 /* 2 * Copyright 2008 Advanced Micro Devices, Inc. 3 * Copyright 2008 Red Hat Inc. 4 * Copyright 2009 Jerome Glisse. 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 * OTHER DEALINGS IN THE SOFTWARE. 23 * 24 * Authors: Dave Airlie 25 * Alex Deucher 26 * Jerome Glisse 27 */ 28 29 #include <linux/pci.h> 30 #include <linux/pm_runtime.h> 31 #include <linux/slab.h> 32 #include <linux/uaccess.h> 33 #include <linux/vga_switcheroo.h> 34 35 #include <drm/drm_agpsupport.h> 36 #include <drm/drm_fb_helper.h> 37 #include <drm/drm_file.h> 38 #include <drm/drm_ioctl.h> 39 #include <drm/radeon_drm.h> 40 41 #include "radeon.h" 42 #include "radeon_asic.h" 43 #include "radeon_drv.h" 44 #include "radeon_kms.h" 45 46 #if defined(CONFIG_VGA_SWITCHEROO) 47 bool radeon_has_atpx(void); 48 #else 49 static inline bool radeon_has_atpx(void) { return false; } 50 #endif 51 52 /** 53 * radeon_driver_unload_kms - Main unload function for KMS. 54 * 55 * @dev: drm dev pointer 56 * 57 * This is the main unload function for KMS (all asics). 58 * It calls radeon_modeset_fini() to tear down the 59 * displays, and radeon_device_fini() to tear down 60 * the rest of the device (CP, writeback, etc.). 61 * Returns 0 on success. 62 */ 63 void radeon_driver_unload_kms(struct drm_device *dev) 64 { 65 struct radeon_device *rdev = dev->dev_private; 66 67 if (rdev == NULL) 68 return; 69 70 if (rdev->rmmio == NULL) 71 goto done_free; 72 73 if (radeon_is_px(dev)) { 74 pm_runtime_get_sync(dev->dev); 75 pm_runtime_forbid(dev->dev); 76 } 77 78 radeon_acpi_fini(rdev); 79 80 radeon_modeset_fini(rdev); 81 radeon_device_fini(rdev); 82 83 if (dev->agp) 84 arch_phys_wc_del(dev->agp->agp_mtrr); 85 kfree(dev->agp); 86 dev->agp = NULL; 87 88 done_free: 89 kfree(rdev); 90 dev->dev_private = NULL; 91 } 92 93 /** 94 * radeon_driver_load_kms - Main load function for KMS. 95 * 96 * @dev: drm dev pointer 97 * @flags: device flags 98 * 99 * This is the main load function for KMS (all asics). 100 * It calls radeon_device_init() to set up the non-display 101 * parts of the chip (asic init, CP, writeback, etc.), and 102 * radeon_modeset_init() to set up the display parts 103 * (crtcs, encoders, hotplug detect, etc.). 104 * Returns 0 on success, error on failure. 105 */ 106 int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags) 107 { 108 struct pci_dev *pdev = to_pci_dev(dev->dev); 109 struct radeon_device *rdev; 110 int r, acpi_status; 111 112 rdev = kzalloc(sizeof(struct radeon_device), GFP_KERNEL); 113 if (rdev == NULL) { 114 return -ENOMEM; 115 } 116 dev->dev_private = (void *)rdev; 117 118 #ifdef __alpha__ 119 rdev->hose = pdev->sysdata; 120 #endif 121 122 /* update BUS flag */ 123 if (pci_find_capability(pdev, PCI_CAP_ID_AGP)) { 124 flags |= RADEON_IS_AGP; 125 } else if (pci_is_pcie(pdev)) { 126 flags |= RADEON_IS_PCIE; 127 } else { 128 flags |= RADEON_IS_PCI; 129 } 130 131 if ((radeon_runtime_pm != 0) && 132 radeon_has_atpx() && 133 ((flags & RADEON_IS_IGP) == 0) && 134 !pci_is_thunderbolt_attached(pdev)) 135 flags |= RADEON_IS_PX; 136 137 /* radeon_device_init should report only fatal error 138 * like memory allocation failure or iomapping failure, 139 * or memory manager initialization failure, it must 140 * properly initialize the GPU MC controller and permit 141 * VRAM allocation 142 */ 143 r = radeon_device_init(rdev, dev, pdev, flags); 144 if (r) { 145 dev_err(dev->dev, "Fatal error during GPU init\n"); 146 goto out; 147 } 148 149 /* Again modeset_init should fail only on fatal error 150 * otherwise it should provide enough functionalities 151 * for shadowfb to run 152 */ 153 r = radeon_modeset_init(rdev); 154 if (r) 155 dev_err(dev->dev, "Fatal error during modeset init\n"); 156 157 /* Call ACPI methods: require modeset init 158 * but failure is not fatal 159 */ 160 if (!r) { 161 acpi_status = radeon_acpi_init(rdev); 162 if (acpi_status) 163 dev_dbg(dev->dev, "Error during ACPI methods call\n"); 164 } 165 166 if (radeon_is_px(dev)) { 167 dev_pm_set_driver_flags(dev->dev, DPM_FLAG_NO_DIRECT_COMPLETE); 168 pm_runtime_use_autosuspend(dev->dev); 169 pm_runtime_set_autosuspend_delay(dev->dev, 5000); 170 pm_runtime_set_active(dev->dev); 171 pm_runtime_allow(dev->dev); 172 pm_runtime_mark_last_busy(dev->dev); 173 pm_runtime_put_autosuspend(dev->dev); 174 } 175 176 out: 177 if (r) 178 radeon_driver_unload_kms(dev); 179 180 181 return r; 182 } 183 184 /** 185 * radeon_set_filp_rights - Set filp right. 186 * 187 * @dev: drm dev pointer 188 * @owner: drm file 189 * @applier: drm file 190 * @value: value 191 * 192 * Sets the filp rights for the device (all asics). 193 */ 194 static void radeon_set_filp_rights(struct drm_device *dev, 195 struct drm_file **owner, 196 struct drm_file *applier, 197 uint32_t *value) 198 { 199 struct radeon_device *rdev = dev->dev_private; 200 201 mutex_lock(&rdev->gem.mutex); 202 if (*value == 1) { 203 /* wants rights */ 204 if (!*owner) 205 *owner = applier; 206 } else if (*value == 0) { 207 /* revokes rights */ 208 if (*owner == applier) 209 *owner = NULL; 210 } 211 *value = *owner == applier ? 1 : 0; 212 mutex_unlock(&rdev->gem.mutex); 213 } 214 215 /* 216 * Userspace get information ioctl 217 */ 218 /** 219 * radeon_info_ioctl - answer a device specific request. 220 * 221 * @dev: drm device pointer 222 * @data: request object 223 * @filp: drm filp 224 * 225 * This function is used to pass device specific parameters to the userspace 226 * drivers. Examples include: pci device id, pipeline parms, tiling params, 227 * etc. (all asics). 228 * Returns 0 on success, -EINVAL on failure. 229 */ 230 int radeon_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) 231 { 232 struct radeon_device *rdev = dev->dev_private; 233 struct drm_radeon_info *info = data; 234 struct radeon_mode_info *minfo = &rdev->mode_info; 235 uint32_t *value, value_tmp, *value_ptr, value_size; 236 uint64_t value64; 237 struct drm_crtc *crtc; 238 int i, found; 239 240 value_ptr = (uint32_t *)((unsigned long)info->value); 241 value = &value_tmp; 242 value_size = sizeof(uint32_t); 243 244 switch (info->request) { 245 case RADEON_INFO_DEVICE_ID: 246 *value = to_pci_dev(dev->dev)->device; 247 break; 248 case RADEON_INFO_NUM_GB_PIPES: 249 *value = rdev->num_gb_pipes; 250 break; 251 case RADEON_INFO_NUM_Z_PIPES: 252 *value = rdev->num_z_pipes; 253 break; 254 case RADEON_INFO_ACCEL_WORKING: 255 /* xf86-video-ati 6.13.0 relies on this being false for evergreen */ 256 if ((rdev->family >= CHIP_CEDAR) && (rdev->family <= CHIP_HEMLOCK)) 257 *value = false; 258 else 259 *value = rdev->accel_working; 260 break; 261 case RADEON_INFO_CRTC_FROM_ID: 262 if (copy_from_user(value, value_ptr, sizeof(uint32_t))) { 263 DRM_ERROR("copy_from_user %s:%u\n", __func__, __LINE__); 264 return -EFAULT; 265 } 266 for (i = 0, found = 0; i < rdev->num_crtc; i++) { 267 crtc = (struct drm_crtc *)minfo->crtcs[i]; 268 if (crtc && crtc->base.id == *value) { 269 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); 270 *value = radeon_crtc->crtc_id; 271 found = 1; 272 break; 273 } 274 } 275 if (!found) { 276 DRM_DEBUG_KMS("unknown crtc id %d\n", *value); 277 return -EINVAL; 278 } 279 break; 280 case RADEON_INFO_ACCEL_WORKING2: 281 if (rdev->family == CHIP_HAWAII) { 282 if (rdev->accel_working) { 283 if (rdev->new_fw) 284 *value = 3; 285 else 286 *value = 2; 287 } else { 288 *value = 0; 289 } 290 } else { 291 *value = rdev->accel_working; 292 } 293 break; 294 case RADEON_INFO_TILING_CONFIG: 295 if (rdev->family >= CHIP_BONAIRE) 296 *value = rdev->config.cik.tile_config; 297 else if (rdev->family >= CHIP_TAHITI) 298 *value = rdev->config.si.tile_config; 299 else if (rdev->family >= CHIP_CAYMAN) 300 *value = rdev->config.cayman.tile_config; 301 else if (rdev->family >= CHIP_CEDAR) 302 *value = rdev->config.evergreen.tile_config; 303 else if (rdev->family >= CHIP_RV770) 304 *value = rdev->config.rv770.tile_config; 305 else if (rdev->family >= CHIP_R600) 306 *value = rdev->config.r600.tile_config; 307 else { 308 DRM_DEBUG_KMS("tiling config is r6xx+ only!\n"); 309 return -EINVAL; 310 } 311 break; 312 case RADEON_INFO_WANT_HYPERZ: 313 /* The "value" here is both an input and output parameter. 314 * If the input value is 1, filp requests hyper-z access. 315 * If the input value is 0, filp revokes its hyper-z access. 316 * 317 * When returning, the value is 1 if filp owns hyper-z access, 318 * 0 otherwise. */ 319 if (copy_from_user(value, value_ptr, sizeof(uint32_t))) { 320 DRM_ERROR("copy_from_user %s:%u\n", __func__, __LINE__); 321 return -EFAULT; 322 } 323 if (*value >= 2) { 324 DRM_DEBUG_KMS("WANT_HYPERZ: invalid value %d\n", *value); 325 return -EINVAL; 326 } 327 radeon_set_filp_rights(dev, &rdev->hyperz_filp, filp, value); 328 break; 329 case RADEON_INFO_WANT_CMASK: 330 /* The same logic as Hyper-Z. */ 331 if (copy_from_user(value, value_ptr, sizeof(uint32_t))) { 332 DRM_ERROR("copy_from_user %s:%u\n", __func__, __LINE__); 333 return -EFAULT; 334 } 335 if (*value >= 2) { 336 DRM_DEBUG_KMS("WANT_CMASK: invalid value %d\n", *value); 337 return -EINVAL; 338 } 339 radeon_set_filp_rights(dev, &rdev->cmask_filp, filp, value); 340 break; 341 case RADEON_INFO_CLOCK_CRYSTAL_FREQ: 342 /* return clock value in KHz */ 343 if (rdev->asic->get_xclk) 344 *value = radeon_get_xclk(rdev) * 10; 345 else 346 *value = rdev->clock.spll.reference_freq * 10; 347 break; 348 case RADEON_INFO_NUM_BACKENDS: 349 if (rdev->family >= CHIP_BONAIRE) 350 *value = rdev->config.cik.max_backends_per_se * 351 rdev->config.cik.max_shader_engines; 352 else if (rdev->family >= CHIP_TAHITI) 353 *value = rdev->config.si.max_backends_per_se * 354 rdev->config.si.max_shader_engines; 355 else if (rdev->family >= CHIP_CAYMAN) 356 *value = rdev->config.cayman.max_backends_per_se * 357 rdev->config.cayman.max_shader_engines; 358 else if (rdev->family >= CHIP_CEDAR) 359 *value = rdev->config.evergreen.max_backends; 360 else if (rdev->family >= CHIP_RV770) 361 *value = rdev->config.rv770.max_backends; 362 else if (rdev->family >= CHIP_R600) 363 *value = rdev->config.r600.max_backends; 364 else { 365 return -EINVAL; 366 } 367 break; 368 case RADEON_INFO_NUM_TILE_PIPES: 369 if (rdev->family >= CHIP_BONAIRE) 370 *value = rdev->config.cik.max_tile_pipes; 371 else if (rdev->family >= CHIP_TAHITI) 372 *value = rdev->config.si.max_tile_pipes; 373 else if (rdev->family >= CHIP_CAYMAN) 374 *value = rdev->config.cayman.max_tile_pipes; 375 else if (rdev->family >= CHIP_CEDAR) 376 *value = rdev->config.evergreen.max_tile_pipes; 377 else if (rdev->family >= CHIP_RV770) 378 *value = rdev->config.rv770.max_tile_pipes; 379 else if (rdev->family >= CHIP_R600) 380 *value = rdev->config.r600.max_tile_pipes; 381 else { 382 return -EINVAL; 383 } 384 break; 385 case RADEON_INFO_FUSION_GART_WORKING: 386 *value = 1; 387 break; 388 case RADEON_INFO_BACKEND_MAP: 389 if (rdev->family >= CHIP_BONAIRE) 390 *value = rdev->config.cik.backend_map; 391 else if (rdev->family >= CHIP_TAHITI) 392 *value = rdev->config.si.backend_map; 393 else if (rdev->family >= CHIP_CAYMAN) 394 *value = rdev->config.cayman.backend_map; 395 else if (rdev->family >= CHIP_CEDAR) 396 *value = rdev->config.evergreen.backend_map; 397 else if (rdev->family >= CHIP_RV770) 398 *value = rdev->config.rv770.backend_map; 399 else if (rdev->family >= CHIP_R600) 400 *value = rdev->config.r600.backend_map; 401 else { 402 return -EINVAL; 403 } 404 break; 405 case RADEON_INFO_VA_START: 406 /* this is where we report if vm is supported or not */ 407 if (rdev->family < CHIP_CAYMAN) 408 return -EINVAL; 409 *value = RADEON_VA_RESERVED_SIZE; 410 break; 411 case RADEON_INFO_IB_VM_MAX_SIZE: 412 /* this is where we report if vm is supported or not */ 413 if (rdev->family < CHIP_CAYMAN) 414 return -EINVAL; 415 *value = RADEON_IB_VM_MAX_SIZE; 416 break; 417 case RADEON_INFO_MAX_PIPES: 418 if (rdev->family >= CHIP_BONAIRE) 419 *value = rdev->config.cik.max_cu_per_sh; 420 else if (rdev->family >= CHIP_TAHITI) 421 *value = rdev->config.si.max_cu_per_sh; 422 else if (rdev->family >= CHIP_CAYMAN) 423 *value = rdev->config.cayman.max_pipes_per_simd; 424 else if (rdev->family >= CHIP_CEDAR) 425 *value = rdev->config.evergreen.max_pipes; 426 else if (rdev->family >= CHIP_RV770) 427 *value = rdev->config.rv770.max_pipes; 428 else if (rdev->family >= CHIP_R600) 429 *value = rdev->config.r600.max_pipes; 430 else { 431 return -EINVAL; 432 } 433 break; 434 case RADEON_INFO_TIMESTAMP: 435 if (rdev->family < CHIP_R600) { 436 DRM_DEBUG_KMS("timestamp is r6xx+ only!\n"); 437 return -EINVAL; 438 } 439 value = (uint32_t*)&value64; 440 value_size = sizeof(uint64_t); 441 value64 = radeon_get_gpu_clock_counter(rdev); 442 break; 443 case RADEON_INFO_MAX_SE: 444 if (rdev->family >= CHIP_BONAIRE) 445 *value = rdev->config.cik.max_shader_engines; 446 else if (rdev->family >= CHIP_TAHITI) 447 *value = rdev->config.si.max_shader_engines; 448 else if (rdev->family >= CHIP_CAYMAN) 449 *value = rdev->config.cayman.max_shader_engines; 450 else if (rdev->family >= CHIP_CEDAR) 451 *value = rdev->config.evergreen.num_ses; 452 else 453 *value = 1; 454 break; 455 case RADEON_INFO_MAX_SH_PER_SE: 456 if (rdev->family >= CHIP_BONAIRE) 457 *value = rdev->config.cik.max_sh_per_se; 458 else if (rdev->family >= CHIP_TAHITI) 459 *value = rdev->config.si.max_sh_per_se; 460 else 461 return -EINVAL; 462 break; 463 case RADEON_INFO_FASTFB_WORKING: 464 *value = rdev->fastfb_working; 465 break; 466 case RADEON_INFO_RING_WORKING: 467 if (copy_from_user(value, value_ptr, sizeof(uint32_t))) { 468 DRM_ERROR("copy_from_user %s:%u\n", __func__, __LINE__); 469 return -EFAULT; 470 } 471 switch (*value) { 472 case RADEON_CS_RING_GFX: 473 case RADEON_CS_RING_COMPUTE: 474 *value = rdev->ring[RADEON_RING_TYPE_GFX_INDEX].ready; 475 break; 476 case RADEON_CS_RING_DMA: 477 *value = rdev->ring[R600_RING_TYPE_DMA_INDEX].ready; 478 *value |= rdev->ring[CAYMAN_RING_TYPE_DMA1_INDEX].ready; 479 break; 480 case RADEON_CS_RING_UVD: 481 *value = rdev->ring[R600_RING_TYPE_UVD_INDEX].ready; 482 break; 483 case RADEON_CS_RING_VCE: 484 *value = rdev->ring[TN_RING_TYPE_VCE1_INDEX].ready; 485 break; 486 default: 487 return -EINVAL; 488 } 489 break; 490 case RADEON_INFO_SI_TILE_MODE_ARRAY: 491 if (rdev->family >= CHIP_BONAIRE) { 492 value = rdev->config.cik.tile_mode_array; 493 value_size = sizeof(uint32_t)*32; 494 } else if (rdev->family >= CHIP_TAHITI) { 495 value = rdev->config.si.tile_mode_array; 496 value_size = sizeof(uint32_t)*32; 497 } else { 498 DRM_DEBUG_KMS("tile mode array is si+ only!\n"); 499 return -EINVAL; 500 } 501 break; 502 case RADEON_INFO_CIK_MACROTILE_MODE_ARRAY: 503 if (rdev->family >= CHIP_BONAIRE) { 504 value = rdev->config.cik.macrotile_mode_array; 505 value_size = sizeof(uint32_t)*16; 506 } else { 507 DRM_DEBUG_KMS("macrotile mode array is cik+ only!\n"); 508 return -EINVAL; 509 } 510 break; 511 case RADEON_INFO_SI_CP_DMA_COMPUTE: 512 *value = 1; 513 break; 514 case RADEON_INFO_SI_BACKEND_ENABLED_MASK: 515 if (rdev->family >= CHIP_BONAIRE) { 516 *value = rdev->config.cik.backend_enable_mask; 517 } else if (rdev->family >= CHIP_TAHITI) { 518 *value = rdev->config.si.backend_enable_mask; 519 } else { 520 DRM_DEBUG_KMS("BACKEND_ENABLED_MASK is si+ only!\n"); 521 return -EINVAL; 522 } 523 break; 524 case RADEON_INFO_MAX_SCLK: 525 if ((rdev->pm.pm_method == PM_METHOD_DPM) && 526 rdev->pm.dpm_enabled) 527 *value = rdev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk * 10; 528 else 529 *value = rdev->pm.default_sclk * 10; 530 break; 531 case RADEON_INFO_VCE_FW_VERSION: 532 *value = rdev->vce.fw_version; 533 break; 534 case RADEON_INFO_VCE_FB_VERSION: 535 *value = rdev->vce.fb_version; 536 break; 537 case RADEON_INFO_NUM_BYTES_MOVED: 538 value = (uint32_t*)&value64; 539 value_size = sizeof(uint64_t); 540 value64 = atomic64_read(&rdev->num_bytes_moved); 541 break; 542 case RADEON_INFO_VRAM_USAGE: 543 value = (uint32_t*)&value64; 544 value_size = sizeof(uint64_t); 545 value64 = atomic64_read(&rdev->vram_usage); 546 break; 547 case RADEON_INFO_GTT_USAGE: 548 value = (uint32_t*)&value64; 549 value_size = sizeof(uint64_t); 550 value64 = atomic64_read(&rdev->gtt_usage); 551 break; 552 case RADEON_INFO_ACTIVE_CU_COUNT: 553 if (rdev->family >= CHIP_BONAIRE) 554 *value = rdev->config.cik.active_cus; 555 else if (rdev->family >= CHIP_TAHITI) 556 *value = rdev->config.si.active_cus; 557 else if (rdev->family >= CHIP_CAYMAN) 558 *value = rdev->config.cayman.active_simds; 559 else if (rdev->family >= CHIP_CEDAR) 560 *value = rdev->config.evergreen.active_simds; 561 else if (rdev->family >= CHIP_RV770) 562 *value = rdev->config.rv770.active_simds; 563 else if (rdev->family >= CHIP_R600) 564 *value = rdev->config.r600.active_simds; 565 else 566 *value = 1; 567 break; 568 case RADEON_INFO_CURRENT_GPU_TEMP: 569 /* get temperature in millidegrees C */ 570 if (rdev->asic->pm.get_temperature) 571 *value = radeon_get_temperature(rdev); 572 else 573 *value = 0; 574 break; 575 case RADEON_INFO_CURRENT_GPU_SCLK: 576 /* get sclk in Mhz */ 577 if (rdev->pm.dpm_enabled) 578 *value = radeon_dpm_get_current_sclk(rdev) / 100; 579 else 580 *value = rdev->pm.current_sclk / 100; 581 break; 582 case RADEON_INFO_CURRENT_GPU_MCLK: 583 /* get mclk in Mhz */ 584 if (rdev->pm.dpm_enabled) 585 *value = radeon_dpm_get_current_mclk(rdev) / 100; 586 else 587 *value = rdev->pm.current_mclk / 100; 588 break; 589 case RADEON_INFO_READ_REG: 590 if (copy_from_user(value, value_ptr, sizeof(uint32_t))) { 591 DRM_ERROR("copy_from_user %s:%u\n", __func__, __LINE__); 592 return -EFAULT; 593 } 594 if (radeon_get_allowed_info_register(rdev, *value, value)) 595 return -EINVAL; 596 break; 597 case RADEON_INFO_VA_UNMAP_WORKING: 598 *value = true; 599 break; 600 case RADEON_INFO_GPU_RESET_COUNTER: 601 *value = atomic_read(&rdev->gpu_reset_counter); 602 break; 603 default: 604 DRM_DEBUG_KMS("Invalid request %d\n", info->request); 605 return -EINVAL; 606 } 607 if (copy_to_user(value_ptr, (char*)value, value_size)) { 608 DRM_ERROR("copy_to_user %s:%u\n", __func__, __LINE__); 609 return -EFAULT; 610 } 611 return 0; 612 } 613 614 615 /* 616 * Outdated mess for old drm with Xorg being in charge (void function now). 617 */ 618 /** 619 * radeon_driver_lastclose_kms - drm callback for last close 620 * 621 * @dev: drm dev pointer 622 * 623 * Switch vga_switcheroo state after last close (all asics). 624 */ 625 void radeon_driver_lastclose_kms(struct drm_device *dev) 626 { 627 drm_fb_helper_lastclose(dev); 628 vga_switcheroo_process_delayed_switch(); 629 } 630 631 /** 632 * radeon_driver_open_kms - drm callback for open 633 * 634 * @dev: drm dev pointer 635 * @file_priv: drm file 636 * 637 * On device open, init vm on cayman+ (all asics). 638 * Returns 0 on success, error on failure. 639 */ 640 int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv) 641 { 642 struct radeon_device *rdev = dev->dev_private; 643 int r; 644 645 file_priv->driver_priv = NULL; 646 647 r = pm_runtime_get_sync(dev->dev); 648 if (r < 0) { 649 pm_runtime_put_autosuspend(dev->dev); 650 return r; 651 } 652 653 /* new gpu have virtual address space support */ 654 if (rdev->family >= CHIP_CAYMAN) { 655 struct radeon_fpriv *fpriv; 656 struct radeon_vm *vm; 657 658 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL); 659 if (unlikely(!fpriv)) { 660 r = -ENOMEM; 661 goto out_suspend; 662 } 663 664 if (rdev->accel_working) { 665 vm = &fpriv->vm; 666 r = radeon_vm_init(rdev, vm); 667 if (r) { 668 kfree(fpriv); 669 goto out_suspend; 670 } 671 672 r = radeon_bo_reserve(rdev->ring_tmp_bo.bo, false); 673 if (r) { 674 radeon_vm_fini(rdev, vm); 675 kfree(fpriv); 676 goto out_suspend; 677 } 678 679 /* map the ib pool buffer read only into 680 * virtual address space */ 681 vm->ib_bo_va = radeon_vm_bo_add(rdev, vm, 682 rdev->ring_tmp_bo.bo); 683 r = radeon_vm_bo_set_addr(rdev, vm->ib_bo_va, 684 RADEON_VA_IB_OFFSET, 685 RADEON_VM_PAGE_READABLE | 686 RADEON_VM_PAGE_SNOOPED); 687 if (r) { 688 radeon_vm_fini(rdev, vm); 689 kfree(fpriv); 690 goto out_suspend; 691 } 692 } 693 file_priv->driver_priv = fpriv; 694 } 695 696 out_suspend: 697 pm_runtime_mark_last_busy(dev->dev); 698 pm_runtime_put_autosuspend(dev->dev); 699 return r; 700 } 701 702 /** 703 * radeon_driver_postclose_kms - drm callback for post close 704 * 705 * @dev: drm dev pointer 706 * @file_priv: drm file 707 * 708 * On device close, tear down hyperz and cmask filps on r1xx-r5xx 709 * (all asics). And tear down vm on cayman+ (all asics). 710 */ 711 void radeon_driver_postclose_kms(struct drm_device *dev, 712 struct drm_file *file_priv) 713 { 714 struct radeon_device *rdev = dev->dev_private; 715 716 pm_runtime_get_sync(dev->dev); 717 718 mutex_lock(&rdev->gem.mutex); 719 if (rdev->hyperz_filp == file_priv) 720 rdev->hyperz_filp = NULL; 721 if (rdev->cmask_filp == file_priv) 722 rdev->cmask_filp = NULL; 723 mutex_unlock(&rdev->gem.mutex); 724 725 radeon_uvd_free_handles(rdev, file_priv); 726 radeon_vce_free_handles(rdev, file_priv); 727 728 /* new gpu have virtual address space support */ 729 if (rdev->family >= CHIP_CAYMAN && file_priv->driver_priv) { 730 struct radeon_fpriv *fpriv = file_priv->driver_priv; 731 struct radeon_vm *vm = &fpriv->vm; 732 int r; 733 734 if (rdev->accel_working) { 735 r = radeon_bo_reserve(rdev->ring_tmp_bo.bo, false); 736 if (!r) { 737 if (vm->ib_bo_va) 738 radeon_vm_bo_rmv(rdev, vm->ib_bo_va); 739 radeon_bo_unreserve(rdev->ring_tmp_bo.bo); 740 } 741 radeon_vm_fini(rdev, vm); 742 } 743 744 kfree(fpriv); 745 file_priv->driver_priv = NULL; 746 } 747 pm_runtime_mark_last_busy(dev->dev); 748 pm_runtime_put_autosuspend(dev->dev); 749 } 750 751 /* 752 * VBlank related functions. 753 */ 754 /** 755 * radeon_get_vblank_counter_kms - get frame count 756 * 757 * @crtc: crtc to get the frame count from 758 * 759 * Gets the frame count on the requested crtc (all asics). 760 * Returns frame count on success, -EINVAL on failure. 761 */ 762 u32 radeon_get_vblank_counter_kms(struct drm_crtc *crtc) 763 { 764 struct drm_device *dev = crtc->dev; 765 unsigned int pipe = crtc->index; 766 int vpos, hpos, stat; 767 u32 count; 768 struct radeon_device *rdev = dev->dev_private; 769 770 if (pipe >= rdev->num_crtc) { 771 DRM_ERROR("Invalid crtc %u\n", pipe); 772 return -EINVAL; 773 } 774 775 /* The hw increments its frame counter at start of vsync, not at start 776 * of vblank, as is required by DRM core vblank counter handling. 777 * Cook the hw count here to make it appear to the caller as if it 778 * incremented at start of vblank. We measure distance to start of 779 * vblank in vpos. vpos therefore will be >= 0 between start of vblank 780 * and start of vsync, so vpos >= 0 means to bump the hw frame counter 781 * result by 1 to give the proper appearance to caller. 782 */ 783 if (rdev->mode_info.crtcs[pipe]) { 784 /* Repeat readout if needed to provide stable result if 785 * we cross start of vsync during the queries. 786 */ 787 do { 788 count = radeon_get_vblank_counter(rdev, pipe); 789 /* Ask radeon_get_crtc_scanoutpos to return vpos as 790 * distance to start of vblank, instead of regular 791 * vertical scanout pos. 792 */ 793 stat = radeon_get_crtc_scanoutpos( 794 dev, pipe, GET_DISTANCE_TO_VBLANKSTART, 795 &vpos, &hpos, NULL, NULL, 796 &rdev->mode_info.crtcs[pipe]->base.hwmode); 797 } while (count != radeon_get_vblank_counter(rdev, pipe)); 798 799 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) != 800 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) { 801 DRM_DEBUG_VBL("Query failed! stat %d\n", stat); 802 } 803 else { 804 DRM_DEBUG_VBL("crtc %u: dist from vblank start %d\n", 805 pipe, vpos); 806 807 /* Bump counter if we are at >= leading edge of vblank, 808 * but before vsync where vpos would turn negative and 809 * the hw counter really increments. 810 */ 811 if (vpos >= 0) 812 count++; 813 } 814 } 815 else { 816 /* Fallback to use value as is. */ 817 count = radeon_get_vblank_counter(rdev, pipe); 818 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n"); 819 } 820 821 return count; 822 } 823 824 /** 825 * radeon_enable_vblank_kms - enable vblank interrupt 826 * 827 * @crtc: crtc to enable vblank interrupt for 828 * 829 * Enable the interrupt on the requested crtc (all asics). 830 * Returns 0 on success, -EINVAL on failure. 831 */ 832 int radeon_enable_vblank_kms(struct drm_crtc *crtc) 833 { 834 struct drm_device *dev = crtc->dev; 835 unsigned int pipe = crtc->index; 836 struct radeon_device *rdev = dev->dev_private; 837 unsigned long irqflags; 838 int r; 839 840 if (pipe >= rdev->num_crtc) { 841 DRM_ERROR("Invalid crtc %d\n", pipe); 842 return -EINVAL; 843 } 844 845 spin_lock_irqsave(&rdev->irq.lock, irqflags); 846 rdev->irq.crtc_vblank_int[pipe] = true; 847 r = radeon_irq_set(rdev); 848 spin_unlock_irqrestore(&rdev->irq.lock, irqflags); 849 return r; 850 } 851 852 /** 853 * radeon_disable_vblank_kms - disable vblank interrupt 854 * 855 * @crtc: crtc to disable vblank interrupt for 856 * 857 * Disable the interrupt on the requested crtc (all asics). 858 */ 859 void radeon_disable_vblank_kms(struct drm_crtc *crtc) 860 { 861 struct drm_device *dev = crtc->dev; 862 unsigned int pipe = crtc->index; 863 struct radeon_device *rdev = dev->dev_private; 864 unsigned long irqflags; 865 866 if (pipe >= rdev->num_crtc) { 867 DRM_ERROR("Invalid crtc %d\n", pipe); 868 return; 869 } 870 871 spin_lock_irqsave(&rdev->irq.lock, irqflags); 872 rdev->irq.crtc_vblank_int[pipe] = false; 873 radeon_irq_set(rdev); 874 spin_unlock_irqrestore(&rdev->irq.lock, irqflags); 875 } 876