2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
29 #include <drm/drm_fb_helper.h>
31 #include <drm/radeon_drm.h>
32 #include "radeon_asic.h"
34 #include <linux/vga_switcheroo.h>
35 #include <linux/slab.h>
36 #include <linux/pm_runtime.h>
38 #if defined(CONFIG_VGA_SWITCHEROO)
39 bool radeon_has_atpx(void);
41 static inline bool radeon_has_atpx(void) { return false; }
45 * radeon_driver_unload_kms - Main unload function for KMS.
47 * @dev: drm dev pointer
49 * This is the main unload function for KMS (all asics).
50 * It calls radeon_modeset_fini() to tear down the
51 * displays, and radeon_device_fini() to tear down
52 * the rest of the device (CP, writeback, etc.).
53 * Returns 0 on success.
55 void radeon_driver_unload_kms(struct drm_device
*dev
)
57 struct radeon_device
*rdev
= dev
->dev_private
;
62 if (rdev
->rmmio
== NULL
)
65 if (radeon_is_px(dev
)) {
66 pm_runtime_get_sync(dev
->dev
);
67 pm_runtime_forbid(dev
->dev
);
70 radeon_acpi_fini(rdev
);
72 radeon_modeset_fini(rdev
);
73 radeon_device_fini(rdev
);
77 dev
->dev_private
= NULL
;
81 * radeon_driver_load_kms - Main load function for KMS.
83 * @dev: drm dev pointer
84 * @flags: device flags
86 * This is the main load function for KMS (all asics).
87 * It calls radeon_device_init() to set up the non-display
88 * parts of the chip (asic init, CP, writeback, etc.), and
89 * radeon_modeset_init() to set up the display parts
90 * (crtcs, encoders, hotplug detect, etc.).
91 * Returns 0 on success, error on failure.
93 int radeon_driver_load_kms(struct drm_device
*dev
, unsigned long flags
)
95 struct radeon_device
*rdev
;
98 if (!radeon_si_support
) {
99 switch (flags
& RADEON_FAMILY_MASK
) {
106 "SI support disabled by module param\n");
110 if (!radeon_cik_support
) {
111 switch (flags
& RADEON_FAMILY_MASK
) {
118 "CIK support disabled by module param\n");
123 rdev
= kzalloc(sizeof(struct radeon_device
), GFP_KERNEL
);
127 dev
->dev_private
= (void *)rdev
;
129 /* update BUS flag */
130 if (pci_find_capability(dev
->pdev
, PCI_CAP_ID_AGP
)) {
131 flags
|= RADEON_IS_AGP
;
132 } else if (pci_is_pcie(dev
->pdev
)) {
133 flags
|= RADEON_IS_PCIE
;
135 flags
|= RADEON_IS_PCI
;
138 if ((radeon_runtime_pm
!= 0) &&
140 ((flags
& RADEON_IS_IGP
) == 0) &&
141 !pci_is_thunderbolt_attached(dev
->pdev
))
142 flags
|= RADEON_IS_PX
;
144 /* radeon_device_init should report only fatal error
145 * like memory allocation failure or iomapping failure,
146 * or memory manager initialization failure, it must
147 * properly initialize the GPU MC controller and permit
150 r
= radeon_device_init(rdev
, dev
, dev
->pdev
, flags
);
152 dev_err(&dev
->pdev
->dev
, "Fatal error during GPU init\n");
156 /* Again modeset_init should fail only on fatal error
157 * otherwise it should provide enough functionalities
158 * for shadowfb to run
160 r
= radeon_modeset_init(rdev
);
162 dev_err(&dev
->pdev
->dev
, "Fatal error during modeset init\n");
164 /* Call ACPI methods: require modeset init
165 * but failure is not fatal
168 acpi_status
= radeon_acpi_init(rdev
);
170 dev_dbg(&dev
->pdev
->dev
,
171 "Error during ACPI methods call\n");
174 if (radeon_is_px(dev
)) {
175 pm_runtime_use_autosuspend(dev
->dev
);
176 pm_runtime_set_autosuspend_delay(dev
->dev
, 5000);
177 pm_runtime_set_active(dev
->dev
);
178 pm_runtime_allow(dev
->dev
);
179 pm_runtime_mark_last_busy(dev
->dev
);
180 pm_runtime_put_autosuspend(dev
->dev
);
185 radeon_driver_unload_kms(dev
);
192 * radeon_set_filp_rights - Set filp right.
194 * @dev: drm dev pointer
199 * Sets the filp rights for the device (all asics).
201 static void radeon_set_filp_rights(struct drm_device
*dev
,
202 struct drm_file
**owner
,
203 struct drm_file
*applier
,
206 struct radeon_device
*rdev
= dev
->dev_private
;
208 mutex_lock(&rdev
->gem
.mutex
);
213 } else if (*value
== 0) {
215 if (*owner
== applier
)
218 *value
= *owner
== applier
? 1 : 0;
219 mutex_unlock(&rdev
->gem
.mutex
);
223 * Userspace get information ioctl
226 * radeon_info_ioctl - answer a device specific request.
228 * @rdev: radeon device pointer
229 * @data: request object
232 * This function is used to pass device specific parameters to the userspace
233 * drivers. Examples include: pci device id, pipeline parms, tiling params,
235 * Returns 0 on success, -EINVAL on failure.
237 static int radeon_info_ioctl(struct drm_device
*dev
, void *data
, struct drm_file
*filp
)
239 struct radeon_device
*rdev
= dev
->dev_private
;
240 struct drm_radeon_info
*info
= data
;
241 struct radeon_mode_info
*minfo
= &rdev
->mode_info
;
242 uint32_t *value
, value_tmp
, *value_ptr
, value_size
;
244 struct drm_crtc
*crtc
;
247 value_ptr
= (uint32_t *)((unsigned long)info
->value
);
249 value_size
= sizeof(uint32_t);
251 switch (info
->request
) {
252 case RADEON_INFO_DEVICE_ID
:
253 *value
= dev
->pdev
->device
;
255 case RADEON_INFO_NUM_GB_PIPES
:
256 *value
= rdev
->num_gb_pipes
;
258 case RADEON_INFO_NUM_Z_PIPES
:
259 *value
= rdev
->num_z_pipes
;
261 case RADEON_INFO_ACCEL_WORKING
:
262 /* xf86-video-ati 6.13.0 relies on this being false for evergreen */
263 if ((rdev
->family
>= CHIP_CEDAR
) && (rdev
->family
<= CHIP_HEMLOCK
))
266 *value
= rdev
->accel_working
;
268 case RADEON_INFO_CRTC_FROM_ID
:
269 if (copy_from_user(value
, value_ptr
, sizeof(uint32_t))) {
270 DRM_ERROR("copy_from_user %s:%u\n", __func__
, __LINE__
);
273 for (i
= 0, found
= 0; i
< rdev
->num_crtc
; i
++) {
274 crtc
= (struct drm_crtc
*)minfo
->crtcs
[i
];
275 if (crtc
&& crtc
->base
.id
== *value
) {
276 struct radeon_crtc
*radeon_crtc
= to_radeon_crtc(crtc
);
277 *value
= radeon_crtc
->crtc_id
;
283 DRM_DEBUG_KMS("unknown crtc id %d\n", *value
);
287 case RADEON_INFO_ACCEL_WORKING2
:
288 if (rdev
->family
== CHIP_HAWAII
) {
289 if (rdev
->accel_working
) {
298 *value
= rdev
->accel_working
;
301 case RADEON_INFO_TILING_CONFIG
:
302 if (rdev
->family
>= CHIP_BONAIRE
)
303 *value
= rdev
->config
.cik
.tile_config
;
304 else if (rdev
->family
>= CHIP_TAHITI
)
305 *value
= rdev
->config
.si
.tile_config
;
306 else if (rdev
->family
>= CHIP_CAYMAN
)
307 *value
= rdev
->config
.cayman
.tile_config
;
308 else if (rdev
->family
>= CHIP_CEDAR
)
309 *value
= rdev
->config
.evergreen
.tile_config
;
310 else if (rdev
->family
>= CHIP_RV770
)
311 *value
= rdev
->config
.rv770
.tile_config
;
312 else if (rdev
->family
>= CHIP_R600
)
313 *value
= rdev
->config
.r600
.tile_config
;
315 DRM_DEBUG_KMS("tiling config is r6xx+ only!\n");
319 case RADEON_INFO_WANT_HYPERZ
:
320 /* The "value" here is both an input and output parameter.
321 * If the input value is 1, filp requests hyper-z access.
322 * If the input value is 0, filp revokes its hyper-z access.
324 * When returning, the value is 1 if filp owns hyper-z access,
326 if (copy_from_user(value
, value_ptr
, sizeof(uint32_t))) {
327 DRM_ERROR("copy_from_user %s:%u\n", __func__
, __LINE__
);
331 DRM_DEBUG_KMS("WANT_HYPERZ: invalid value %d\n", *value
);
334 radeon_set_filp_rights(dev
, &rdev
->hyperz_filp
, filp
, value
);
336 case RADEON_INFO_WANT_CMASK
:
337 /* The same logic as Hyper-Z. */
338 if (copy_from_user(value
, value_ptr
, sizeof(uint32_t))) {
339 DRM_ERROR("copy_from_user %s:%u\n", __func__
, __LINE__
);
343 DRM_DEBUG_KMS("WANT_CMASK: invalid value %d\n", *value
);
346 radeon_set_filp_rights(dev
, &rdev
->cmask_filp
, filp
, value
);
348 case RADEON_INFO_CLOCK_CRYSTAL_FREQ
:
349 /* return clock value in KHz */
350 if (rdev
->asic
->get_xclk
)
351 *value
= radeon_get_xclk(rdev
) * 10;
353 *value
= rdev
->clock
.spll
.reference_freq
* 10;
355 case RADEON_INFO_NUM_BACKENDS
:
356 if (rdev
->family
>= CHIP_BONAIRE
)
357 *value
= rdev
->config
.cik
.max_backends_per_se
*
358 rdev
->config
.cik
.max_shader_engines
;
359 else if (rdev
->family
>= CHIP_TAHITI
)
360 *value
= rdev
->config
.si
.max_backends_per_se
*
361 rdev
->config
.si
.max_shader_engines
;
362 else if (rdev
->family
>= CHIP_CAYMAN
)
363 *value
= rdev
->config
.cayman
.max_backends_per_se
*
364 rdev
->config
.cayman
.max_shader_engines
;
365 else if (rdev
->family
>= CHIP_CEDAR
)
366 *value
= rdev
->config
.evergreen
.max_backends
;
367 else if (rdev
->family
>= CHIP_RV770
)
368 *value
= rdev
->config
.rv770
.max_backends
;
369 else if (rdev
->family
>= CHIP_R600
)
370 *value
= rdev
->config
.r600
.max_backends
;
375 case RADEON_INFO_NUM_TILE_PIPES
:
376 if (rdev
->family
>= CHIP_BONAIRE
)
377 *value
= rdev
->config
.cik
.max_tile_pipes
;
378 else if (rdev
->family
>= CHIP_TAHITI
)
379 *value
= rdev
->config
.si
.max_tile_pipes
;
380 else if (rdev
->family
>= CHIP_CAYMAN
)
381 *value
= rdev
->config
.cayman
.max_tile_pipes
;
382 else if (rdev
->family
>= CHIP_CEDAR
)
383 *value
= rdev
->config
.evergreen
.max_tile_pipes
;
384 else if (rdev
->family
>= CHIP_RV770
)
385 *value
= rdev
->config
.rv770
.max_tile_pipes
;
386 else if (rdev
->family
>= CHIP_R600
)
387 *value
= rdev
->config
.r600
.max_tile_pipes
;
392 case RADEON_INFO_FUSION_GART_WORKING
:
395 case RADEON_INFO_BACKEND_MAP
:
396 if (rdev
->family
>= CHIP_BONAIRE
)
397 *value
= rdev
->config
.cik
.backend_map
;
398 else if (rdev
->family
>= CHIP_TAHITI
)
399 *value
= rdev
->config
.si
.backend_map
;
400 else if (rdev
->family
>= CHIP_CAYMAN
)
401 *value
= rdev
->config
.cayman
.backend_map
;
402 else if (rdev
->family
>= CHIP_CEDAR
)
403 *value
= rdev
->config
.evergreen
.backend_map
;
404 else if (rdev
->family
>= CHIP_RV770
)
405 *value
= rdev
->config
.rv770
.backend_map
;
406 else if (rdev
->family
>= CHIP_R600
)
407 *value
= rdev
->config
.r600
.backend_map
;
412 case RADEON_INFO_VA_START
:
413 /* this is where we report if vm is supported or not */
414 if (rdev
->family
< CHIP_CAYMAN
)
416 *value
= RADEON_VA_RESERVED_SIZE
;
418 case RADEON_INFO_IB_VM_MAX_SIZE
:
419 /* this is where we report if vm is supported or not */
420 if (rdev
->family
< CHIP_CAYMAN
)
422 *value
= RADEON_IB_VM_MAX_SIZE
;
424 case RADEON_INFO_MAX_PIPES
:
425 if (rdev
->family
>= CHIP_BONAIRE
)
426 *value
= rdev
->config
.cik
.max_cu_per_sh
;
427 else if (rdev
->family
>= CHIP_TAHITI
)
428 *value
= rdev
->config
.si
.max_cu_per_sh
;
429 else if (rdev
->family
>= CHIP_CAYMAN
)
430 *value
= rdev
->config
.cayman
.max_pipes_per_simd
;
431 else if (rdev
->family
>= CHIP_CEDAR
)
432 *value
= rdev
->config
.evergreen
.max_pipes
;
433 else if (rdev
->family
>= CHIP_RV770
)
434 *value
= rdev
->config
.rv770
.max_pipes
;
435 else if (rdev
->family
>= CHIP_R600
)
436 *value
= rdev
->config
.r600
.max_pipes
;
441 case RADEON_INFO_TIMESTAMP
:
442 if (rdev
->family
< CHIP_R600
) {
443 DRM_DEBUG_KMS("timestamp is r6xx+ only!\n");
446 value
= (uint32_t*)&value64
;
447 value_size
= sizeof(uint64_t);
448 value64
= radeon_get_gpu_clock_counter(rdev
);
450 case RADEON_INFO_MAX_SE
:
451 if (rdev
->family
>= CHIP_BONAIRE
)
452 *value
= rdev
->config
.cik
.max_shader_engines
;
453 else if (rdev
->family
>= CHIP_TAHITI
)
454 *value
= rdev
->config
.si
.max_shader_engines
;
455 else if (rdev
->family
>= CHIP_CAYMAN
)
456 *value
= rdev
->config
.cayman
.max_shader_engines
;
457 else if (rdev
->family
>= CHIP_CEDAR
)
458 *value
= rdev
->config
.evergreen
.num_ses
;
462 case RADEON_INFO_MAX_SH_PER_SE
:
463 if (rdev
->family
>= CHIP_BONAIRE
)
464 *value
= rdev
->config
.cik
.max_sh_per_se
;
465 else if (rdev
->family
>= CHIP_TAHITI
)
466 *value
= rdev
->config
.si
.max_sh_per_se
;
470 case RADEON_INFO_FASTFB_WORKING
:
471 *value
= rdev
->fastfb_working
;
473 case RADEON_INFO_RING_WORKING
:
474 if (copy_from_user(value
, value_ptr
, sizeof(uint32_t))) {
475 DRM_ERROR("copy_from_user %s:%u\n", __func__
, __LINE__
);
479 case RADEON_CS_RING_GFX
:
480 case RADEON_CS_RING_COMPUTE
:
481 *value
= rdev
->ring
[RADEON_RING_TYPE_GFX_INDEX
].ready
;
483 case RADEON_CS_RING_DMA
:
484 *value
= rdev
->ring
[R600_RING_TYPE_DMA_INDEX
].ready
;
485 *value
|= rdev
->ring
[CAYMAN_RING_TYPE_DMA1_INDEX
].ready
;
487 case RADEON_CS_RING_UVD
:
488 *value
= rdev
->ring
[R600_RING_TYPE_UVD_INDEX
].ready
;
490 case RADEON_CS_RING_VCE
:
491 *value
= rdev
->ring
[TN_RING_TYPE_VCE1_INDEX
].ready
;
497 case RADEON_INFO_SI_TILE_MODE_ARRAY
:
498 if (rdev
->family
>= CHIP_BONAIRE
) {
499 value
= rdev
->config
.cik
.tile_mode_array
;
500 value_size
= sizeof(uint32_t)*32;
501 } else if (rdev
->family
>= CHIP_TAHITI
) {
502 value
= rdev
->config
.si
.tile_mode_array
;
503 value_size
= sizeof(uint32_t)*32;
505 DRM_DEBUG_KMS("tile mode array is si+ only!\n");
509 case RADEON_INFO_CIK_MACROTILE_MODE_ARRAY
:
510 if (rdev
->family
>= CHIP_BONAIRE
) {
511 value
= rdev
->config
.cik
.macrotile_mode_array
;
512 value_size
= sizeof(uint32_t)*16;
514 DRM_DEBUG_KMS("macrotile mode array is cik+ only!\n");
518 case RADEON_INFO_SI_CP_DMA_COMPUTE
:
521 case RADEON_INFO_SI_BACKEND_ENABLED_MASK
:
522 if (rdev
->family
>= CHIP_BONAIRE
) {
523 *value
= rdev
->config
.cik
.backend_enable_mask
;
524 } else if (rdev
->family
>= CHIP_TAHITI
) {
525 *value
= rdev
->config
.si
.backend_enable_mask
;
527 DRM_DEBUG_KMS("BACKEND_ENABLED_MASK is si+ only!\n");
530 case RADEON_INFO_MAX_SCLK
:
531 if ((rdev
->pm
.pm_method
== PM_METHOD_DPM
) &&
532 rdev
->pm
.dpm_enabled
)
533 *value
= rdev
->pm
.dpm
.dyn_state
.max_clock_voltage_on_ac
.sclk
* 10;
535 *value
= rdev
->pm
.default_sclk
* 10;
537 case RADEON_INFO_VCE_FW_VERSION
:
538 *value
= rdev
->vce
.fw_version
;
540 case RADEON_INFO_VCE_FB_VERSION
:
541 *value
= rdev
->vce
.fb_version
;
543 case RADEON_INFO_NUM_BYTES_MOVED
:
544 value
= (uint32_t*)&value64
;
545 value_size
= sizeof(uint64_t);
546 value64
= atomic64_read(&rdev
->num_bytes_moved
);
548 case RADEON_INFO_VRAM_USAGE
:
549 value
= (uint32_t*)&value64
;
550 value_size
= sizeof(uint64_t);
551 value64
= atomic64_read(&rdev
->vram_usage
);
553 case RADEON_INFO_GTT_USAGE
:
554 value
= (uint32_t*)&value64
;
555 value_size
= sizeof(uint64_t);
556 value64
= atomic64_read(&rdev
->gtt_usage
);
558 case RADEON_INFO_ACTIVE_CU_COUNT
:
559 if (rdev
->family
>= CHIP_BONAIRE
)
560 *value
= rdev
->config
.cik
.active_cus
;
561 else if (rdev
->family
>= CHIP_TAHITI
)
562 *value
= rdev
->config
.si
.active_cus
;
563 else if (rdev
->family
>= CHIP_CAYMAN
)
564 *value
= rdev
->config
.cayman
.active_simds
;
565 else if (rdev
->family
>= CHIP_CEDAR
)
566 *value
= rdev
->config
.evergreen
.active_simds
;
567 else if (rdev
->family
>= CHIP_RV770
)
568 *value
= rdev
->config
.rv770
.active_simds
;
569 else if (rdev
->family
>= CHIP_R600
)
570 *value
= rdev
->config
.r600
.active_simds
;
574 case RADEON_INFO_CURRENT_GPU_TEMP
:
575 /* get temperature in millidegrees C */
576 if (rdev
->asic
->pm
.get_temperature
)
577 *value
= radeon_get_temperature(rdev
);
581 case RADEON_INFO_CURRENT_GPU_SCLK
:
582 /* get sclk in Mhz */
583 if (rdev
->pm
.dpm_enabled
)
584 *value
= radeon_dpm_get_current_sclk(rdev
) / 100;
586 *value
= rdev
->pm
.current_sclk
/ 100;
588 case RADEON_INFO_CURRENT_GPU_MCLK
:
589 /* get mclk in Mhz */
590 if (rdev
->pm
.dpm_enabled
)
591 *value
= radeon_dpm_get_current_mclk(rdev
) / 100;
593 *value
= rdev
->pm
.current_mclk
/ 100;
595 case RADEON_INFO_READ_REG
:
596 if (copy_from_user(value
, value_ptr
, sizeof(uint32_t))) {
597 DRM_ERROR("copy_from_user %s:%u\n", __func__
, __LINE__
);
600 if (radeon_get_allowed_info_register(rdev
, *value
, value
))
603 case RADEON_INFO_VA_UNMAP_WORKING
:
606 case RADEON_INFO_GPU_RESET_COUNTER
:
607 *value
= atomic_read(&rdev
->gpu_reset_counter
);
610 DRM_DEBUG_KMS("Invalid request %d\n", info
->request
);
613 if (copy_to_user(value_ptr
, (char*)value
, value_size
)) {
614 DRM_ERROR("copy_to_user %s:%u\n", __func__
, __LINE__
);
622 * Outdated mess for old drm with Xorg being in charge (void function now).
625 * radeon_driver_lastclose_kms - drm callback for last close
627 * @dev: drm dev pointer
629 * Switch vga_switcheroo state after last close (all asics).
631 void radeon_driver_lastclose_kms(struct drm_device
*dev
)
633 drm_fb_helper_lastclose(dev
);
634 vga_switcheroo_process_delayed_switch();
638 * radeon_driver_open_kms - drm callback for open
640 * @dev: drm dev pointer
641 * @file_priv: drm file
643 * On device open, init vm on cayman+ (all asics).
644 * Returns 0 on success, error on failure.
646 int radeon_driver_open_kms(struct drm_device
*dev
, struct drm_file
*file_priv
)
648 struct radeon_device
*rdev
= dev
->dev_private
;
651 file_priv
->driver_priv
= NULL
;
653 r
= pm_runtime_get_sync(dev
->dev
);
657 /* new gpu have virtual address space support */
658 if (rdev
->family
>= CHIP_CAYMAN
) {
659 struct radeon_fpriv
*fpriv
;
660 struct radeon_vm
*vm
;
662 fpriv
= kzalloc(sizeof(*fpriv
), GFP_KERNEL
);
663 if (unlikely(!fpriv
)) {
668 if (rdev
->accel_working
) {
670 r
= radeon_vm_init(rdev
, vm
);
676 r
= radeon_bo_reserve(rdev
->ring_tmp_bo
.bo
, false);
678 radeon_vm_fini(rdev
, vm
);
683 /* map the ib pool buffer read only into
684 * virtual address space */
685 vm
->ib_bo_va
= radeon_vm_bo_add(rdev
, vm
,
686 rdev
->ring_tmp_bo
.bo
);
687 r
= radeon_vm_bo_set_addr(rdev
, vm
->ib_bo_va
,
689 RADEON_VM_PAGE_READABLE
|
690 RADEON_VM_PAGE_SNOOPED
);
692 radeon_vm_fini(rdev
, vm
);
697 file_priv
->driver_priv
= fpriv
;
701 pm_runtime_mark_last_busy(dev
->dev
);
702 pm_runtime_put_autosuspend(dev
->dev
);
707 * radeon_driver_postclose_kms - drm callback for post close
709 * @dev: drm dev pointer
710 * @file_priv: drm file
712 * On device close, tear down hyperz and cmask filps on r1xx-r5xx
713 * (all asics). And tear down vm on cayman+ (all asics).
715 void radeon_driver_postclose_kms(struct drm_device
*dev
,
716 struct drm_file
*file_priv
)
718 struct radeon_device
*rdev
= dev
->dev_private
;
720 pm_runtime_get_sync(dev
->dev
);
722 mutex_lock(&rdev
->gem
.mutex
);
723 if (rdev
->hyperz_filp
== file_priv
)
724 rdev
->hyperz_filp
= NULL
;
725 if (rdev
->cmask_filp
== file_priv
)
726 rdev
->cmask_filp
= NULL
;
727 mutex_unlock(&rdev
->gem
.mutex
);
729 radeon_uvd_free_handles(rdev
, file_priv
);
730 radeon_vce_free_handles(rdev
, file_priv
);
732 /* new gpu have virtual address space support */
733 if (rdev
->family
>= CHIP_CAYMAN
&& file_priv
->driver_priv
) {
734 struct radeon_fpriv
*fpriv
= file_priv
->driver_priv
;
735 struct radeon_vm
*vm
= &fpriv
->vm
;
738 if (rdev
->accel_working
) {
739 r
= radeon_bo_reserve(rdev
->ring_tmp_bo
.bo
, false);
742 radeon_vm_bo_rmv(rdev
, vm
->ib_bo_va
);
743 radeon_bo_unreserve(rdev
->ring_tmp_bo
.bo
);
745 radeon_vm_fini(rdev
, vm
);
749 file_priv
->driver_priv
= NULL
;
751 pm_runtime_mark_last_busy(dev
->dev
);
752 pm_runtime_put_autosuspend(dev
->dev
);
756 * VBlank related functions.
759 * radeon_get_vblank_counter_kms - get frame count
761 * @dev: drm dev pointer
762 * @pipe: crtc to get the frame count from
764 * Gets the frame count on the requested crtc (all asics).
765 * Returns frame count on success, -EINVAL on failure.
767 u32
radeon_get_vblank_counter_kms(struct drm_device
*dev
, unsigned int pipe
)
769 int vpos
, hpos
, stat
;
771 struct radeon_device
*rdev
= dev
->dev_private
;
773 if (pipe
>= rdev
->num_crtc
) {
774 DRM_ERROR("Invalid crtc %u\n", pipe
);
778 /* The hw increments its frame counter at start of vsync, not at start
779 * of vblank, as is required by DRM core vblank counter handling.
780 * Cook the hw count here to make it appear to the caller as if it
781 * incremented at start of vblank. We measure distance to start of
782 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
783 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
784 * result by 1 to give the proper appearance to caller.
786 if (rdev
->mode_info
.crtcs
[pipe
]) {
787 /* Repeat readout if needed to provide stable result if
788 * we cross start of vsync during the queries.
791 count
= radeon_get_vblank_counter(rdev
, pipe
);
792 /* Ask radeon_get_crtc_scanoutpos to return vpos as
793 * distance to start of vblank, instead of regular
794 * vertical scanout pos.
796 stat
= radeon_get_crtc_scanoutpos(
797 dev
, pipe
, GET_DISTANCE_TO_VBLANKSTART
,
798 &vpos
, &hpos
, NULL
, NULL
,
799 &rdev
->mode_info
.crtcs
[pipe
]->base
.hwmode
);
800 } while (count
!= radeon_get_vblank_counter(rdev
, pipe
));
802 if (((stat
& (DRM_SCANOUTPOS_VALID
| DRM_SCANOUTPOS_ACCURATE
)) !=
803 (DRM_SCANOUTPOS_VALID
| DRM_SCANOUTPOS_ACCURATE
))) {
804 DRM_DEBUG_VBL("Query failed! stat %d\n", stat
);
807 DRM_DEBUG_VBL("crtc %u: dist from vblank start %d\n",
810 /* Bump counter if we are at >= leading edge of vblank,
811 * but before vsync where vpos would turn negative and
812 * the hw counter really increments.
819 /* Fallback to use value as is. */
820 count
= radeon_get_vblank_counter(rdev
, pipe
);
821 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
828 * radeon_enable_vblank_kms - enable vblank interrupt
830 * @dev: drm dev pointer
831 * @crtc: crtc to enable vblank interrupt for
833 * Enable the interrupt on the requested crtc (all asics).
834 * Returns 0 on success, -EINVAL on failure.
836 int radeon_enable_vblank_kms(struct drm_device
*dev
, int crtc
)
838 struct radeon_device
*rdev
= dev
->dev_private
;
839 unsigned long irqflags
;
842 if (crtc
< 0 || crtc
>= rdev
->num_crtc
) {
843 DRM_ERROR("Invalid crtc %d\n", crtc
);
847 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
848 rdev
->irq
.crtc_vblank_int
[crtc
] = true;
849 r
= radeon_irq_set(rdev
);
850 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
855 * radeon_disable_vblank_kms - disable vblank interrupt
857 * @dev: drm dev pointer
858 * @crtc: crtc to disable vblank interrupt for
860 * Disable the interrupt on the requested crtc (all asics).
862 void radeon_disable_vblank_kms(struct drm_device
*dev
, int crtc
)
864 struct radeon_device
*rdev
= dev
->dev_private
;
865 unsigned long irqflags
;
867 if (crtc
< 0 || crtc
>= rdev
->num_crtc
) {
868 DRM_ERROR("Invalid crtc %d\n", crtc
);
872 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
873 rdev
->irq
.crtc_vblank_int
[crtc
] = false;
874 radeon_irq_set(rdev
);
875 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
878 const struct drm_ioctl_desc radeon_ioctls_kms
[] = {
879 DRM_IOCTL_DEF_DRV(RADEON_CP_INIT
, drm_invalid_op
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
880 DRM_IOCTL_DEF_DRV(RADEON_CP_START
, drm_invalid_op
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
881 DRM_IOCTL_DEF_DRV(RADEON_CP_STOP
, drm_invalid_op
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
882 DRM_IOCTL_DEF_DRV(RADEON_CP_RESET
, drm_invalid_op
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
883 DRM_IOCTL_DEF_DRV(RADEON_CP_IDLE
, drm_invalid_op
, DRM_AUTH
),
884 DRM_IOCTL_DEF_DRV(RADEON_CP_RESUME
, drm_invalid_op
, DRM_AUTH
),
885 DRM_IOCTL_DEF_DRV(RADEON_RESET
, drm_invalid_op
, DRM_AUTH
),
886 DRM_IOCTL_DEF_DRV(RADEON_FULLSCREEN
, drm_invalid_op
, DRM_AUTH
),
887 DRM_IOCTL_DEF_DRV(RADEON_SWAP
, drm_invalid_op
, DRM_AUTH
),
888 DRM_IOCTL_DEF_DRV(RADEON_CLEAR
, drm_invalid_op
, DRM_AUTH
),
889 DRM_IOCTL_DEF_DRV(RADEON_VERTEX
, drm_invalid_op
, DRM_AUTH
),
890 DRM_IOCTL_DEF_DRV(RADEON_INDICES
, drm_invalid_op
, DRM_AUTH
),
891 DRM_IOCTL_DEF_DRV(RADEON_TEXTURE
, drm_invalid_op
, DRM_AUTH
),
892 DRM_IOCTL_DEF_DRV(RADEON_STIPPLE
, drm_invalid_op
, DRM_AUTH
),
893 DRM_IOCTL_DEF_DRV(RADEON_INDIRECT
, drm_invalid_op
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
894 DRM_IOCTL_DEF_DRV(RADEON_VERTEX2
, drm_invalid_op
, DRM_AUTH
),
895 DRM_IOCTL_DEF_DRV(RADEON_CMDBUF
, drm_invalid_op
, DRM_AUTH
),
896 DRM_IOCTL_DEF_DRV(RADEON_GETPARAM
, drm_invalid_op
, DRM_AUTH
),
897 DRM_IOCTL_DEF_DRV(RADEON_FLIP
, drm_invalid_op
, DRM_AUTH
),
898 DRM_IOCTL_DEF_DRV(RADEON_ALLOC
, drm_invalid_op
, DRM_AUTH
),
899 DRM_IOCTL_DEF_DRV(RADEON_FREE
, drm_invalid_op
, DRM_AUTH
),
900 DRM_IOCTL_DEF_DRV(RADEON_INIT_HEAP
, drm_invalid_op
, DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
901 DRM_IOCTL_DEF_DRV(RADEON_IRQ_EMIT
, drm_invalid_op
, DRM_AUTH
),
902 DRM_IOCTL_DEF_DRV(RADEON_IRQ_WAIT
, drm_invalid_op
, DRM_AUTH
),
903 DRM_IOCTL_DEF_DRV(RADEON_SETPARAM
, drm_invalid_op
, DRM_AUTH
),
904 DRM_IOCTL_DEF_DRV(RADEON_SURF_ALLOC
, drm_invalid_op
, DRM_AUTH
),
905 DRM_IOCTL_DEF_DRV(RADEON_SURF_FREE
, drm_invalid_op
, DRM_AUTH
),
907 DRM_IOCTL_DEF_DRV(RADEON_GEM_INFO
, radeon_gem_info_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
908 DRM_IOCTL_DEF_DRV(RADEON_GEM_CREATE
, radeon_gem_create_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
909 DRM_IOCTL_DEF_DRV(RADEON_GEM_MMAP
, radeon_gem_mmap_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
910 DRM_IOCTL_DEF_DRV(RADEON_GEM_SET_DOMAIN
, radeon_gem_set_domain_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
911 DRM_IOCTL_DEF_DRV(RADEON_GEM_PREAD
, radeon_gem_pread_ioctl
, DRM_AUTH
),
912 DRM_IOCTL_DEF_DRV(RADEON_GEM_PWRITE
, radeon_gem_pwrite_ioctl
, DRM_AUTH
),
913 DRM_IOCTL_DEF_DRV(RADEON_GEM_WAIT_IDLE
, radeon_gem_wait_idle_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
914 DRM_IOCTL_DEF_DRV(RADEON_CS
, radeon_cs_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
915 DRM_IOCTL_DEF_DRV(RADEON_INFO
, radeon_info_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
916 DRM_IOCTL_DEF_DRV(RADEON_GEM_SET_TILING
, radeon_gem_set_tiling_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
917 DRM_IOCTL_DEF_DRV(RADEON_GEM_GET_TILING
, radeon_gem_get_tiling_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
918 DRM_IOCTL_DEF_DRV(RADEON_GEM_BUSY
, radeon_gem_busy_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
919 DRM_IOCTL_DEF_DRV(RADEON_GEM_VA
, radeon_gem_va_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
920 DRM_IOCTL_DEF_DRV(RADEON_GEM_OP
, radeon_gem_op_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
921 DRM_IOCTL_DEF_DRV(RADEON_GEM_USERPTR
, radeon_gem_userptr_ioctl
, DRM_AUTH
|DRM_RENDER_ALLOW
),
923 int radeon_max_kms_ioctl
= ARRAY_SIZE(radeon_ioctls_kms
);