blob: 1a77893fa5f32bb900c1ddf007f46bfaa4f41069 [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;
Leo Liubdc799e2017-01-25 15:04:20 -0500322 case AMDGPU_HW_IP_VCN_DEC:
323 type = AMD_IP_BLOCK_TYPE_VCN;
324 ring_mask = adev->vcn.ring_dec.ready ? 1 : 0;
325 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
326 ib_size_alignment = 16;
327 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400328 default:
329 return -EINVAL;
330 }
331
332 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -0400333 if (adev->ip_blocks[i].version->type == type &&
334 adev->ip_blocks[i].status.valid) {
335 ip.hw_ip_version_major = adev->ip_blocks[i].version->major;
336 ip.hw_ip_version_minor = adev->ip_blocks[i].version->minor;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400337 ip.capabilities_flags = 0;
338 ip.available_rings = ring_mask;
Ken Wang71062f42015-06-04 21:26:57 +0800339 ip.ib_start_alignment = ib_start_alignment;
340 ip.ib_size_alignment = ib_size_alignment;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400341 break;
342 }
343 }
344 return copy_to_user(out, &ip,
345 min((size_t)size, sizeof(ip))) ? -EFAULT : 0;
346 }
347 case AMDGPU_INFO_HW_IP_COUNT: {
yanyang15fc3aee2015-05-22 14:39:35 -0400348 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400349 uint32_t count = 0;
350
351 switch (info->query_hw_ip.type) {
352 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400353 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400354 break;
355 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400356 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400357 break;
358 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400359 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400360 break;
361 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400362 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400363 break;
364 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400365 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400366 break;
Leo Liu63defd32017-01-10 11:50:08 -0500367 case AMDGPU_HW_IP_UVD_ENC:
368 type = AMD_IP_BLOCK_TYPE_UVD;
369 break;
Leo Liubdc799e2017-01-25 15:04:20 -0500370 case AMDGPU_HW_IP_VCN_DEC:
371 type = AMD_IP_BLOCK_TYPE_VCN;
372 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400373 default:
374 return -EINVAL;
375 }
376
377 for (i = 0; i < adev->num_ip_blocks; i++)
Alex Deuchera1255102016-10-13 17:41:13 -0400378 if (adev->ip_blocks[i].version->type == type &&
379 adev->ip_blocks[i].status.valid &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400380 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
381 count++;
382
383 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
384 }
385 case AMDGPU_INFO_TIMESTAMP:
Alex Deucherb95e31f2016-07-07 15:01:42 -0400386 ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400387 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
388 case AMDGPU_INFO_FW_VERSION: {
389 struct drm_amdgpu_info_firmware fw_info;
Huang Rui000cab92016-06-12 15:44:44 +0800390 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400391
392 /* We only support one instance of each IP block right now. */
393 if (info->query_fw.ip_instance != 0)
394 return -EINVAL;
395
Huang Rui000cab92016-06-12 15:44:44 +0800396 ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
397 if (ret)
398 return ret;
399
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400400 return copy_to_user(out, &fw_info,
401 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
402 }
403 case AMDGPU_INFO_NUM_BYTES_MOVED:
404 ui64 = atomic64_read(&adev->num_bytes_moved);
405 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
Marek Olšák83a59b62016-08-17 23:58:58 +0200406 case AMDGPU_INFO_NUM_EVICTIONS:
407 ui64 = atomic64_read(&adev->num_evictions);
408 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400409 case AMDGPU_INFO_VRAM_USAGE:
410 ui64 = atomic64_read(&adev->vram_usage);
411 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
412 case AMDGPU_INFO_VIS_VRAM_USAGE:
413 ui64 = atomic64_read(&adev->vram_vis_usage);
414 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
415 case AMDGPU_INFO_GTT_USAGE:
416 ui64 = atomic64_read(&adev->gtt_usage);
417 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
418 case AMDGPU_INFO_GDS_CONFIG: {
419 struct drm_amdgpu_info_gds gds_info;
420
Alex Deucherc92b90c2015-04-30 11:47:03 -0400421 memset(&gds_info, 0, sizeof(gds_info));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400422 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT;
423 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT;
424 gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT;
425 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT;
426 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT;
427 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT;
428 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT;
429 return copy_to_user(out, &gds_info,
430 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
431 }
432 case AMDGPU_INFO_VRAM_GTT: {
433 struct drm_amdgpu_info_vram_gtt vram_gtt;
434
435 vram_gtt.vram_size = adev->mc.real_vram_size;
Chunming Zhou7c0ecda2016-04-01 17:05:30 +0800436 vram_gtt.vram_size -= adev->vram_pin_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400437 vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
Chunming Zhoue131b912016-04-05 10:48:48 +0800438 vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400439 vram_gtt.gtt_size = adev->mc.gtt_size;
440 vram_gtt.gtt_size -= adev->gart_pin_size;
441 return copy_to_user(out, &vram_gtt,
442 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
443 }
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800444 case AMDGPU_INFO_MEMORY: {
445 struct drm_amdgpu_memory_info mem;
Junwei Zhang9f6163e2016-09-21 10:17:22 +0800446
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800447 memset(&mem, 0, sizeof(mem));
448 mem.vram.total_heap_size = adev->mc.real_vram_size;
449 mem.vram.usable_heap_size =
450 adev->mc.real_vram_size - adev->vram_pin_size;
451 mem.vram.heap_usage = atomic64_read(&adev->vram_usage);
452 mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800453
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800454 mem.cpu_accessible_vram.total_heap_size =
455 adev->mc.visible_vram_size;
456 mem.cpu_accessible_vram.usable_heap_size =
457 adev->mc.visible_vram_size -
458 (adev->vram_pin_size - adev->invisible_pin_size);
459 mem.cpu_accessible_vram.heap_usage =
460 atomic64_read(&adev->vram_vis_usage);
461 mem.cpu_accessible_vram.max_allocation =
462 mem.cpu_accessible_vram.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800463
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800464 mem.gtt.total_heap_size = adev->mc.gtt_size;
465 mem.gtt.usable_heap_size =
466 adev->mc.gtt_size - adev->gart_pin_size;
467 mem.gtt.heap_usage = atomic64_read(&adev->gtt_usage);
468 mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800469
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800470 return copy_to_user(out, &mem,
471 min((size_t)size, sizeof(mem)))
Junwei Zhangcfa32552016-09-21 10:33:26 +0800472 ? -EFAULT : 0;
473 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400474 case AMDGPU_INFO_READ_MMR_REG: {
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300475 unsigned n, alloc_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400476 uint32_t *regs;
477 unsigned se_num = (info->read_mmr_reg.instance >>
478 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
479 AMDGPU_INFO_MMR_SE_INDEX_MASK;
480 unsigned sh_num = (info->read_mmr_reg.instance >>
481 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
482 AMDGPU_INFO_MMR_SH_INDEX_MASK;
483
484 /* set full masks if the userspace set all bits
485 * in the bitfields */
486 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
487 se_num = 0xffffffff;
488 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
489 sh_num = 0xffffffff;
490
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300491 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400492 if (!regs)
493 return -ENOMEM;
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300494 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400495
496 for (i = 0; i < info->read_mmr_reg.count; i++)
497 if (amdgpu_asic_read_register(adev, se_num, sh_num,
498 info->read_mmr_reg.dword_offset + i,
499 &regs[i])) {
500 DRM_DEBUG_KMS("unallowed offset %#x\n",
501 info->read_mmr_reg.dword_offset + i);
502 kfree(regs);
503 return -EFAULT;
504 }
505 n = copy_to_user(out, regs, min(size, alloc_size));
506 kfree(regs);
507 return n ? -EFAULT : 0;
508 }
509 case AMDGPU_INFO_DEV_INFO: {
Dan Carpenterc193fa912015-07-28 18:51:29 +0300510 struct drm_amdgpu_info_device dev_info = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400511
512 dev_info.device_id = dev->pdev->device;
513 dev_info.chip_rev = adev->rev_id;
514 dev_info.external_rev = adev->external_rev_id;
515 dev_info.pci_rev = dev->pdev->revision;
516 dev_info.family = adev->family;
517 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
518 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
519 /* return all clocks in KHz */
520 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800521 if (adev->pm.dpm_enabled) {
Evan Quan1304f0c2016-10-17 09:49:29 +0800522 dev_info.max_engine_clock = amdgpu_dpm_get_sclk(adev, false) * 10;
523 dev_info.max_memory_clock = amdgpu_dpm_get_mclk(adev, false) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800524 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400525 dev_info.max_engine_clock = adev->pm.default_sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800526 dev_info.max_memory_clock = adev->pm.default_mclk * 10;
527 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400528 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
Alex Deucher0b100292016-06-17 10:17:17 -0400529 dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se *
530 adev->gfx.config.max_shader_engines;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400531 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
532 dev_info._pad = 0;
533 dev_info.ids_flags = 0;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800534 if (adev->flags & AMD_IS_APU)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400535 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
Monk Liuaafcafa2016-10-24 11:36:17 +0800536 if (amdgpu_sriov_vf(adev))
537 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400538 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
Jammy Zhou02b70c82015-05-12 22:46:45 +0800539 dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
Christian Königc548b342015-08-07 20:22:40 +0200540 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400541 dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
542 AMDGPU_GPU_PAGE_SIZE;
543 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
544
Alex Deucher7dae69a2016-05-03 16:25:53 -0400545 dev_info.cu_active_number = adev->gfx.cu_info.number;
546 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
Ken Wanga101a892015-06-03 17:47:54 +0800547 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
Alex Deucher7dae69a2016-05-03 16:25:53 -0400548 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
549 sizeof(adev->gfx.cu_info.bitmap));
Ken Wang81c59f52015-06-03 21:02:01 +0800550 dev_info.vram_type = adev->mc.vram_type;
551 dev_info.vram_bit_width = adev->mc.vram_width;
Leo Liufa927542015-07-13 12:46:23 -0400552 dev_info.vce_harvest_config = adev->vce.harvest_config;
Junwei Zhangdf6e2c42017-02-17 11:05:49 +0800553 dev_info.gc_double_offchip_lds_buf =
554 adev->gfx.config.double_offchip_lds_buf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400555
Alex Deucherbce23e02017-03-28 12:52:08 -0400556 if (amdgpu_ngg) {
Guenter Roeckaf8baf12017-05-03 23:49:18 -0700557 dev_info.prim_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PRIM].gpu_addr;
558 dev_info.prim_buf_size = adev->gfx.ngg.buf[NGG_PRIM].size;
559 dev_info.pos_buf_gpu_addr = adev->gfx.ngg.buf[NGG_POS].gpu_addr;
560 dev_info.pos_buf_size = adev->gfx.ngg.buf[NGG_POS].size;
561 dev_info.cntl_sb_buf_gpu_addr = adev->gfx.ngg.buf[NGG_CNTL].gpu_addr;
562 dev_info.cntl_sb_buf_size = adev->gfx.ngg.buf[NGG_CNTL].size;
563 dev_info.param_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PARAM].gpu_addr;
564 dev_info.param_buf_size = adev->gfx.ngg.buf[NGG_PARAM].size;
Alex Deucherbce23e02017-03-28 12:52:08 -0400565 }
Junwei Zhang408bfe72017-04-27 11:12:07 +0800566 dev_info.wave_front_size = adev->gfx.cu_info.wave_front_size;
567 dev_info.num_shader_visible_vgprs = adev->gfx.config.max_gprs;
568 dev_info.num_cu_per_sh = adev->gfx.config.max_cu_per_sh;
569 dev_info.num_tcc_blocks = adev->gfx.config.max_texture_channel_caches;
570 dev_info.gs_vgt_table_depth = adev->gfx.config.gs_vgt_table_depth;
571 dev_info.gs_prim_buffer_depth = adev->gfx.config.gs_prim_buffer_depth;
Alex Deucherf47b77b2017-05-02 15:49:36 -0400572 dev_info.max_gs_waves_per_vgt = adev->gfx.config.max_gs_threads;
Alex Deucherbce23e02017-03-28 12:52:08 -0400573
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400574 return copy_to_user(out, &dev_info,
575 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
576 }
Alex Deucher07fecde2016-10-07 12:22:02 -0400577 case AMDGPU_INFO_VCE_CLOCK_TABLE: {
578 unsigned i;
579 struct drm_amdgpu_info_vce_clock_table vce_clk_table = {};
580 struct amd_vce_state *vce_state;
581
582 for (i = 0; i < AMDGPU_VCE_CLOCK_TABLE_ENTRIES; i++) {
583 vce_state = amdgpu_dpm_get_vce_clock_state(adev, i);
584 if (vce_state) {
585 vce_clk_table.entries[i].sclk = vce_state->sclk;
586 vce_clk_table.entries[i].mclk = vce_state->mclk;
587 vce_clk_table.entries[i].eclk = vce_state->evclk;
588 vce_clk_table.num_valid_entries++;
589 }
590 }
591
592 return copy_to_user(out, &vce_clk_table,
593 min((size_t)size, sizeof(vce_clk_table))) ? -EFAULT : 0;
594 }
Evan Quan40ee5882016-12-07 10:05:09 +0800595 case AMDGPU_INFO_VBIOS: {
596 uint32_t bios_size = adev->bios_size;
597
598 switch (info->vbios_info.type) {
599 case AMDGPU_INFO_VBIOS_SIZE:
600 return copy_to_user(out, &bios_size,
601 min((size_t)size, sizeof(bios_size)))
602 ? -EFAULT : 0;
603 case AMDGPU_INFO_VBIOS_IMAGE: {
604 uint8_t *bios;
605 uint32_t bios_offset = info->vbios_info.offset;
606
607 if (bios_offset >= bios_size)
608 return -EINVAL;
609
610 bios = adev->bios + bios_offset;
611 return copy_to_user(out, bios,
612 min((size_t)size, (size_t)(bios_size - bios_offset)))
613 ? -EFAULT : 0;
614 }
615 default:
616 DRM_DEBUG_KMS("Invalid request %d\n",
617 info->vbios_info.type);
618 return -EINVAL;
619 }
620 }
Arindam Nath44879b62016-12-12 15:29:33 +0530621 case AMDGPU_INFO_NUM_HANDLES: {
622 struct drm_amdgpu_info_num_handles handle;
623
624 switch (info->query_hw_ip.type) {
625 case AMDGPU_HW_IP_UVD:
626 /* Starting Polaris, we support unlimited UVD handles */
627 if (adev->asic_type < CHIP_POLARIS10) {
628 handle.uvd_max_handles = adev->uvd.max_handles;
629 handle.uvd_used_handles = amdgpu_uvd_used_handles(adev);
630
631 return copy_to_user(out, &handle,
632 min((size_t)size, sizeof(handle))) ? -EFAULT : 0;
633 } else {
634 return -ENODATA;
635 }
636
637 break;
638 default:
639 return -EINVAL;
640 }
641 }
Alex Deucher5ebbac42017-03-08 18:25:15 -0500642 case AMDGPU_INFO_SENSOR: {
643 struct pp_gpu_power query = {0};
644 int query_size = sizeof(query);
645
646 if (amdgpu_dpm == 0)
647 return -ENOENT;
648
649 switch (info->sensor_info.type) {
650 case AMDGPU_INFO_SENSOR_GFX_SCLK:
651 /* get sclk in Mhz */
652 if (amdgpu_dpm_read_sensor(adev,
653 AMDGPU_PP_SENSOR_GFX_SCLK,
654 (void *)&ui32, &ui32_size)) {
655 return -EINVAL;
656 }
657 ui32 /= 100;
658 break;
659 case AMDGPU_INFO_SENSOR_GFX_MCLK:
660 /* get mclk in Mhz */
661 if (amdgpu_dpm_read_sensor(adev,
662 AMDGPU_PP_SENSOR_GFX_MCLK,
663 (void *)&ui32, &ui32_size)) {
664 return -EINVAL;
665 }
666 ui32 /= 100;
667 break;
668 case AMDGPU_INFO_SENSOR_GPU_TEMP:
669 /* get temperature in millidegrees C */
670 if (amdgpu_dpm_read_sensor(adev,
671 AMDGPU_PP_SENSOR_GPU_TEMP,
672 (void *)&ui32, &ui32_size)) {
673 return -EINVAL;
674 }
675 break;
676 case AMDGPU_INFO_SENSOR_GPU_LOAD:
677 /* get GPU load */
678 if (amdgpu_dpm_read_sensor(adev,
679 AMDGPU_PP_SENSOR_GPU_LOAD,
680 (void *)&ui32, &ui32_size)) {
681 return -EINVAL;
682 }
683 break;
684 case AMDGPU_INFO_SENSOR_GPU_AVG_POWER:
685 /* get average GPU power */
686 if (amdgpu_dpm_read_sensor(adev,
687 AMDGPU_PP_SENSOR_GPU_POWER,
688 (void *)&query, &query_size)) {
689 return -EINVAL;
690 }
691 ui32 = query.average_gpu_power >> 8;
692 break;
693 case AMDGPU_INFO_SENSOR_VDDNB:
694 /* get VDDNB in millivolts */
695 if (amdgpu_dpm_read_sensor(adev,
696 AMDGPU_PP_SENSOR_VDDNB,
697 (void *)&ui32, &ui32_size)) {
698 return -EINVAL;
699 }
700 break;
701 case AMDGPU_INFO_SENSOR_VDDGFX:
702 /* get VDDGFX in millivolts */
703 if (amdgpu_dpm_read_sensor(adev,
704 AMDGPU_PP_SENSOR_VDDGFX,
705 (void *)&ui32, &ui32_size)) {
706 return -EINVAL;
707 }
708 break;
709 default:
710 DRM_DEBUG_KMS("Invalid request %d\n",
711 info->sensor_info.type);
712 return -EINVAL;
713 }
714 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
715 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400716 default:
717 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
718 return -EINVAL;
719 }
720 return 0;
721}
722
723
724/*
725 * Outdated mess for old drm with Xorg being in charge (void function now).
726 */
727/**
Alex Deucher8b7530b2015-10-02 16:59:34 -0400728 * amdgpu_driver_lastclose_kms - drm callback for last close
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400729 *
730 * @dev: drm dev pointer
731 *
Lukas Wunner16944672015-09-05 11:17:35 +0200732 * Switch vga_switcheroo state after last close (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400733 */
734void amdgpu_driver_lastclose_kms(struct drm_device *dev)
735{
Alex Deucher8b7530b2015-10-02 16:59:34 -0400736 struct amdgpu_device *adev = dev->dev_private;
737
738 amdgpu_fbdev_restore_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400739 vga_switcheroo_process_delayed_switch();
740}
741
742/**
743 * amdgpu_driver_open_kms - drm callback for open
744 *
745 * @dev: drm dev pointer
746 * @file_priv: drm file
747 *
748 * On device open, init vm on cayman+ (all asics).
749 * Returns 0 on success, error on failure.
750 */
751int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
752{
753 struct amdgpu_device *adev = dev->dev_private;
754 struct amdgpu_fpriv *fpriv;
755 int r;
756
757 file_priv->driver_priv = NULL;
758
759 r = pm_runtime_get_sync(dev->dev);
760 if (r < 0)
761 return r;
762
763 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
Alex Deucherdc082672016-08-27 12:30:25 -0400764 if (unlikely(!fpriv)) {
765 r = -ENOMEM;
766 goto out_suspend;
767 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400768
769 r = amdgpu_vm_init(adev, &fpriv->vm);
Alex Deucherdc082672016-08-27 12:30:25 -0400770 if (r) {
771 kfree(fpriv);
772 goto out_suspend;
773 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400774
Junwei Zhangb85891b2017-01-16 13:59:01 +0800775 fpriv->prt_va = amdgpu_vm_bo_add(adev, &fpriv->vm, NULL);
776 if (!fpriv->prt_va) {
777 r = -ENOMEM;
778 amdgpu_vm_fini(adev, &fpriv->vm);
779 kfree(fpriv);
780 goto out_suspend;
781 }
782
Monk Liu24936642017-01-09 15:54:32 +0800783 if (amdgpu_sriov_vf(adev)) {
784 r = amdgpu_map_static_csa(adev, &fpriv->vm);
785 if (r)
786 goto out_suspend;
787 }
788
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400789 mutex_init(&fpriv->bo_list_lock);
790 idr_init(&fpriv->bo_list_handles);
791
Christian Königefd4ccb2015-08-04 16:20:31 +0200792 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400793
794 file_priv->driver_priv = fpriv;
795
Alex Deucherdc082672016-08-27 12:30:25 -0400796out_suspend:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400797 pm_runtime_mark_last_busy(dev->dev);
798 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400799
800 return r;
801}
802
803/**
804 * amdgpu_driver_postclose_kms - drm callback for post close
805 *
806 * @dev: drm dev pointer
807 * @file_priv: drm file
808 *
809 * On device post close, tear down vm on cayman+ (all asics).
810 */
811void amdgpu_driver_postclose_kms(struct drm_device *dev,
812 struct drm_file *file_priv)
813{
814 struct amdgpu_device *adev = dev->dev_private;
815 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
816 struct amdgpu_bo_list *list;
817 int handle;
818
819 if (!fpriv)
820 return;
821
Daniel Vetter04e30c92017-03-08 15:12:52 +0100822 pm_runtime_get_sync(dev->dev);
823
Christian König02537d62015-08-25 15:05:20 +0200824 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
825
Leo Liuef80d302017-02-05 15:19:57 -0500826 if (adev->asic_type != CHIP_RAVEN) {
827 amdgpu_uvd_free_handles(adev, file_priv);
828 amdgpu_vce_free_handles(adev, file_priv);
829 }
Leo Liucd437e32016-07-22 14:13:11 -0400830
Junwei Zhangb85891b2017-01-16 13:59:01 +0800831 amdgpu_vm_bo_rmv(adev, fpriv->prt_va);
832
Monk Liu24936642017-01-09 15:54:32 +0800833 if (amdgpu_sriov_vf(adev)) {
834 /* TODO: how to handle reserve failure */
Michel Dänzerc81a1a72017-04-28 17:28:14 +0900835 BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, true));
Monk Liu24936642017-01-09 15:54:32 +0800836 amdgpu_vm_bo_rmv(adev, fpriv->vm.csa_bo_va);
837 fpriv->vm.csa_bo_va = NULL;
838 amdgpu_bo_unreserve(adev->virt.csa_obj);
839 }
840
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400841 amdgpu_vm_fini(adev, &fpriv->vm);
842
843 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
844 amdgpu_bo_list_free(list);
845
846 idr_destroy(&fpriv->bo_list_handles);
847 mutex_destroy(&fpriv->bo_list_lock);
848
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400849 kfree(fpriv);
850 file_priv->driver_priv = NULL;
Alex Deucherd6bda7b2016-08-27 12:27:24 -0400851
852 pm_runtime_mark_last_busy(dev->dev);
853 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400854}
855
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400856/*
857 * VBlank related functions.
858 */
859/**
860 * amdgpu_get_vblank_counter_kms - get frame count
861 *
862 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200863 * @pipe: crtc to get the frame count from
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400864 *
865 * Gets the frame count on the requested crtc (all asics).
866 * Returns frame count on success, -EINVAL on failure.
867 */
Thierry Reding88e72712015-09-24 18:35:31 +0200868u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400869{
870 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500871 int vpos, hpos, stat;
872 u32 count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400873
Thierry Reding88e72712015-09-24 18:35:31 +0200874 if (pipe >= adev->mode_info.num_crtc) {
875 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400876 return -EINVAL;
877 }
878
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500879 /* The hw increments its frame counter at start of vsync, not at start
880 * of vblank, as is required by DRM core vblank counter handling.
881 * Cook the hw count here to make it appear to the caller as if it
882 * incremented at start of vblank. We measure distance to start of
883 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
884 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
885 * result by 1 to give the proper appearance to caller.
886 */
887 if (adev->mode_info.crtcs[pipe]) {
888 /* Repeat readout if needed to provide stable result if
889 * we cross start of vsync during the queries.
890 */
891 do {
892 count = amdgpu_display_vblank_get_counter(adev, pipe);
893 /* Ask amdgpu_get_crtc_scanoutpos to return vpos as
894 * distance to start of vblank, instead of regular
895 * vertical scanout pos.
896 */
897 stat = amdgpu_get_crtc_scanoutpos(
898 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
899 &vpos, &hpos, NULL, NULL,
900 &adev->mode_info.crtcs[pipe]->base.hwmode);
901 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
902
903 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
904 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
905 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
906 } else {
907 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
908 pipe, vpos);
909
910 /* Bump counter if we are at >= leading edge of vblank,
911 * but before vsync where vpos would turn negative and
912 * the hw counter really increments.
913 */
914 if (vpos >= 0)
915 count++;
916 }
917 } else {
918 /* Fallback to use value as is. */
919 count = amdgpu_display_vblank_get_counter(adev, pipe);
920 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
921 }
922
923 return count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400924}
925
926/**
927 * amdgpu_enable_vblank_kms - enable vblank interrupt
928 *
929 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200930 * @pipe: crtc to enable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400931 *
932 * Enable the interrupt on the requested crtc (all asics).
933 * Returns 0 on success, -EINVAL on failure.
934 */
Thierry Reding88e72712015-09-24 18:35:31 +0200935int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400936{
937 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200938 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400939
940 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
941}
942
943/**
944 * amdgpu_disable_vblank_kms - disable vblank interrupt
945 *
946 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200947 * @pipe: crtc to disable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400948 *
949 * Disable the interrupt on the requested crtc (all asics).
950 */
Thierry Reding88e72712015-09-24 18:35:31 +0200951void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400952{
953 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200954 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400955
956 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
957}
958
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400959const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200960 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
961 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Chunming Zhoucfbcacf2017-04-24 11:09:04 +0800962 DRM_IOCTL_DEF_DRV(AMDGPU_VM, amdgpu_vm_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Daniel Vetterf8c47142015-09-08 13:56:30 +0200963 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400964 /* KMS */
Daniel Vetterf8c47142015-09-08 13:56:30 +0200965 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
966 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
967 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
968 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
969 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Junwei Zhangeef18a82016-11-04 16:16:10 -0400970 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_FENCES, amdgpu_cs_wait_fences_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Daniel Vetterf8c47142015-09-08 13:56:30 +0200971 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
972 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
973 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
974 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400975};
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200976const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);
Huang Rui50ab2532016-06-12 15:51:09 +0800977
978/*
979 * Debugfs info
980 */
981#if defined(CONFIG_DEBUG_FS)
982
983static int amdgpu_debugfs_firmware_info(struct seq_file *m, void *data)
984{
985 struct drm_info_node *node = (struct drm_info_node *) m->private;
986 struct drm_device *dev = node->minor->dev;
987 struct amdgpu_device *adev = dev->dev_private;
988 struct drm_amdgpu_info_firmware fw_info;
989 struct drm_amdgpu_query_fw query_fw;
990 int ret, i;
991
992 /* VCE */
993 query_fw.fw_type = AMDGPU_INFO_FW_VCE;
994 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
995 if (ret)
996 return ret;
997 seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n",
998 fw_info.feature, fw_info.ver);
999
1000 /* UVD */
1001 query_fw.fw_type = AMDGPU_INFO_FW_UVD;
1002 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1003 if (ret)
1004 return ret;
1005 seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n",
1006 fw_info.feature, fw_info.ver);
1007
1008 /* GMC */
1009 query_fw.fw_type = AMDGPU_INFO_FW_GMC;
1010 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1011 if (ret)
1012 return ret;
1013 seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n",
1014 fw_info.feature, fw_info.ver);
1015
1016 /* ME */
1017 query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME;
1018 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1019 if (ret)
1020 return ret;
1021 seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n",
1022 fw_info.feature, fw_info.ver);
1023
1024 /* PFP */
1025 query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP;
1026 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1027 if (ret)
1028 return ret;
1029 seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n",
1030 fw_info.feature, fw_info.ver);
1031
1032 /* CE */
1033 query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE;
1034 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1035 if (ret)
1036 return ret;
1037 seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n",
1038 fw_info.feature, fw_info.ver);
1039
1040 /* RLC */
1041 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC;
1042 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1043 if (ret)
1044 return ret;
1045 seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n",
1046 fw_info.feature, fw_info.ver);
1047
1048 /* MEC */
1049 query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC;
1050 query_fw.index = 0;
1051 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1052 if (ret)
1053 return ret;
1054 seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n",
1055 fw_info.feature, fw_info.ver);
1056
1057 /* MEC2 */
1058 if (adev->asic_type == CHIP_KAVERI ||
1059 (adev->asic_type > CHIP_TOPAZ && adev->asic_type != CHIP_STONEY)) {
1060 query_fw.index = 1;
1061 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1062 if (ret)
1063 return ret;
1064 seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n",
1065 fw_info.feature, fw_info.ver);
1066 }
1067
Huang Rui6a7ed072017-03-03 19:15:26 -05001068 /* PSP SOS */
1069 query_fw.fw_type = AMDGPU_INFO_FW_SOS;
1070 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1071 if (ret)
1072 return ret;
1073 seq_printf(m, "SOS feature version: %u, firmware version: 0x%08x\n",
1074 fw_info.feature, fw_info.ver);
1075
1076
1077 /* PSP ASD */
1078 query_fw.fw_type = AMDGPU_INFO_FW_ASD;
1079 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1080 if (ret)
1081 return ret;
1082 seq_printf(m, "ASD feature version: %u, firmware version: 0x%08x\n",
1083 fw_info.feature, fw_info.ver);
1084
Huang Rui50ab2532016-06-12 15:51:09 +08001085 /* SMC */
1086 query_fw.fw_type = AMDGPU_INFO_FW_SMC;
1087 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1088 if (ret)
1089 return ret;
1090 seq_printf(m, "SMC feature version: %u, firmware version: 0x%08x\n",
1091 fw_info.feature, fw_info.ver);
1092
1093 /* SDMA */
1094 query_fw.fw_type = AMDGPU_INFO_FW_SDMA;
1095 for (i = 0; i < adev->sdma.num_instances; i++) {
1096 query_fw.index = i;
1097 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1098 if (ret)
1099 return ret;
1100 seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n",
1101 i, fw_info.feature, fw_info.ver);
1102 }
1103
1104 return 0;
1105}
1106
1107static const struct drm_info_list amdgpu_firmware_info_list[] = {
1108 {"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL},
1109};
1110#endif
1111
1112int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev)
1113{
1114#if defined(CONFIG_DEBUG_FS)
1115 return amdgpu_debugfs_add_files(adev, amdgpu_firmware_info_list,
1116 ARRAY_SIZE(amdgpu_firmware_info_list));
1117#else
1118 return 0;
1119#endif
1120}