Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 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 | #include <drm/drmP.h> |
| 29 | #include "amdgpu.h" |
| 30 | #include <drm/amdgpu_drm.h> |
| 31 | #include "amdgpu_uvd.h" |
| 32 | #include "amdgpu_vce.h" |
| 33 | |
| 34 | #include <linux/vga_switcheroo.h> |
| 35 | #include <linux/slab.h> |
| 36 | #include <linux/pm_runtime.h> |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 37 | #include "amdgpu_amdkfd.h" |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 38 | |
| 39 | #if defined(CONFIG_VGA_SWITCHEROO) |
| 40 | bool amdgpu_has_atpx(void); |
| 41 | #else |
| 42 | static inline bool amdgpu_has_atpx(void) { return false; } |
| 43 | #endif |
| 44 | |
| 45 | /** |
| 46 | * amdgpu_driver_unload_kms - Main unload function for KMS. |
| 47 | * |
| 48 | * @dev: drm dev pointer |
| 49 | * |
| 50 | * This is the main unload function for KMS (all asics). |
| 51 | * Returns 0 on success. |
| 52 | */ |
Gabriel Krisman Bertazi | 11b3c20 | 2017-01-06 15:57:31 -0200 | [diff] [blame] | 53 | void amdgpu_driver_unload_kms(struct drm_device *dev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 54 | { |
| 55 | struct amdgpu_device *adev = dev->dev_private; |
| 56 | |
| 57 | if (adev == NULL) |
Gabriel Krisman Bertazi | 11b3c20 | 2017-01-06 15:57:31 -0200 | [diff] [blame] | 58 | return; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 59 | |
| 60 | if (adev->rmmio == NULL) |
| 61 | goto done_free; |
| 62 | |
Xiangliang Yu | 3149d9d | 2017-01-12 15:14:36 +0800 | [diff] [blame] | 63 | if (amdgpu_sriov_vf(adev)) |
| 64 | amdgpu_virt_request_full_gpu(adev, false); |
| 65 | |
Lukas Wunner | 4a78854 | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 66 | if (amdgpu_device_is_px(dev)) { |
| 67 | pm_runtime_get_sync(dev->dev); |
Lukas Wunner | 6ce62d8 | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 68 | pm_runtime_forbid(dev->dev); |
Lukas Wunner | 4a78854 | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 69 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 70 | |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 71 | amdgpu_amdkfd_device_fini(adev); |
| 72 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 73 | amdgpu_acpi_fini(adev); |
| 74 | |
| 75 | amdgpu_device_fini(adev); |
| 76 | |
| 77 | done_free: |
| 78 | kfree(adev); |
| 79 | dev->dev_private = NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | /** |
| 83 | * amdgpu_driver_load_kms - Main load function for KMS. |
| 84 | * |
| 85 | * @dev: drm dev pointer |
| 86 | * @flags: device flags |
| 87 | * |
| 88 | * This is the main load function for KMS (all asics). |
| 89 | * Returns 0 on success, error on failure. |
| 90 | */ |
| 91 | int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags) |
| 92 | { |
| 93 | struct amdgpu_device *adev; |
| 94 | int r, acpi_status; |
| 95 | |
| 96 | adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL); |
| 97 | if (adev == NULL) { |
| 98 | return -ENOMEM; |
| 99 | } |
| 100 | dev->dev_private = (void *)adev; |
| 101 | |
| 102 | if ((amdgpu_runtime_pm != 0) && |
| 103 | amdgpu_has_atpx() && |
Alex Deucher | 84b1528 | 2016-10-31 11:02:31 -0400 | [diff] [blame] | 104 | (amdgpu_is_atpx_hybrid() || |
| 105 | amdgpu_has_atpx_dgpu_power_cntl()) && |
Jammy Zhou | 2f7d10b | 2015-07-22 11:29:01 +0800 | [diff] [blame] | 106 | ((flags & AMD_IS_APU) == 0)) |
| 107 | flags |= AMD_IS_PX; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 108 | |
| 109 | /* amdgpu_device_init should report only fatal error |
| 110 | * like memory allocation failure or iomapping failure, |
| 111 | * or memory manager initialization failure, it must |
| 112 | * properly initialize the GPU MC controller and permit |
| 113 | * VRAM allocation |
| 114 | */ |
| 115 | r = amdgpu_device_init(adev, dev, dev->pdev, flags); |
| 116 | if (r) { |
| 117 | dev_err(&dev->pdev->dev, "Fatal error during GPU init\n"); |
| 118 | goto out; |
| 119 | } |
| 120 | |
| 121 | /* Call ACPI methods: require modeset init |
| 122 | * but failure is not fatal |
| 123 | */ |
| 124 | if (!r) { |
| 125 | acpi_status = amdgpu_acpi_init(adev); |
| 126 | if (acpi_status) |
| 127 | dev_dbg(&dev->pdev->dev, |
| 128 | "Error during ACPI methods call\n"); |
| 129 | } |
| 130 | |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 131 | amdgpu_amdkfd_load_interface(adev); |
| 132 | amdgpu_amdkfd_device_probe(adev); |
| 133 | amdgpu_amdkfd_device_init(adev); |
| 134 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 135 | if (amdgpu_device_is_px(dev)) { |
| 136 | pm_runtime_use_autosuspend(dev->dev); |
| 137 | pm_runtime_set_autosuspend_delay(dev->dev, 5000); |
| 138 | pm_runtime_set_active(dev->dev); |
| 139 | pm_runtime_allow(dev->dev); |
| 140 | pm_runtime_mark_last_busy(dev->dev); |
| 141 | pm_runtime_put_autosuspend(dev->dev); |
| 142 | } |
| 143 | |
Xiangliang Yu | 3149d9d | 2017-01-12 15:14:36 +0800 | [diff] [blame] | 144 | if (amdgpu_sriov_vf(adev)) |
| 145 | amdgpu_virt_release_full_gpu(adev, true); |
| 146 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 147 | out: |
Lukas Wunner | c9c9bbd | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 148 | if (r) { |
| 149 | /* balance pm_runtime_get_sync in amdgpu_driver_unload_kms */ |
| 150 | if (adev->rmmio && amdgpu_device_is_px(dev)) |
| 151 | pm_runtime_put_noidle(dev->dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 152 | amdgpu_driver_unload_kms(dev); |
Lukas Wunner | c9c9bbd | 2016-06-08 18:47:27 +0200 | [diff] [blame] | 153 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 154 | |
| 155 | return r; |
| 156 | } |
| 157 | |
Huang Rui | 000cab9 | 2016-06-12 15:44:44 +0800 | [diff] [blame] | 158 | static int amdgpu_firmware_info(struct drm_amdgpu_info_firmware *fw_info, |
| 159 | struct drm_amdgpu_query_fw *query_fw, |
| 160 | struct amdgpu_device *adev) |
| 161 | { |
| 162 | switch (query_fw->fw_type) { |
| 163 | case AMDGPU_INFO_FW_VCE: |
| 164 | fw_info->ver = adev->vce.fw_version; |
| 165 | fw_info->feature = adev->vce.fb_version; |
| 166 | break; |
| 167 | case AMDGPU_INFO_FW_UVD: |
| 168 | fw_info->ver = adev->uvd.fw_version; |
| 169 | fw_info->feature = 0; |
| 170 | break; |
| 171 | case AMDGPU_INFO_FW_GMC: |
| 172 | fw_info->ver = adev->mc.fw_version; |
| 173 | fw_info->feature = 0; |
| 174 | break; |
| 175 | case AMDGPU_INFO_FW_GFX_ME: |
| 176 | fw_info->ver = adev->gfx.me_fw_version; |
| 177 | fw_info->feature = adev->gfx.me_feature_version; |
| 178 | break; |
| 179 | case AMDGPU_INFO_FW_GFX_PFP: |
| 180 | fw_info->ver = adev->gfx.pfp_fw_version; |
| 181 | fw_info->feature = adev->gfx.pfp_feature_version; |
| 182 | break; |
| 183 | case AMDGPU_INFO_FW_GFX_CE: |
| 184 | fw_info->ver = adev->gfx.ce_fw_version; |
| 185 | fw_info->feature = adev->gfx.ce_feature_version; |
| 186 | break; |
| 187 | case AMDGPU_INFO_FW_GFX_RLC: |
| 188 | fw_info->ver = adev->gfx.rlc_fw_version; |
| 189 | fw_info->feature = adev->gfx.rlc_feature_version; |
| 190 | break; |
| 191 | case AMDGPU_INFO_FW_GFX_MEC: |
| 192 | if (query_fw->index == 0) { |
| 193 | fw_info->ver = adev->gfx.mec_fw_version; |
| 194 | fw_info->feature = adev->gfx.mec_feature_version; |
| 195 | } else if (query_fw->index == 1) { |
| 196 | fw_info->ver = adev->gfx.mec2_fw_version; |
| 197 | fw_info->feature = adev->gfx.mec2_feature_version; |
| 198 | } else |
| 199 | return -EINVAL; |
| 200 | break; |
| 201 | case AMDGPU_INFO_FW_SMC: |
| 202 | fw_info->ver = adev->pm.fw_version; |
| 203 | fw_info->feature = 0; |
| 204 | break; |
| 205 | case AMDGPU_INFO_FW_SDMA: |
| 206 | if (query_fw->index >= adev->sdma.num_instances) |
| 207 | return -EINVAL; |
| 208 | fw_info->ver = adev->sdma.instance[query_fw->index].fw_version; |
| 209 | fw_info->feature = adev->sdma.instance[query_fw->index].feature_version; |
| 210 | break; |
| 211 | default: |
| 212 | return -EINVAL; |
| 213 | } |
| 214 | return 0; |
| 215 | } |
| 216 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 217 | /* |
| 218 | * Userspace get information ioctl |
| 219 | */ |
| 220 | /** |
| 221 | * amdgpu_info_ioctl - answer a device specific request. |
| 222 | * |
| 223 | * @adev: amdgpu device pointer |
| 224 | * @data: request object |
| 225 | * @filp: drm filp |
| 226 | * |
| 227 | * This function is used to pass device specific parameters to the userspace |
| 228 | * drivers. Examples include: pci device id, pipeline parms, tiling params, |
| 229 | * etc. (all asics). |
| 230 | * Returns 0 on success, -EINVAL on failure. |
| 231 | */ |
| 232 | static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) |
| 233 | { |
| 234 | struct amdgpu_device *adev = dev->dev_private; |
| 235 | struct drm_amdgpu_info *info = data; |
| 236 | struct amdgpu_mode_info *minfo = &adev->mode_info; |
| 237 | void __user *out = (void __user *)(long)info->return_pointer; |
| 238 | uint32_t size = info->return_size; |
| 239 | struct drm_crtc *crtc; |
| 240 | uint32_t ui32 = 0; |
| 241 | uint64_t ui64 = 0; |
| 242 | int i, found; |
Alex Deucher | 5ebbac4 | 2017-03-08 18:25:15 -0500 | [diff] [blame] | 243 | int ui32_size = sizeof(ui32); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 244 | |
| 245 | if (!info->return_size || !info->return_pointer) |
| 246 | return -EINVAL; |
| 247 | |
| 248 | switch (info->query) { |
| 249 | case AMDGPU_INFO_ACCEL_WORKING: |
| 250 | ui32 = adev->accel_working; |
| 251 | return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0; |
| 252 | case AMDGPU_INFO_CRTC_FROM_ID: |
| 253 | for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) { |
| 254 | crtc = (struct drm_crtc *)minfo->crtcs[i]; |
| 255 | if (crtc && crtc->base.id == info->mode_crtc.id) { |
| 256 | struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc); |
| 257 | ui32 = amdgpu_crtc->crtc_id; |
| 258 | found = 1; |
| 259 | break; |
| 260 | } |
| 261 | } |
| 262 | if (!found) { |
| 263 | DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id); |
| 264 | return -EINVAL; |
| 265 | } |
| 266 | return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0; |
| 267 | case AMDGPU_INFO_HW_IP_INFO: { |
| 268 | struct drm_amdgpu_info_hw_ip ip = {}; |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 269 | enum amd_ip_block_type type; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 270 | uint32_t ring_mask = 0; |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 271 | uint32_t ib_start_alignment = 0; |
| 272 | uint32_t ib_size_alignment = 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 273 | |
| 274 | if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT) |
| 275 | return -EINVAL; |
| 276 | |
| 277 | switch (info->query_hw_ip.type) { |
| 278 | case AMDGPU_HW_IP_GFX: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 279 | type = AMD_IP_BLOCK_TYPE_GFX; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 280 | for (i = 0; i < adev->gfx.num_gfx_rings; i++) |
| 281 | ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i); |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 282 | ib_start_alignment = AMDGPU_GPU_PAGE_SIZE; |
| 283 | ib_size_alignment = 8; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 284 | break; |
| 285 | case AMDGPU_HW_IP_COMPUTE: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 286 | type = AMD_IP_BLOCK_TYPE_GFX; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 287 | for (i = 0; i < adev->gfx.num_compute_rings; i++) |
| 288 | ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i); |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 289 | ib_start_alignment = AMDGPU_GPU_PAGE_SIZE; |
| 290 | ib_size_alignment = 8; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 291 | break; |
| 292 | case AMDGPU_HW_IP_DMA: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 293 | type = AMD_IP_BLOCK_TYPE_SDMA; |
Alex Deucher | c113ea1 | 2015-10-08 16:30:37 -0400 | [diff] [blame] | 294 | for (i = 0; i < adev->sdma.num_instances; i++) |
| 295 | ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i); |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 296 | ib_start_alignment = AMDGPU_GPU_PAGE_SIZE; |
| 297 | ib_size_alignment = 1; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 298 | break; |
| 299 | case AMDGPU_HW_IP_UVD: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 300 | type = AMD_IP_BLOCK_TYPE_UVD; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 301 | ring_mask = adev->uvd.ring.ready ? 1 : 0; |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 302 | ib_start_alignment = AMDGPU_GPU_PAGE_SIZE; |
Alex Deucher | c4795ca | 2016-08-22 16:31:36 -0400 | [diff] [blame] | 303 | ib_size_alignment = 16; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 304 | break; |
| 305 | case AMDGPU_HW_IP_VCE: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 306 | type = AMD_IP_BLOCK_TYPE_VCE; |
Alex Deucher | 75c6548 | 2016-08-24 16:56:21 -0400 | [diff] [blame] | 307 | for (i = 0; i < adev->vce.num_rings; i++) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 308 | ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i); |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 309 | ib_start_alignment = AMDGPU_GPU_PAGE_SIZE; |
Alex Deucher | a22f803 | 2016-08-23 10:44:16 -0400 | [diff] [blame] | 310 | ib_size_alignment = 1; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 311 | break; |
Leo Liu | 63defd3 | 2017-01-10 11:50:08 -0500 | [diff] [blame] | 312 | case AMDGPU_HW_IP_UVD_ENC: |
| 313 | type = AMD_IP_BLOCK_TYPE_UVD; |
| 314 | for (i = 0; i < adev->uvd.num_enc_rings; i++) |
| 315 | ring_mask |= ((adev->uvd.ring_enc[i].ready ? 1 : 0) << i); |
| 316 | ib_start_alignment = AMDGPU_GPU_PAGE_SIZE; |
| 317 | ib_size_alignment = 1; |
| 318 | break; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 319 | default: |
| 320 | return -EINVAL; |
| 321 | } |
| 322 | |
| 323 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 324 | if (adev->ip_blocks[i].version->type == type && |
| 325 | adev->ip_blocks[i].status.valid) { |
| 326 | ip.hw_ip_version_major = adev->ip_blocks[i].version->major; |
| 327 | ip.hw_ip_version_minor = adev->ip_blocks[i].version->minor; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 328 | ip.capabilities_flags = 0; |
| 329 | ip.available_rings = ring_mask; |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 330 | ip.ib_start_alignment = ib_start_alignment; |
| 331 | ip.ib_size_alignment = ib_size_alignment; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 332 | break; |
| 333 | } |
| 334 | } |
| 335 | return copy_to_user(out, &ip, |
| 336 | min((size_t)size, sizeof(ip))) ? -EFAULT : 0; |
| 337 | } |
| 338 | case AMDGPU_INFO_HW_IP_COUNT: { |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 339 | enum amd_ip_block_type type; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 340 | uint32_t count = 0; |
| 341 | |
| 342 | switch (info->query_hw_ip.type) { |
| 343 | case AMDGPU_HW_IP_GFX: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 344 | type = AMD_IP_BLOCK_TYPE_GFX; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 345 | break; |
| 346 | case AMDGPU_HW_IP_COMPUTE: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 347 | type = AMD_IP_BLOCK_TYPE_GFX; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 348 | break; |
| 349 | case AMDGPU_HW_IP_DMA: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 350 | type = AMD_IP_BLOCK_TYPE_SDMA; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 351 | break; |
| 352 | case AMDGPU_HW_IP_UVD: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 353 | type = AMD_IP_BLOCK_TYPE_UVD; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 354 | break; |
| 355 | case AMDGPU_HW_IP_VCE: |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 356 | type = AMD_IP_BLOCK_TYPE_VCE; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 357 | break; |
Leo Liu | 63defd3 | 2017-01-10 11:50:08 -0500 | [diff] [blame] | 358 | case AMDGPU_HW_IP_UVD_ENC: |
| 359 | type = AMD_IP_BLOCK_TYPE_UVD; |
| 360 | break; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 361 | default: |
| 362 | return -EINVAL; |
| 363 | } |
| 364 | |
| 365 | for (i = 0; i < adev->num_ip_blocks; i++) |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 366 | if (adev->ip_blocks[i].version->type == type && |
| 367 | adev->ip_blocks[i].status.valid && |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 368 | count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT) |
| 369 | count++; |
| 370 | |
| 371 | return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0; |
| 372 | } |
| 373 | case AMDGPU_INFO_TIMESTAMP: |
Alex Deucher | b95e31f | 2016-07-07 15:01:42 -0400 | [diff] [blame] | 374 | ui64 = amdgpu_gfx_get_gpu_clock_counter(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 375 | return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0; |
| 376 | case AMDGPU_INFO_FW_VERSION: { |
| 377 | struct drm_amdgpu_info_firmware fw_info; |
Huang Rui | 000cab9 | 2016-06-12 15:44:44 +0800 | [diff] [blame] | 378 | int ret; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 379 | |
| 380 | /* We only support one instance of each IP block right now. */ |
| 381 | if (info->query_fw.ip_instance != 0) |
| 382 | return -EINVAL; |
| 383 | |
Huang Rui | 000cab9 | 2016-06-12 15:44:44 +0800 | [diff] [blame] | 384 | ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev); |
| 385 | if (ret) |
| 386 | return ret; |
| 387 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 388 | return copy_to_user(out, &fw_info, |
| 389 | min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0; |
| 390 | } |
| 391 | case AMDGPU_INFO_NUM_BYTES_MOVED: |
| 392 | ui64 = atomic64_read(&adev->num_bytes_moved); |
| 393 | return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0; |
Marek Olšák | 83a59b6 | 2016-08-17 23:58:58 +0200 | [diff] [blame] | 394 | case AMDGPU_INFO_NUM_EVICTIONS: |
| 395 | ui64 = atomic64_read(&adev->num_evictions); |
| 396 | return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 397 | case AMDGPU_INFO_VRAM_USAGE: |
| 398 | ui64 = atomic64_read(&adev->vram_usage); |
| 399 | return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0; |
| 400 | case AMDGPU_INFO_VIS_VRAM_USAGE: |
| 401 | ui64 = atomic64_read(&adev->vram_vis_usage); |
| 402 | return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0; |
| 403 | case AMDGPU_INFO_GTT_USAGE: |
| 404 | ui64 = atomic64_read(&adev->gtt_usage); |
| 405 | return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0; |
| 406 | case AMDGPU_INFO_GDS_CONFIG: { |
| 407 | struct drm_amdgpu_info_gds gds_info; |
| 408 | |
Alex Deucher | c92b90c | 2015-04-30 11:47:03 -0400 | [diff] [blame] | 409 | memset(&gds_info, 0, sizeof(gds_info)); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 410 | gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT; |
| 411 | gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT; |
| 412 | gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT; |
| 413 | gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT; |
| 414 | gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT; |
| 415 | gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT; |
| 416 | gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT; |
| 417 | return copy_to_user(out, &gds_info, |
| 418 | min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0; |
| 419 | } |
| 420 | case AMDGPU_INFO_VRAM_GTT: { |
| 421 | struct drm_amdgpu_info_vram_gtt vram_gtt; |
| 422 | |
| 423 | vram_gtt.vram_size = adev->mc.real_vram_size; |
Chunming Zhou | 7c0ecda | 2016-04-01 17:05:30 +0800 | [diff] [blame] | 424 | vram_gtt.vram_size -= adev->vram_pin_size; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 425 | vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size; |
Chunming Zhou | e131b91 | 2016-04-05 10:48:48 +0800 | [diff] [blame] | 426 | vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 427 | vram_gtt.gtt_size = adev->mc.gtt_size; |
| 428 | vram_gtt.gtt_size -= adev->gart_pin_size; |
| 429 | return copy_to_user(out, &vram_gtt, |
| 430 | min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0; |
| 431 | } |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 432 | case AMDGPU_INFO_MEMORY: { |
| 433 | struct drm_amdgpu_memory_info mem; |
Junwei Zhang | 9f6163e | 2016-09-21 10:17:22 +0800 | [diff] [blame] | 434 | |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 435 | memset(&mem, 0, sizeof(mem)); |
| 436 | mem.vram.total_heap_size = adev->mc.real_vram_size; |
| 437 | mem.vram.usable_heap_size = |
| 438 | adev->mc.real_vram_size - adev->vram_pin_size; |
| 439 | mem.vram.heap_usage = atomic64_read(&adev->vram_usage); |
| 440 | mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4; |
Junwei Zhang | cfa3255 | 2016-09-21 10:33:26 +0800 | [diff] [blame] | 441 | |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 442 | mem.cpu_accessible_vram.total_heap_size = |
| 443 | adev->mc.visible_vram_size; |
| 444 | mem.cpu_accessible_vram.usable_heap_size = |
| 445 | adev->mc.visible_vram_size - |
| 446 | (adev->vram_pin_size - adev->invisible_pin_size); |
| 447 | mem.cpu_accessible_vram.heap_usage = |
| 448 | atomic64_read(&adev->vram_vis_usage); |
| 449 | mem.cpu_accessible_vram.max_allocation = |
| 450 | mem.cpu_accessible_vram.usable_heap_size * 3 / 4; |
Junwei Zhang | cfa3255 | 2016-09-21 10:33:26 +0800 | [diff] [blame] | 451 | |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 452 | mem.gtt.total_heap_size = adev->mc.gtt_size; |
| 453 | mem.gtt.usable_heap_size = |
| 454 | adev->mc.gtt_size - adev->gart_pin_size; |
| 455 | mem.gtt.heap_usage = atomic64_read(&adev->gtt_usage); |
| 456 | mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4; |
Junwei Zhang | cfa3255 | 2016-09-21 10:33:26 +0800 | [diff] [blame] | 457 | |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 458 | return copy_to_user(out, &mem, |
| 459 | min((size_t)size, sizeof(mem))) |
Junwei Zhang | cfa3255 | 2016-09-21 10:33:26 +0800 | [diff] [blame] | 460 | ? -EFAULT : 0; |
| 461 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 462 | case AMDGPU_INFO_READ_MMR_REG: { |
Dan Carpenter | 0d2edd3 | 2015-09-23 14:00:12 +0300 | [diff] [blame] | 463 | unsigned n, alloc_size; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 464 | uint32_t *regs; |
| 465 | unsigned se_num = (info->read_mmr_reg.instance >> |
| 466 | AMDGPU_INFO_MMR_SE_INDEX_SHIFT) & |
| 467 | AMDGPU_INFO_MMR_SE_INDEX_MASK; |
| 468 | unsigned sh_num = (info->read_mmr_reg.instance >> |
| 469 | AMDGPU_INFO_MMR_SH_INDEX_SHIFT) & |
| 470 | AMDGPU_INFO_MMR_SH_INDEX_MASK; |
| 471 | |
| 472 | /* set full masks if the userspace set all bits |
| 473 | * in the bitfields */ |
| 474 | if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK) |
| 475 | se_num = 0xffffffff; |
| 476 | if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK) |
| 477 | sh_num = 0xffffffff; |
| 478 | |
Dan Carpenter | 0d2edd3 | 2015-09-23 14:00:12 +0300 | [diff] [blame] | 479 | regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 480 | if (!regs) |
| 481 | return -ENOMEM; |
Dan Carpenter | 0d2edd3 | 2015-09-23 14:00:12 +0300 | [diff] [blame] | 482 | alloc_size = info->read_mmr_reg.count * sizeof(*regs); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 483 | |
| 484 | for (i = 0; i < info->read_mmr_reg.count; i++) |
| 485 | if (amdgpu_asic_read_register(adev, se_num, sh_num, |
| 486 | info->read_mmr_reg.dword_offset + i, |
| 487 | ®s[i])) { |
| 488 | DRM_DEBUG_KMS("unallowed offset %#x\n", |
| 489 | info->read_mmr_reg.dword_offset + i); |
| 490 | kfree(regs); |
| 491 | return -EFAULT; |
| 492 | } |
| 493 | n = copy_to_user(out, regs, min(size, alloc_size)); |
| 494 | kfree(regs); |
| 495 | return n ? -EFAULT : 0; |
| 496 | } |
| 497 | case AMDGPU_INFO_DEV_INFO: { |
Dan Carpenter | c193fa91 | 2015-07-28 18:51:29 +0300 | [diff] [blame] | 498 | struct drm_amdgpu_info_device dev_info = {}; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 499 | |
| 500 | dev_info.device_id = dev->pdev->device; |
| 501 | dev_info.chip_rev = adev->rev_id; |
| 502 | dev_info.external_rev = adev->external_rev_id; |
| 503 | dev_info.pci_rev = dev->pdev->revision; |
| 504 | dev_info.family = adev->family; |
| 505 | dev_info.num_shader_engines = adev->gfx.config.max_shader_engines; |
| 506 | dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se; |
| 507 | /* return all clocks in KHz */ |
| 508 | dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10; |
Ken Wang | 32bf710 | 2015-06-03 17:36:54 +0800 | [diff] [blame] | 509 | if (adev->pm.dpm_enabled) { |
Evan Quan | 1304f0c | 2016-10-17 09:49:29 +0800 | [diff] [blame] | 510 | dev_info.max_engine_clock = amdgpu_dpm_get_sclk(adev, false) * 10; |
| 511 | dev_info.max_memory_clock = amdgpu_dpm_get_mclk(adev, false) * 10; |
Ken Wang | 32bf710 | 2015-06-03 17:36:54 +0800 | [diff] [blame] | 512 | } else { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 513 | dev_info.max_engine_clock = adev->pm.default_sclk * 10; |
Ken Wang | 32bf710 | 2015-06-03 17:36:54 +0800 | [diff] [blame] | 514 | dev_info.max_memory_clock = adev->pm.default_mclk * 10; |
| 515 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 516 | dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask; |
Alex Deucher | 0b10029 | 2016-06-17 10:17:17 -0400 | [diff] [blame] | 517 | dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se * |
| 518 | adev->gfx.config.max_shader_engines; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 519 | dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts; |
| 520 | dev_info._pad = 0; |
| 521 | dev_info.ids_flags = 0; |
Jammy Zhou | 2f7d10b | 2015-07-22 11:29:01 +0800 | [diff] [blame] | 522 | if (adev->flags & AMD_IS_APU) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 523 | dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION; |
Monk Liu | aafcafa | 2016-10-24 11:36:17 +0800 | [diff] [blame] | 524 | if (amdgpu_sriov_vf(adev)) |
| 525 | dev_info.ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 526 | dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE; |
Jammy Zhou | 02b70c8 | 2015-05-12 22:46:45 +0800 | [diff] [blame] | 527 | dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE; |
Christian König | c548b34 | 2015-08-07 20:22:40 +0200 | [diff] [blame] | 528 | dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 529 | dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) * |
| 530 | AMDGPU_GPU_PAGE_SIZE; |
| 531 | dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE; |
| 532 | |
Alex Deucher | 7dae69a | 2016-05-03 16:25:53 -0400 | [diff] [blame] | 533 | dev_info.cu_active_number = adev->gfx.cu_info.number; |
| 534 | dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask; |
Ken Wang | a101a89 | 2015-06-03 17:47:54 +0800 | [diff] [blame] | 535 | dev_info.ce_ram_size = adev->gfx.ce_ram_size; |
Alex Deucher | 7dae69a | 2016-05-03 16:25:53 -0400 | [diff] [blame] | 536 | memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0], |
| 537 | sizeof(adev->gfx.cu_info.bitmap)); |
Ken Wang | 81c59f5 | 2015-06-03 21:02:01 +0800 | [diff] [blame] | 538 | dev_info.vram_type = adev->mc.vram_type; |
| 539 | dev_info.vram_bit_width = adev->mc.vram_width; |
Leo Liu | fa92754 | 2015-07-13 12:46:23 -0400 | [diff] [blame] | 540 | dev_info.vce_harvest_config = adev->vce.harvest_config; |
Junwei Zhang | df6e2c4 | 2017-02-17 11:05:49 +0800 | [diff] [blame] | 541 | dev_info.gc_double_offchip_lds_buf = |
| 542 | adev->gfx.config.double_offchip_lds_buf; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 543 | |
Alex Deucher | bce23e0 | 2017-03-28 12:52:08 -0400 | [diff] [blame] | 544 | if (amdgpu_ngg) { |
| 545 | dev_info.prim_buf_gpu_addr = adev->gfx.ngg.buf[PRIM].gpu_addr; |
| 546 | dev_info.pos_buf_gpu_addr = adev->gfx.ngg.buf[POS].gpu_addr; |
| 547 | dev_info.cntl_sb_buf_gpu_addr = adev->gfx.ngg.buf[CNTL].gpu_addr; |
| 548 | dev_info.param_buf_gpu_addr = adev->gfx.ngg.buf[PARAM].gpu_addr; |
| 549 | } |
| 550 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 551 | return copy_to_user(out, &dev_info, |
| 552 | min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0; |
| 553 | } |
Alex Deucher | 07fecde | 2016-10-07 12:22:02 -0400 | [diff] [blame] | 554 | case AMDGPU_INFO_VCE_CLOCK_TABLE: { |
| 555 | unsigned i; |
| 556 | struct drm_amdgpu_info_vce_clock_table vce_clk_table = {}; |
| 557 | struct amd_vce_state *vce_state; |
| 558 | |
| 559 | for (i = 0; i < AMDGPU_VCE_CLOCK_TABLE_ENTRIES; i++) { |
| 560 | vce_state = amdgpu_dpm_get_vce_clock_state(adev, i); |
| 561 | if (vce_state) { |
| 562 | vce_clk_table.entries[i].sclk = vce_state->sclk; |
| 563 | vce_clk_table.entries[i].mclk = vce_state->mclk; |
| 564 | vce_clk_table.entries[i].eclk = vce_state->evclk; |
| 565 | vce_clk_table.num_valid_entries++; |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | return copy_to_user(out, &vce_clk_table, |
| 570 | min((size_t)size, sizeof(vce_clk_table))) ? -EFAULT : 0; |
| 571 | } |
Evan Quan | 40ee588 | 2016-12-07 10:05:09 +0800 | [diff] [blame] | 572 | case AMDGPU_INFO_VBIOS: { |
| 573 | uint32_t bios_size = adev->bios_size; |
| 574 | |
| 575 | switch (info->vbios_info.type) { |
| 576 | case AMDGPU_INFO_VBIOS_SIZE: |
| 577 | return copy_to_user(out, &bios_size, |
| 578 | min((size_t)size, sizeof(bios_size))) |
| 579 | ? -EFAULT : 0; |
| 580 | case AMDGPU_INFO_VBIOS_IMAGE: { |
| 581 | uint8_t *bios; |
| 582 | uint32_t bios_offset = info->vbios_info.offset; |
| 583 | |
| 584 | if (bios_offset >= bios_size) |
| 585 | return -EINVAL; |
| 586 | |
| 587 | bios = adev->bios + bios_offset; |
| 588 | return copy_to_user(out, bios, |
| 589 | min((size_t)size, (size_t)(bios_size - bios_offset))) |
| 590 | ? -EFAULT : 0; |
| 591 | } |
| 592 | default: |
| 593 | DRM_DEBUG_KMS("Invalid request %d\n", |
| 594 | info->vbios_info.type); |
| 595 | return -EINVAL; |
| 596 | } |
| 597 | } |
Arindam Nath | 44879b6 | 2016-12-12 15:29:33 +0530 | [diff] [blame] | 598 | case AMDGPU_INFO_NUM_HANDLES: { |
| 599 | struct drm_amdgpu_info_num_handles handle; |
| 600 | |
| 601 | switch (info->query_hw_ip.type) { |
| 602 | case AMDGPU_HW_IP_UVD: |
| 603 | /* Starting Polaris, we support unlimited UVD handles */ |
| 604 | if (adev->asic_type < CHIP_POLARIS10) { |
| 605 | handle.uvd_max_handles = adev->uvd.max_handles; |
| 606 | handle.uvd_used_handles = amdgpu_uvd_used_handles(adev); |
| 607 | |
| 608 | return copy_to_user(out, &handle, |
| 609 | min((size_t)size, sizeof(handle))) ? -EFAULT : 0; |
| 610 | } else { |
| 611 | return -ENODATA; |
| 612 | } |
| 613 | |
| 614 | break; |
| 615 | default: |
| 616 | return -EINVAL; |
| 617 | } |
| 618 | } |
Alex Deucher | 5ebbac4 | 2017-03-08 18:25:15 -0500 | [diff] [blame] | 619 | case AMDGPU_INFO_SENSOR: { |
| 620 | struct pp_gpu_power query = {0}; |
| 621 | int query_size = sizeof(query); |
| 622 | |
| 623 | if (amdgpu_dpm == 0) |
| 624 | return -ENOENT; |
| 625 | |
| 626 | switch (info->sensor_info.type) { |
| 627 | case AMDGPU_INFO_SENSOR_GFX_SCLK: |
| 628 | /* get sclk in Mhz */ |
| 629 | if (amdgpu_dpm_read_sensor(adev, |
| 630 | AMDGPU_PP_SENSOR_GFX_SCLK, |
| 631 | (void *)&ui32, &ui32_size)) { |
| 632 | return -EINVAL; |
| 633 | } |
| 634 | ui32 /= 100; |
| 635 | break; |
| 636 | case AMDGPU_INFO_SENSOR_GFX_MCLK: |
| 637 | /* get mclk in Mhz */ |
| 638 | if (amdgpu_dpm_read_sensor(adev, |
| 639 | AMDGPU_PP_SENSOR_GFX_MCLK, |
| 640 | (void *)&ui32, &ui32_size)) { |
| 641 | return -EINVAL; |
| 642 | } |
| 643 | ui32 /= 100; |
| 644 | break; |
| 645 | case AMDGPU_INFO_SENSOR_GPU_TEMP: |
| 646 | /* get temperature in millidegrees C */ |
| 647 | if (amdgpu_dpm_read_sensor(adev, |
| 648 | AMDGPU_PP_SENSOR_GPU_TEMP, |
| 649 | (void *)&ui32, &ui32_size)) { |
| 650 | return -EINVAL; |
| 651 | } |
| 652 | break; |
| 653 | case AMDGPU_INFO_SENSOR_GPU_LOAD: |
| 654 | /* get GPU load */ |
| 655 | if (amdgpu_dpm_read_sensor(adev, |
| 656 | AMDGPU_PP_SENSOR_GPU_LOAD, |
| 657 | (void *)&ui32, &ui32_size)) { |
| 658 | return -EINVAL; |
| 659 | } |
| 660 | break; |
| 661 | case AMDGPU_INFO_SENSOR_GPU_AVG_POWER: |
| 662 | /* get average GPU power */ |
| 663 | if (amdgpu_dpm_read_sensor(adev, |
| 664 | AMDGPU_PP_SENSOR_GPU_POWER, |
| 665 | (void *)&query, &query_size)) { |
| 666 | return -EINVAL; |
| 667 | } |
| 668 | ui32 = query.average_gpu_power >> 8; |
| 669 | break; |
| 670 | case AMDGPU_INFO_SENSOR_VDDNB: |
| 671 | /* get VDDNB in millivolts */ |
| 672 | if (amdgpu_dpm_read_sensor(adev, |
| 673 | AMDGPU_PP_SENSOR_VDDNB, |
| 674 | (void *)&ui32, &ui32_size)) { |
| 675 | return -EINVAL; |
| 676 | } |
| 677 | break; |
| 678 | case AMDGPU_INFO_SENSOR_VDDGFX: |
| 679 | /* get VDDGFX in millivolts */ |
| 680 | if (amdgpu_dpm_read_sensor(adev, |
| 681 | AMDGPU_PP_SENSOR_VDDGFX, |
| 682 | (void *)&ui32, &ui32_size)) { |
| 683 | return -EINVAL; |
| 684 | } |
| 685 | break; |
| 686 | default: |
| 687 | DRM_DEBUG_KMS("Invalid request %d\n", |
| 688 | info->sensor_info.type); |
| 689 | return -EINVAL; |
| 690 | } |
| 691 | return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0; |
| 692 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 693 | default: |
| 694 | DRM_DEBUG_KMS("Invalid request %d\n", info->query); |
| 695 | return -EINVAL; |
| 696 | } |
| 697 | return 0; |
| 698 | } |
| 699 | |
| 700 | |
| 701 | /* |
| 702 | * Outdated mess for old drm with Xorg being in charge (void function now). |
| 703 | */ |
| 704 | /** |
Alex Deucher | 8b7530b | 2015-10-02 16:59:34 -0400 | [diff] [blame] | 705 | * amdgpu_driver_lastclose_kms - drm callback for last close |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 706 | * |
| 707 | * @dev: drm dev pointer |
| 708 | * |
Lukas Wunner | 1694467 | 2015-09-05 11:17:35 +0200 | [diff] [blame] | 709 | * Switch vga_switcheroo state after last close (all asics). |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 710 | */ |
| 711 | void amdgpu_driver_lastclose_kms(struct drm_device *dev) |
| 712 | { |
Alex Deucher | 8b7530b | 2015-10-02 16:59:34 -0400 | [diff] [blame] | 713 | struct amdgpu_device *adev = dev->dev_private; |
| 714 | |
| 715 | amdgpu_fbdev_restore_mode(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 716 | vga_switcheroo_process_delayed_switch(); |
| 717 | } |
| 718 | |
| 719 | /** |
| 720 | * amdgpu_driver_open_kms - drm callback for open |
| 721 | * |
| 722 | * @dev: drm dev pointer |
| 723 | * @file_priv: drm file |
| 724 | * |
| 725 | * On device open, init vm on cayman+ (all asics). |
| 726 | * Returns 0 on success, error on failure. |
| 727 | */ |
| 728 | int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv) |
| 729 | { |
| 730 | struct amdgpu_device *adev = dev->dev_private; |
| 731 | struct amdgpu_fpriv *fpriv; |
| 732 | int r; |
| 733 | |
| 734 | file_priv->driver_priv = NULL; |
| 735 | |
| 736 | r = pm_runtime_get_sync(dev->dev); |
| 737 | if (r < 0) |
| 738 | return r; |
| 739 | |
| 740 | fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL); |
Alex Deucher | dc08267 | 2016-08-27 12:30:25 -0400 | [diff] [blame] | 741 | if (unlikely(!fpriv)) { |
| 742 | r = -ENOMEM; |
| 743 | goto out_suspend; |
| 744 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 745 | |
| 746 | r = amdgpu_vm_init(adev, &fpriv->vm); |
Alex Deucher | dc08267 | 2016-08-27 12:30:25 -0400 | [diff] [blame] | 747 | if (r) { |
| 748 | kfree(fpriv); |
| 749 | goto out_suspend; |
| 750 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 751 | |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 752 | fpriv->prt_va = amdgpu_vm_bo_add(adev, &fpriv->vm, NULL); |
| 753 | if (!fpriv->prt_va) { |
| 754 | r = -ENOMEM; |
| 755 | amdgpu_vm_fini(adev, &fpriv->vm); |
| 756 | kfree(fpriv); |
| 757 | goto out_suspend; |
| 758 | } |
| 759 | |
Monk Liu | 2493664 | 2017-01-09 15:54:32 +0800 | [diff] [blame] | 760 | if (amdgpu_sriov_vf(adev)) { |
| 761 | r = amdgpu_map_static_csa(adev, &fpriv->vm); |
| 762 | if (r) |
| 763 | goto out_suspend; |
| 764 | } |
| 765 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 766 | mutex_init(&fpriv->bo_list_lock); |
| 767 | idr_init(&fpriv->bo_list_handles); |
| 768 | |
Christian König | efd4ccb | 2015-08-04 16:20:31 +0200 | [diff] [blame] | 769 | amdgpu_ctx_mgr_init(&fpriv->ctx_mgr); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 770 | |
| 771 | file_priv->driver_priv = fpriv; |
| 772 | |
Alex Deucher | dc08267 | 2016-08-27 12:30:25 -0400 | [diff] [blame] | 773 | out_suspend: |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 774 | pm_runtime_mark_last_busy(dev->dev); |
| 775 | pm_runtime_put_autosuspend(dev->dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 776 | |
| 777 | return r; |
| 778 | } |
| 779 | |
| 780 | /** |
| 781 | * amdgpu_driver_postclose_kms - drm callback for post close |
| 782 | * |
| 783 | * @dev: drm dev pointer |
| 784 | * @file_priv: drm file |
| 785 | * |
| 786 | * On device post close, tear down vm on cayman+ (all asics). |
| 787 | */ |
| 788 | void amdgpu_driver_postclose_kms(struct drm_device *dev, |
| 789 | struct drm_file *file_priv) |
| 790 | { |
| 791 | struct amdgpu_device *adev = dev->dev_private; |
| 792 | struct amdgpu_fpriv *fpriv = file_priv->driver_priv; |
| 793 | struct amdgpu_bo_list *list; |
| 794 | int handle; |
| 795 | |
| 796 | if (!fpriv) |
| 797 | return; |
| 798 | |
Daniel Vetter | 04e30c9 | 2017-03-08 15:12:52 +0100 | [diff] [blame] | 799 | pm_runtime_get_sync(dev->dev); |
| 800 | |
Christian König | 02537d6 | 2015-08-25 15:05:20 +0200 | [diff] [blame] | 801 | amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr); |
| 802 | |
Leo Liu | cd437e3 | 2016-07-22 14:13:11 -0400 | [diff] [blame] | 803 | amdgpu_uvd_free_handles(adev, file_priv); |
| 804 | amdgpu_vce_free_handles(adev, file_priv); |
| 805 | |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 806 | amdgpu_vm_bo_rmv(adev, fpriv->prt_va); |
| 807 | |
Monk Liu | 2493664 | 2017-01-09 15:54:32 +0800 | [diff] [blame] | 808 | if (amdgpu_sriov_vf(adev)) { |
| 809 | /* TODO: how to handle reserve failure */ |
| 810 | BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, false)); |
| 811 | amdgpu_vm_bo_rmv(adev, fpriv->vm.csa_bo_va); |
| 812 | fpriv->vm.csa_bo_va = NULL; |
| 813 | amdgpu_bo_unreserve(adev->virt.csa_obj); |
| 814 | } |
| 815 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 816 | amdgpu_vm_fini(adev, &fpriv->vm); |
| 817 | |
| 818 | idr_for_each_entry(&fpriv->bo_list_handles, list, handle) |
| 819 | amdgpu_bo_list_free(list); |
| 820 | |
| 821 | idr_destroy(&fpriv->bo_list_handles); |
| 822 | mutex_destroy(&fpriv->bo_list_lock); |
| 823 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 824 | kfree(fpriv); |
| 825 | file_priv->driver_priv = NULL; |
Alex Deucher | d6bda7b | 2016-08-27 12:27:24 -0400 | [diff] [blame] | 826 | |
| 827 | pm_runtime_mark_last_busy(dev->dev); |
| 828 | pm_runtime_put_autosuspend(dev->dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 829 | } |
| 830 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 831 | /* |
| 832 | * VBlank related functions. |
| 833 | */ |
| 834 | /** |
| 835 | * amdgpu_get_vblank_counter_kms - get frame count |
| 836 | * |
| 837 | * @dev: drm dev pointer |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 838 | * @pipe: crtc to get the frame count from |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 839 | * |
| 840 | * Gets the frame count on the requested crtc (all asics). |
| 841 | * Returns frame count on success, -EINVAL on failure. |
| 842 | */ |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 843 | u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 844 | { |
| 845 | struct amdgpu_device *adev = dev->dev_private; |
Alex Deucher | 8e36f9d | 2015-12-03 12:31:56 -0500 | [diff] [blame] | 846 | int vpos, hpos, stat; |
| 847 | u32 count; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 848 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 849 | if (pipe >= adev->mode_info.num_crtc) { |
| 850 | DRM_ERROR("Invalid crtc %u\n", pipe); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 851 | return -EINVAL; |
| 852 | } |
| 853 | |
Alex Deucher | 8e36f9d | 2015-12-03 12:31:56 -0500 | [diff] [blame] | 854 | /* The hw increments its frame counter at start of vsync, not at start |
| 855 | * of vblank, as is required by DRM core vblank counter handling. |
| 856 | * Cook the hw count here to make it appear to the caller as if it |
| 857 | * incremented at start of vblank. We measure distance to start of |
| 858 | * vblank in vpos. vpos therefore will be >= 0 between start of vblank |
| 859 | * and start of vsync, so vpos >= 0 means to bump the hw frame counter |
| 860 | * result by 1 to give the proper appearance to caller. |
| 861 | */ |
| 862 | if (adev->mode_info.crtcs[pipe]) { |
| 863 | /* Repeat readout if needed to provide stable result if |
| 864 | * we cross start of vsync during the queries. |
| 865 | */ |
| 866 | do { |
| 867 | count = amdgpu_display_vblank_get_counter(adev, pipe); |
| 868 | /* Ask amdgpu_get_crtc_scanoutpos to return vpos as |
| 869 | * distance to start of vblank, instead of regular |
| 870 | * vertical scanout pos. |
| 871 | */ |
| 872 | stat = amdgpu_get_crtc_scanoutpos( |
| 873 | dev, pipe, GET_DISTANCE_TO_VBLANKSTART, |
| 874 | &vpos, &hpos, NULL, NULL, |
| 875 | &adev->mode_info.crtcs[pipe]->base.hwmode); |
| 876 | } while (count != amdgpu_display_vblank_get_counter(adev, pipe)); |
| 877 | |
| 878 | if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) != |
| 879 | (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) { |
| 880 | DRM_DEBUG_VBL("Query failed! stat %d\n", stat); |
| 881 | } else { |
| 882 | DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n", |
| 883 | pipe, vpos); |
| 884 | |
| 885 | /* Bump counter if we are at >= leading edge of vblank, |
| 886 | * but before vsync where vpos would turn negative and |
| 887 | * the hw counter really increments. |
| 888 | */ |
| 889 | if (vpos >= 0) |
| 890 | count++; |
| 891 | } |
| 892 | } else { |
| 893 | /* Fallback to use value as is. */ |
| 894 | count = amdgpu_display_vblank_get_counter(adev, pipe); |
| 895 | DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n"); |
| 896 | } |
| 897 | |
| 898 | return count; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | /** |
| 902 | * amdgpu_enable_vblank_kms - enable vblank interrupt |
| 903 | * |
| 904 | * @dev: drm dev pointer |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 905 | * @pipe: crtc to enable vblank interrupt for |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 906 | * |
| 907 | * Enable the interrupt on the requested crtc (all asics). |
| 908 | * Returns 0 on success, -EINVAL on failure. |
| 909 | */ |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 910 | int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 911 | { |
| 912 | struct amdgpu_device *adev = dev->dev_private; |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 913 | int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 914 | |
| 915 | return amdgpu_irq_get(adev, &adev->crtc_irq, idx); |
| 916 | } |
| 917 | |
| 918 | /** |
| 919 | * amdgpu_disable_vblank_kms - disable vblank interrupt |
| 920 | * |
| 921 | * @dev: drm dev pointer |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 922 | * @pipe: crtc to disable vblank interrupt for |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 923 | * |
| 924 | * Disable the interrupt on the requested crtc (all asics). |
| 925 | */ |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 926 | void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 927 | { |
| 928 | struct amdgpu_device *adev = dev->dev_private; |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 929 | int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 930 | |
| 931 | amdgpu_irq_put(adev, &adev->crtc_irq, idx); |
| 932 | } |
| 933 | |
| 934 | /** |
| 935 | * amdgpu_get_vblank_timestamp_kms - get vblank timestamp |
| 936 | * |
| 937 | * @dev: drm dev pointer |
| 938 | * @crtc: crtc to get the timestamp for |
| 939 | * @max_error: max error |
| 940 | * @vblank_time: time value |
| 941 | * @flags: flags passed to the driver |
| 942 | * |
| 943 | * Gets the timestamp on the requested crtc based on the |
| 944 | * scanout position. (all asics). |
| 945 | * Returns postive status flags on success, negative error on failure. |
| 946 | */ |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 947 | int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 948 | int *max_error, |
| 949 | struct timeval *vblank_time, |
| 950 | unsigned flags) |
| 951 | { |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 952 | struct drm_crtc *crtc; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 953 | struct amdgpu_device *adev = dev->dev_private; |
| 954 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 955 | if (pipe >= dev->num_crtcs) { |
| 956 | DRM_ERROR("Invalid crtc %u\n", pipe); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 957 | return -EINVAL; |
| 958 | } |
| 959 | |
| 960 | /* Get associated drm_crtc: */ |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 961 | crtc = &adev->mode_info.crtcs[pipe]->base; |
Harry Wentland | 9ddf940 | 2015-11-25 15:42:09 -0500 | [diff] [blame] | 962 | if (!crtc) { |
| 963 | /* This can occur on driver load if some component fails to |
| 964 | * initialize completely and driver is unloaded */ |
| 965 | DRM_ERROR("Uninitialized crtc %d\n", pipe); |
| 966 | return -EINVAL; |
| 967 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 968 | |
| 969 | /* Helper routine in DRM core does all the work: */ |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 970 | return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 971 | vblank_time, flags, |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 972 | &crtc->hwmode); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 973 | } |
| 974 | |
| 975 | const struct drm_ioctl_desc amdgpu_ioctls_kms[] = { |
Daniel Vetter | f8c4714 | 2015-09-08 13:56:30 +0200 | [diff] [blame] | 976 | DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 977 | DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 978 | DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 979 | /* KMS */ |
Daniel Vetter | f8c4714 | 2015-09-08 13:56:30 +0200 | [diff] [blame] | 980 | DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 981 | DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 982 | DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 983 | DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 984 | DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
Junwei Zhang | eef18a8 | 2016-11-04 16:16:10 -0400 | [diff] [blame] | 985 | DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_FENCES, amdgpu_cs_wait_fences_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
Daniel Vetter | f8c4714 | 2015-09-08 13:56:30 +0200 | [diff] [blame] | 986 | DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 987 | DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 988 | DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
| 989 | DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW), |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 990 | }; |
Nils Wallménius | f498d9e | 2016-04-10 16:29:59 +0200 | [diff] [blame] | 991 | const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms); |
Huang Rui | 50ab253 | 2016-06-12 15:51:09 +0800 | [diff] [blame] | 992 | |
| 993 | /* |
| 994 | * Debugfs info |
| 995 | */ |
| 996 | #if defined(CONFIG_DEBUG_FS) |
| 997 | |
| 998 | static int amdgpu_debugfs_firmware_info(struct seq_file *m, void *data) |
| 999 | { |
| 1000 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1001 | struct drm_device *dev = node->minor->dev; |
| 1002 | struct amdgpu_device *adev = dev->dev_private; |
| 1003 | struct drm_amdgpu_info_firmware fw_info; |
| 1004 | struct drm_amdgpu_query_fw query_fw; |
| 1005 | int ret, i; |
| 1006 | |
| 1007 | /* VCE */ |
| 1008 | query_fw.fw_type = AMDGPU_INFO_FW_VCE; |
| 1009 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1010 | if (ret) |
| 1011 | return ret; |
| 1012 | seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n", |
| 1013 | fw_info.feature, fw_info.ver); |
| 1014 | |
| 1015 | /* UVD */ |
| 1016 | query_fw.fw_type = AMDGPU_INFO_FW_UVD; |
| 1017 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1018 | if (ret) |
| 1019 | return ret; |
| 1020 | seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n", |
| 1021 | fw_info.feature, fw_info.ver); |
| 1022 | |
| 1023 | /* GMC */ |
| 1024 | query_fw.fw_type = AMDGPU_INFO_FW_GMC; |
| 1025 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1026 | if (ret) |
| 1027 | return ret; |
| 1028 | seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n", |
| 1029 | fw_info.feature, fw_info.ver); |
| 1030 | |
| 1031 | /* ME */ |
| 1032 | query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME; |
| 1033 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1034 | if (ret) |
| 1035 | return ret; |
| 1036 | seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n", |
| 1037 | fw_info.feature, fw_info.ver); |
| 1038 | |
| 1039 | /* PFP */ |
| 1040 | query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP; |
| 1041 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1042 | if (ret) |
| 1043 | return ret; |
| 1044 | seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n", |
| 1045 | fw_info.feature, fw_info.ver); |
| 1046 | |
| 1047 | /* CE */ |
| 1048 | query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE; |
| 1049 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1050 | if (ret) |
| 1051 | return ret; |
| 1052 | seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n", |
| 1053 | fw_info.feature, fw_info.ver); |
| 1054 | |
| 1055 | /* RLC */ |
| 1056 | query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC; |
| 1057 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1058 | if (ret) |
| 1059 | return ret; |
| 1060 | seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n", |
| 1061 | fw_info.feature, fw_info.ver); |
| 1062 | |
| 1063 | /* MEC */ |
| 1064 | query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC; |
| 1065 | query_fw.index = 0; |
| 1066 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1067 | if (ret) |
| 1068 | return ret; |
| 1069 | seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n", |
| 1070 | fw_info.feature, fw_info.ver); |
| 1071 | |
| 1072 | /* MEC2 */ |
| 1073 | if (adev->asic_type == CHIP_KAVERI || |
| 1074 | (adev->asic_type > CHIP_TOPAZ && adev->asic_type != CHIP_STONEY)) { |
| 1075 | query_fw.index = 1; |
| 1076 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1077 | if (ret) |
| 1078 | return ret; |
| 1079 | seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n", |
| 1080 | fw_info.feature, fw_info.ver); |
| 1081 | } |
| 1082 | |
| 1083 | /* SMC */ |
| 1084 | query_fw.fw_type = AMDGPU_INFO_FW_SMC; |
| 1085 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1086 | if (ret) |
| 1087 | return ret; |
| 1088 | seq_printf(m, "SMC feature version: %u, firmware version: 0x%08x\n", |
| 1089 | fw_info.feature, fw_info.ver); |
| 1090 | |
| 1091 | /* SDMA */ |
| 1092 | query_fw.fw_type = AMDGPU_INFO_FW_SDMA; |
| 1093 | for (i = 0; i < adev->sdma.num_instances; i++) { |
| 1094 | query_fw.index = i; |
| 1095 | ret = amdgpu_firmware_info(&fw_info, &query_fw, adev); |
| 1096 | if (ret) |
| 1097 | return ret; |
| 1098 | seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n", |
| 1099 | i, fw_info.feature, fw_info.ver); |
| 1100 | } |
| 1101 | |
| 1102 | return 0; |
| 1103 | } |
| 1104 | |
| 1105 | static const struct drm_info_list amdgpu_firmware_info_list[] = { |
| 1106 | {"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL}, |
| 1107 | }; |
| 1108 | #endif |
| 1109 | |
| 1110 | int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev) |
| 1111 | { |
| 1112 | #if defined(CONFIG_DEBUG_FS) |
| 1113 | return amdgpu_debugfs_add_files(adev, amdgpu_firmware_info_list, |
| 1114 | ARRAY_SIZE(amdgpu_firmware_info_list)); |
| 1115 | #else |
| 1116 | return 0; |
| 1117 | #endif |
| 1118 | } |