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