blob: 96c34167078253b26d1ac0cfbc2f2036c07c487d [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
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 Gabbay130e0372015-06-12 21:35:14 +030037#include "amdgpu_amdkfd.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040038
Alex Deucherd38ceaf2015-04-20 16:55:21 -040039/**
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 Bertazi11b3c202017-01-06 15:57:31 -020047void amdgpu_driver_unload_kms(struct drm_device *dev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040048{
49 struct amdgpu_device *adev = dev->dev_private;
50
51 if (adev == NULL)
Gabriel Krisman Bertazi11b3c202017-01-06 15:57:31 -020052 return;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040053
54 if (adev->rmmio == NULL)
55 goto done_free;
56
Xiangliang Yu3149d9d2017-01-12 15:14:36 +080057 if (amdgpu_sriov_vf(adev))
58 amdgpu_virt_request_full_gpu(adev, false);
59
Lukas Wunner4a788542016-06-08 18:47:27 +020060 if (amdgpu_device_is_px(dev)) {
61 pm_runtime_get_sync(dev->dev);
Lukas Wunner6ce62d82016-06-08 18:47:27 +020062 pm_runtime_forbid(dev->dev);
Lukas Wunner4a788542016-06-08 18:47:27 +020063 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040064
Oded Gabbay130e0372015-06-12 21:35:14 +030065 amdgpu_amdkfd_device_fini(adev);
66
Alex Deucherd38ceaf2015-04-20 16:55:21 -040067 amdgpu_acpi_fini(adev);
68
69 amdgpu_device_fini(adev);
70
71done_free:
72 kfree(adev);
73 dev->dev_private = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040074}
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 */
85int 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 Deucher84b15282016-10-31 11:02:31 -040098 (amdgpu_is_atpx_hybrid() ||
99 amdgpu_has_atpx_dgpu_power_cntl()) &&
Lukas Wunner84c8b222017-03-10 21:23:45 +0100100 ((flags & AMD_IS_APU) == 0) &&
101 !pci_is_thunderbolt_attached(dev->pdev))
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800102 flags |= AMD_IS_PX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400103
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 Gabbay130e0372015-06-12 21:35:14 +0300126 amdgpu_amdkfd_load_interface(adev);
127 amdgpu_amdkfd_device_probe(adev);
128 amdgpu_amdkfd_device_init(adev);
129
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130 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 Yu3149d9d2017-01-12 15:14:36 +0800139 if (amdgpu_sriov_vf(adev))
140 amdgpu_virt_release_full_gpu(adev, true);
141
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400142out:
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200143 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 Deucherd38ceaf2015-04-20 16:55:21 -0400147 amdgpu_driver_unload_kms(dev);
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200148 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149
150 return r;
151}
152
Huang Rui000cab92016-06-12 15:44:44 +0800153static 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 Rui6a7ed072017-03-03 19:15:26 -0500206 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 Rui000cab92016-06-12 15:44:44 +0800214 default:
215 return -EINVAL;
216 }
217 return 0;
218}
219
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400220/*
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 */
235static 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 Xieec2c4672017-04-05 16:33:00 -0400240 void __user *out = (void __user *)(uintptr_t)info->return_pointer;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400241 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 Deucher5ebbac42017-03-08 18:25:15 -0500246 int ui32_size = sizeof(ui32);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400247
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 = {};
yanyang15fc3aee2015-05-22 14:39:35 -0400272 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400273 uint32_t ring_mask = 0;
Ken Wang71062f42015-06-04 21:26:57 +0800274 uint32_t ib_start_alignment = 0;
275 uint32_t ib_size_alignment = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276
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:
yanyang15fc3aee2015-05-22 14:39:35 -0400282 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400283 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
284 ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800285 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
286 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400287 break;
288 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400289 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400290 for (i = 0; i < adev->gfx.num_compute_rings; i++)
291 ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800292 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
293 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400294 break;
295 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400296 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherc113ea12015-10-08 16:30:37 -0400297 for (i = 0; i < adev->sdma.num_instances; i++)
298 ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800299 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
300 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400301 break;
302 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400303 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400304 ring_mask = adev->uvd.ring.ready ? 1 : 0;
Ken Wang71062f42015-06-04 21:26:57 +0800305 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
Alex Deucherc4795ca2016-08-22 16:31:36 -0400306 ib_size_alignment = 16;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400307 break;
308 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400309 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucher75c65482016-08-24 16:56:21 -0400310 for (i = 0; i < adev->vce.num_rings; i++)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400311 ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800312 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
Alex Deuchera22f8032016-08-23 10:44:16 -0400313 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400314 break;
Leo Liu63defd32017-01-10 11:50:08 -0500315 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 Deucherd38ceaf2015-04-20 16:55:21 -0400322 default:
323 return -EINVAL;
324 }
325
326 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -0400327 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 Deucherd38ceaf2015-04-20 16:55:21 -0400331 ip.capabilities_flags = 0;
332 ip.available_rings = ring_mask;
Ken Wang71062f42015-06-04 21:26:57 +0800333 ip.ib_start_alignment = ib_start_alignment;
334 ip.ib_size_alignment = ib_size_alignment;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400335 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: {
yanyang15fc3aee2015-05-22 14:39:35 -0400342 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400343 uint32_t count = 0;
344
345 switch (info->query_hw_ip.type) {
346 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400347 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400348 break;
349 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400350 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400351 break;
352 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400353 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400354 break;
355 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400356 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400357 break;
358 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400359 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400360 break;
Leo Liu63defd32017-01-10 11:50:08 -0500361 case AMDGPU_HW_IP_UVD_ENC:
362 type = AMD_IP_BLOCK_TYPE_UVD;
363 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400364 default:
365 return -EINVAL;
366 }
367
368 for (i = 0; i < adev->num_ip_blocks; i++)
Alex Deuchera1255102016-10-13 17:41:13 -0400369 if (adev->ip_blocks[i].version->type == type &&
370 adev->ip_blocks[i].status.valid &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400371 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 Deucherb95e31f2016-07-07 15:01:42 -0400377 ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400378 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 Rui000cab92016-06-12 15:44:44 +0800381 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400382
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 Rui000cab92016-06-12 15:44:44 +0800387 ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
388 if (ret)
389 return ret;
390
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400391 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šák83a59b62016-08-17 23:58:58 +0200397 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 Deucherd38ceaf2015-04-20 16:55:21 -0400400 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 Deucherc92b90c2015-04-30 11:47:03 -0400412 memset(&gds_info, 0, sizeof(gds_info));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400413 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 Zhou7c0ecda2016-04-01 17:05:30 +0800427 vram_gtt.vram_size -= adev->vram_pin_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400428 vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
Chunming Zhoue131b912016-04-05 10:48:48 +0800429 vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400430 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 Zhange0adf6c2016-09-29 09:39:10 +0800435 case AMDGPU_INFO_MEMORY: {
436 struct drm_amdgpu_memory_info mem;
Junwei Zhang9f6163e2016-09-21 10:17:22 +0800437
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800438 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 Zhangcfa32552016-09-21 10:33:26 +0800444
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800445 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 Zhangcfa32552016-09-21 10:33:26 +0800454
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800455 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 Zhangcfa32552016-09-21 10:33:26 +0800460
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800461 return copy_to_user(out, &mem,
462 min((size_t)size, sizeof(mem)))
Junwei Zhangcfa32552016-09-21 10:33:26 +0800463 ? -EFAULT : 0;
464 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400465 case AMDGPU_INFO_READ_MMR_REG: {
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300466 unsigned n, alloc_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400467 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 Carpenter0d2edd32015-09-23 14:00:12 +0300482 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400483 if (!regs)
484 return -ENOMEM;
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300485 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400486
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 &regs[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 Carpenterc193fa912015-07-28 18:51:29 +0300501 struct drm_amdgpu_info_device dev_info = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400502
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 Wang32bf7102015-06-03 17:36:54 +0800512 if (adev->pm.dpm_enabled) {
Evan Quan1304f0c2016-10-17 09:49:29 +0800513 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 Wang32bf7102015-06-03 17:36:54 +0800515 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400516 dev_info.max_engine_clock = adev->pm.default_sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800517 dev_info.max_memory_clock = adev->pm.default_mclk * 10;
518 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400519 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
Alex Deucher0b100292016-06-17 10:17:17 -0400520 dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se *
521 adev->gfx.config.max_shader_engines;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400522 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
523 dev_info._pad = 0;
524 dev_info.ids_flags = 0;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800525 if (adev->flags & AMD_IS_APU)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400526 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
Monk Liuaafcafa2016-10-24 11:36:17 +0800527 if (amdgpu_sriov_vf(adev))
528 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400529 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
Jammy Zhou02b70c82015-05-12 22:46:45 +0800530 dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
Christian Königc548b342015-08-07 20:22:40 +0200531 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400532 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 Deucher7dae69a2016-05-03 16:25:53 -0400536 dev_info.cu_active_number = adev->gfx.cu_info.number;
537 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
Ken Wanga101a892015-06-03 17:47:54 +0800538 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
Alex Deucher7dae69a2016-05-03 16:25:53 -0400539 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
540 sizeof(adev->gfx.cu_info.bitmap));
Ken Wang81c59f52015-06-03 21:02:01 +0800541 dev_info.vram_type = adev->mc.vram_type;
542 dev_info.vram_bit_width = adev->mc.vram_width;
Leo Liufa927542015-07-13 12:46:23 -0400543 dev_info.vce_harvest_config = adev->vce.harvest_config;
Junwei Zhangdf6e2c42017-02-17 11:05:49 +0800544 dev_info.gc_double_offchip_lds_buf =
545 adev->gfx.config.double_offchip_lds_buf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400546
Alex Deucherbce23e02017-03-28 12:52:08 -0400547 if (amdgpu_ngg) {
Guenter Roeckaf8baf12017-05-03 23:49:18 -0700548 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 Deucherbce23e02017-03-28 12:52:08 -0400556 }
Junwei Zhang408bfe72017-04-27 11:12:07 +0800557 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 Deucherf47b77b2017-05-02 15:49:36 -0400563 dev_info.max_gs_waves_per_vgt = adev->gfx.config.max_gs_threads;
Alex Deucherbce23e02017-03-28 12:52:08 -0400564
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400565 return copy_to_user(out, &dev_info,
566 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
567 }
Alex Deucher07fecde2016-10-07 12:22:02 -0400568 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 Quan40ee5882016-12-07 10:05:09 +0800586 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 Nath44879b62016-12-12 15:29:33 +0530612 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 Deucher5ebbac42017-03-08 18:25:15 -0500633 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 Deucherd38ceaf2015-04-20 16:55:21 -0400707 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 Deucher8b7530b2015-10-02 16:59:34 -0400719 * amdgpu_driver_lastclose_kms - drm callback for last close
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400720 *
721 * @dev: drm dev pointer
722 *
Lukas Wunner16944672015-09-05 11:17:35 +0200723 * Switch vga_switcheroo state after last close (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400724 */
725void amdgpu_driver_lastclose_kms(struct drm_device *dev)
726{
Alex Deucher8b7530b2015-10-02 16:59:34 -0400727 struct amdgpu_device *adev = dev->dev_private;
728
729 amdgpu_fbdev_restore_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730 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 */
742int 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 Deucherdc082672016-08-27 12:30:25 -0400755 if (unlikely(!fpriv)) {
756 r = -ENOMEM;
757 goto out_suspend;
758 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400759
760 r = amdgpu_vm_init(adev, &fpriv->vm);
Alex Deucherdc082672016-08-27 12:30:25 -0400761 if (r) {
762 kfree(fpriv);
763 goto out_suspend;
764 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400765
Junwei Zhangb85891b2017-01-16 13:59:01 +0800766 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 Liu24936642017-01-09 15:54:32 +0800774 if (amdgpu_sriov_vf(adev)) {
775 r = amdgpu_map_static_csa(adev, &fpriv->vm);
776 if (r)
777 goto out_suspend;
778 }
779
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400780 mutex_init(&fpriv->bo_list_lock);
781 idr_init(&fpriv->bo_list_handles);
782
Christian Königefd4ccb2015-08-04 16:20:31 +0200783 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400784
785 file_priv->driver_priv = fpriv;
786
Alex Deucherdc082672016-08-27 12:30:25 -0400787out_suspend:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400788 pm_runtime_mark_last_busy(dev->dev);
789 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400790
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 */
802void 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 Vetter04e30c92017-03-08 15:12:52 +0100813 pm_runtime_get_sync(dev->dev);
814
Christian König02537d62015-08-25 15:05:20 +0200815 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
816
Leo Liucd437e32016-07-22 14:13:11 -0400817 amdgpu_uvd_free_handles(adev, file_priv);
818 amdgpu_vce_free_handles(adev, file_priv);
819
Junwei Zhangb85891b2017-01-16 13:59:01 +0800820 amdgpu_vm_bo_rmv(adev, fpriv->prt_va);
821
Monk Liu24936642017-01-09 15:54:32 +0800822 if (amdgpu_sriov_vf(adev)) {
823 /* TODO: how to handle reserve failure */
Michel Dänzerc81a1a72017-04-28 17:28:14 +0900824 BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, true));
Monk Liu24936642017-01-09 15:54:32 +0800825 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 Deucherd38ceaf2015-04-20 16:55:21 -0400830 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 Deucherd38ceaf2015-04-20 16:55:21 -0400838 kfree(fpriv);
839 file_priv->driver_priv = NULL;
Alex Deucherd6bda7b2016-08-27 12:27:24 -0400840
841 pm_runtime_mark_last_busy(dev->dev);
842 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400843}
844
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400845/*
846 * VBlank related functions.
847 */
848/**
849 * amdgpu_get_vblank_counter_kms - get frame count
850 *
851 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200852 * @pipe: crtc to get the frame count from
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400853 *
854 * Gets the frame count on the requested crtc (all asics).
855 * Returns frame count on success, -EINVAL on failure.
856 */
Thierry Reding88e72712015-09-24 18:35:31 +0200857u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400858{
859 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500860 int vpos, hpos, stat;
861 u32 count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400862
Thierry Reding88e72712015-09-24 18:35:31 +0200863 if (pipe >= adev->mode_info.num_crtc) {
864 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400865 return -EINVAL;
866 }
867
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500868 /* 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 Deucherd38ceaf2015-04-20 16:55:21 -0400913}
914
915/**
916 * amdgpu_enable_vblank_kms - enable vblank interrupt
917 *
918 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200919 * @pipe: crtc to enable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400920 *
921 * Enable the interrupt on the requested crtc (all asics).
922 * Returns 0 on success, -EINVAL on failure.
923 */
Thierry Reding88e72712015-09-24 18:35:31 +0200924int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400925{
926 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200927 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400928
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 Reding88e72712015-09-24 18:35:31 +0200936 * @pipe: crtc to disable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400937 *
938 * Disable the interrupt on the requested crtc (all asics).
939 */
Thierry Reding88e72712015-09-24 18:35:31 +0200940void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400941{
942 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200943 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400944
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 Reding88e72712015-09-24 18:35:31 +0200961int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400962 int *max_error,
963 struct timeval *vblank_time,
964 unsigned flags)
965{
Thierry Reding88e72712015-09-24 18:35:31 +0200966 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400967 struct amdgpu_device *adev = dev->dev_private;
968
Thierry Reding88e72712015-09-24 18:35:31 +0200969 if (pipe >= dev->num_crtcs) {
970 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400971 return -EINVAL;
972 }
973
974 /* Get associated drm_crtc: */
Thierry Reding88e72712015-09-24 18:35:31 +0200975 crtc = &adev->mode_info.crtcs[pipe]->base;
Harry Wentland9ddf9402015-11-25 15:42:09 -0500976 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 Deucherd38ceaf2015-04-20 16:55:21 -0400982
983 /* Helper routine in DRM core does all the work: */
Thierry Reding88e72712015-09-24 18:35:31 +0200984 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400985 vblank_time, flags,
Thierry Reding88e72712015-09-24 18:35:31 +0200986 &crtc->hwmode);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400987}
988
989const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200990 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 Deucherd38ceaf2015-04-20 16:55:21 -0400993 /* KMS */
Daniel Vetterf8c47142015-09-08 13:56:30 +0200994 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 Zhangeef18a82016-11-04 16:16:10 -0400999 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_FENCES, amdgpu_cs_wait_fences_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Daniel Vetterf8c47142015-09-08 13:56:30 +02001000 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 Deucherd38ceaf2015-04-20 16:55:21 -04001004};
Nils Wallméniusf498d9e2016-04-10 16:29:59 +02001005const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);
Huang Rui50ab2532016-06-12 15:51:09 +08001006
1007/*
1008 * Debugfs info
1009 */
1010#if defined(CONFIG_DEBUG_FS)
1011
1012static 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 Rui6a7ed072017-03-03 19:15:26 -05001097 /* 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 Rui50ab2532016-06-12 15:51:09 +08001114 /* 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
1136static const struct drm_info_list amdgpu_firmware_info_list[] = {
1137 {"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL},
1138};
1139#endif
1140
1141int 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}