blob: e0911798e2c244f51b52f50b0de5947fd1224f43 [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
Felix Kuehling7df28982017-06-05 18:43:27 +090090#ifdef CONFIG_DRM_AMDGPU_CIK
91 if (!amdgpu_cik_support) {
92 switch (flags & AMD_ASIC_MASK) {
93 case CHIP_KAVERI:
94 case CHIP_BONAIRE:
95 case CHIP_HAWAII:
96 case CHIP_KABINI:
97 case CHIP_MULLINS:
98 dev_info(dev->dev,
99 "CIK support disabled by module param\n");
100 return -ENODEV;
101 }
102 }
103#endif
104
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400105 adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL);
106 if (adev == NULL) {
107 return -ENOMEM;
108 }
109 dev->dev_private = (void *)adev;
110
111 if ((amdgpu_runtime_pm != 0) &&
112 amdgpu_has_atpx() &&
Alex Deucher84b15282016-10-31 11:02:31 -0400113 (amdgpu_is_atpx_hybrid() ||
114 amdgpu_has_atpx_dgpu_power_cntl()) &&
Lukas Wunner84c8b222017-03-10 21:23:45 +0100115 ((flags & AMD_IS_APU) == 0) &&
116 !pci_is_thunderbolt_attached(dev->pdev))
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800117 flags |= AMD_IS_PX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400118
119 /* amdgpu_device_init should report only fatal error
120 * like memory allocation failure or iomapping failure,
121 * or memory manager initialization failure, it must
122 * properly initialize the GPU MC controller and permit
123 * VRAM allocation
124 */
125 r = amdgpu_device_init(adev, dev, dev->pdev, flags);
126 if (r) {
127 dev_err(&dev->pdev->dev, "Fatal error during GPU init\n");
128 goto out;
129 }
130
131 /* Call ACPI methods: require modeset init
132 * but failure is not fatal
133 */
134 if (!r) {
135 acpi_status = amdgpu_acpi_init(adev);
136 if (acpi_status)
137 dev_dbg(&dev->pdev->dev,
138 "Error during ACPI methods call\n");
139 }
140
Oded Gabbay130e0372015-06-12 21:35:14 +0300141 amdgpu_amdkfd_load_interface(adev);
142 amdgpu_amdkfd_device_probe(adev);
143 amdgpu_amdkfd_device_init(adev);
144
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400145 if (amdgpu_device_is_px(dev)) {
146 pm_runtime_use_autosuspend(dev->dev);
147 pm_runtime_set_autosuspend_delay(dev->dev, 5000);
148 pm_runtime_set_active(dev->dev);
149 pm_runtime_allow(dev->dev);
150 pm_runtime_mark_last_busy(dev->dev);
151 pm_runtime_put_autosuspend(dev->dev);
152 }
153
Xiangliang Yu3149d9d2017-01-12 15:14:36 +0800154 if (amdgpu_sriov_vf(adev))
155 amdgpu_virt_release_full_gpu(adev, true);
156
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157out:
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200158 if (r) {
159 /* balance pm_runtime_get_sync in amdgpu_driver_unload_kms */
160 if (adev->rmmio && amdgpu_device_is_px(dev))
161 pm_runtime_put_noidle(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400162 amdgpu_driver_unload_kms(dev);
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200163 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400164
165 return r;
166}
167
Huang Rui000cab92016-06-12 15:44:44 +0800168static int amdgpu_firmware_info(struct drm_amdgpu_info_firmware *fw_info,
169 struct drm_amdgpu_query_fw *query_fw,
170 struct amdgpu_device *adev)
171{
172 switch (query_fw->fw_type) {
173 case AMDGPU_INFO_FW_VCE:
174 fw_info->ver = adev->vce.fw_version;
175 fw_info->feature = adev->vce.fb_version;
176 break;
177 case AMDGPU_INFO_FW_UVD:
178 fw_info->ver = adev->uvd.fw_version;
179 fw_info->feature = 0;
180 break;
181 case AMDGPU_INFO_FW_GMC:
182 fw_info->ver = adev->mc.fw_version;
183 fw_info->feature = 0;
184 break;
185 case AMDGPU_INFO_FW_GFX_ME:
186 fw_info->ver = adev->gfx.me_fw_version;
187 fw_info->feature = adev->gfx.me_feature_version;
188 break;
189 case AMDGPU_INFO_FW_GFX_PFP:
190 fw_info->ver = adev->gfx.pfp_fw_version;
191 fw_info->feature = adev->gfx.pfp_feature_version;
192 break;
193 case AMDGPU_INFO_FW_GFX_CE:
194 fw_info->ver = adev->gfx.ce_fw_version;
195 fw_info->feature = adev->gfx.ce_feature_version;
196 break;
197 case AMDGPU_INFO_FW_GFX_RLC:
198 fw_info->ver = adev->gfx.rlc_fw_version;
199 fw_info->feature = adev->gfx.rlc_feature_version;
200 break;
201 case AMDGPU_INFO_FW_GFX_MEC:
202 if (query_fw->index == 0) {
203 fw_info->ver = adev->gfx.mec_fw_version;
204 fw_info->feature = adev->gfx.mec_feature_version;
205 } else if (query_fw->index == 1) {
206 fw_info->ver = adev->gfx.mec2_fw_version;
207 fw_info->feature = adev->gfx.mec2_feature_version;
208 } else
209 return -EINVAL;
210 break;
211 case AMDGPU_INFO_FW_SMC:
212 fw_info->ver = adev->pm.fw_version;
213 fw_info->feature = 0;
214 break;
215 case AMDGPU_INFO_FW_SDMA:
216 if (query_fw->index >= adev->sdma.num_instances)
217 return -EINVAL;
218 fw_info->ver = adev->sdma.instance[query_fw->index].fw_version;
219 fw_info->feature = adev->sdma.instance[query_fw->index].feature_version;
220 break;
Huang Rui6a7ed072017-03-03 19:15:26 -0500221 case AMDGPU_INFO_FW_SOS:
222 fw_info->ver = adev->psp.sos_fw_version;
223 fw_info->feature = adev->psp.sos_feature_version;
224 break;
225 case AMDGPU_INFO_FW_ASD:
226 fw_info->ver = adev->psp.asd_fw_version;
227 fw_info->feature = adev->psp.asd_feature_version;
228 break;
Huang Rui000cab92016-06-12 15:44:44 +0800229 default:
230 return -EINVAL;
231 }
232 return 0;
233}
234
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400235/*
236 * Userspace get information ioctl
237 */
238/**
239 * amdgpu_info_ioctl - answer a device specific request.
240 *
241 * @adev: amdgpu device pointer
242 * @data: request object
243 * @filp: drm filp
244 *
245 * This function is used to pass device specific parameters to the userspace
246 * drivers. Examples include: pci device id, pipeline parms, tiling params,
247 * etc. (all asics).
248 * Returns 0 on success, -EINVAL on failure.
249 */
250static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
251{
252 struct amdgpu_device *adev = dev->dev_private;
Chunming Zhouf1892132017-05-15 16:48:27 +0800253 struct amdgpu_fpriv *fpriv = filp->driver_priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400254 struct drm_amdgpu_info *info = data;
255 struct amdgpu_mode_info *minfo = &adev->mode_info;
Alex Xieec2c4672017-04-05 16:33:00 -0400256 void __user *out = (void __user *)(uintptr_t)info->return_pointer;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400257 uint32_t size = info->return_size;
258 struct drm_crtc *crtc;
259 uint32_t ui32 = 0;
260 uint64_t ui64 = 0;
261 int i, found;
Alex Deucher5ebbac42017-03-08 18:25:15 -0500262 int ui32_size = sizeof(ui32);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400263
264 if (!info->return_size || !info->return_pointer)
265 return -EINVAL;
Chunming Zhouf1892132017-05-15 16:48:27 +0800266 if (amdgpu_kms_vram_lost(adev, fpriv))
267 return -ENODEV;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400268
269 switch (info->query) {
270 case AMDGPU_INFO_ACCEL_WORKING:
271 ui32 = adev->accel_working;
272 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
273 case AMDGPU_INFO_CRTC_FROM_ID:
274 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
275 crtc = (struct drm_crtc *)minfo->crtcs[i];
276 if (crtc && crtc->base.id == info->mode_crtc.id) {
277 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
278 ui32 = amdgpu_crtc->crtc_id;
279 found = 1;
280 break;
281 }
282 }
283 if (!found) {
284 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
285 return -EINVAL;
286 }
287 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
288 case AMDGPU_INFO_HW_IP_INFO: {
289 struct drm_amdgpu_info_hw_ip ip = {};
yanyang15fc3aee2015-05-22 14:39:35 -0400290 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400291 uint32_t ring_mask = 0;
Ken Wang71062f42015-06-04 21:26:57 +0800292 uint32_t ib_start_alignment = 0;
293 uint32_t ib_size_alignment = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400294
295 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
296 return -EINVAL;
297
298 switch (info->query_hw_ip.type) {
299 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400300 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400301 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
302 ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800303 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
304 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400305 break;
306 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400307 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400308 for (i = 0; i < adev->gfx.num_compute_rings; i++)
309 ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800310 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
311 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400312 break;
313 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400314 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherc113ea12015-10-08 16:30:37 -0400315 for (i = 0; i < adev->sdma.num_instances; i++)
316 ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800317 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
318 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400319 break;
320 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400321 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400322 ring_mask = adev->uvd.ring.ready ? 1 : 0;
Ken Wang71062f42015-06-04 21:26:57 +0800323 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
Alex Deucherc4795ca2016-08-22 16:31:36 -0400324 ib_size_alignment = 16;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400325 break;
326 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400327 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucher75c65482016-08-24 16:56:21 -0400328 for (i = 0; i < adev->vce.num_rings; i++)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400329 ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800330 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
Alex Deuchera22f8032016-08-23 10:44:16 -0400331 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400332 break;
Leo Liu63defd32017-01-10 11:50:08 -0500333 case AMDGPU_HW_IP_UVD_ENC:
334 type = AMD_IP_BLOCK_TYPE_UVD;
335 for (i = 0; i < adev->uvd.num_enc_rings; i++)
336 ring_mask |= ((adev->uvd.ring_enc[i].ready ? 1 : 0) << i);
337 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
338 ib_size_alignment = 1;
339 break;
Leo Liubdc799e2017-01-25 15:04:20 -0500340 case AMDGPU_HW_IP_VCN_DEC:
341 type = AMD_IP_BLOCK_TYPE_VCN;
342 ring_mask = adev->vcn.ring_dec.ready ? 1 : 0;
343 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
344 ib_size_alignment = 16;
345 break;
Leo Liucefbc592017-02-21 11:23:28 -0500346 case AMDGPU_HW_IP_VCN_ENC:
347 type = AMD_IP_BLOCK_TYPE_VCN;
348 for (i = 0; i < adev->vcn.num_enc_rings; i++)
349 ring_mask |= ((adev->vcn.ring_enc[i].ready ? 1 : 0) << i);
350 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
351 ib_size_alignment = 1;
352 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400353 default:
354 return -EINVAL;
355 }
356
357 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -0400358 if (adev->ip_blocks[i].version->type == type &&
359 adev->ip_blocks[i].status.valid) {
360 ip.hw_ip_version_major = adev->ip_blocks[i].version->major;
361 ip.hw_ip_version_minor = adev->ip_blocks[i].version->minor;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400362 ip.capabilities_flags = 0;
363 ip.available_rings = ring_mask;
Ken Wang71062f42015-06-04 21:26:57 +0800364 ip.ib_start_alignment = ib_start_alignment;
365 ip.ib_size_alignment = ib_size_alignment;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400366 break;
367 }
368 }
369 return copy_to_user(out, &ip,
370 min((size_t)size, sizeof(ip))) ? -EFAULT : 0;
371 }
372 case AMDGPU_INFO_HW_IP_COUNT: {
yanyang15fc3aee2015-05-22 14:39:35 -0400373 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400374 uint32_t count = 0;
375
376 switch (info->query_hw_ip.type) {
377 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400378 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400379 break;
380 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400381 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400382 break;
383 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400384 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400385 break;
386 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400387 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400388 break;
389 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400390 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400391 break;
Leo Liu63defd32017-01-10 11:50:08 -0500392 case AMDGPU_HW_IP_UVD_ENC:
393 type = AMD_IP_BLOCK_TYPE_UVD;
394 break;
Leo Liubdc799e2017-01-25 15:04:20 -0500395 case AMDGPU_HW_IP_VCN_DEC:
Leo Liucefbc592017-02-21 11:23:28 -0500396 case AMDGPU_HW_IP_VCN_ENC:
Leo Liubdc799e2017-01-25 15:04:20 -0500397 type = AMD_IP_BLOCK_TYPE_VCN;
398 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400399 default:
400 return -EINVAL;
401 }
402
403 for (i = 0; i < adev->num_ip_blocks; i++)
Alex Deuchera1255102016-10-13 17:41:13 -0400404 if (adev->ip_blocks[i].version->type == type &&
405 adev->ip_blocks[i].status.valid &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400406 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
407 count++;
408
409 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
410 }
411 case AMDGPU_INFO_TIMESTAMP:
Alex Deucherb95e31f2016-07-07 15:01:42 -0400412 ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400413 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
414 case AMDGPU_INFO_FW_VERSION: {
415 struct drm_amdgpu_info_firmware fw_info;
Huang Rui000cab92016-06-12 15:44:44 +0800416 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400417
418 /* We only support one instance of each IP block right now. */
419 if (info->query_fw.ip_instance != 0)
420 return -EINVAL;
421
Huang Rui000cab92016-06-12 15:44:44 +0800422 ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
423 if (ret)
424 return ret;
425
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400426 return copy_to_user(out, &fw_info,
427 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
428 }
429 case AMDGPU_INFO_NUM_BYTES_MOVED:
430 ui64 = atomic64_read(&adev->num_bytes_moved);
431 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
Marek Olšák83a59b62016-08-17 23:58:58 +0200432 case AMDGPU_INFO_NUM_EVICTIONS:
433 ui64 = atomic64_read(&adev->num_evictions);
434 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
Marek Olšák68e2c5f2017-05-17 20:05:08 +0200435 case AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS:
436 ui64 = atomic64_read(&adev->num_vram_cpu_page_faults);
437 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400438 case AMDGPU_INFO_VRAM_USAGE:
439 ui64 = atomic64_read(&adev->vram_usage);
440 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
441 case AMDGPU_INFO_VIS_VRAM_USAGE:
442 ui64 = atomic64_read(&adev->vram_vis_usage);
443 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
444 case AMDGPU_INFO_GTT_USAGE:
445 ui64 = atomic64_read(&adev->gtt_usage);
446 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
447 case AMDGPU_INFO_GDS_CONFIG: {
448 struct drm_amdgpu_info_gds gds_info;
449
Alex Deucherc92b90c2015-04-30 11:47:03 -0400450 memset(&gds_info, 0, sizeof(gds_info));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400451 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT;
452 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT;
453 gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT;
454 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT;
455 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT;
456 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT;
457 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT;
458 return copy_to_user(out, &gds_info,
459 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
460 }
461 case AMDGPU_INFO_VRAM_GTT: {
462 struct drm_amdgpu_info_vram_gtt vram_gtt;
463
464 vram_gtt.vram_size = adev->mc.real_vram_size;
Chunming Zhou7c0ecda2016-04-01 17:05:30 +0800465 vram_gtt.vram_size -= adev->vram_pin_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400466 vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
Chunming Zhoue131b912016-04-05 10:48:48 +0800467 vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400468 vram_gtt.gtt_size = adev->mc.gtt_size;
469 vram_gtt.gtt_size -= adev->gart_pin_size;
470 return copy_to_user(out, &vram_gtt,
471 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
472 }
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800473 case AMDGPU_INFO_MEMORY: {
474 struct drm_amdgpu_memory_info mem;
Junwei Zhang9f6163e2016-09-21 10:17:22 +0800475
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800476 memset(&mem, 0, sizeof(mem));
477 mem.vram.total_heap_size = adev->mc.real_vram_size;
478 mem.vram.usable_heap_size =
479 adev->mc.real_vram_size - adev->vram_pin_size;
480 mem.vram.heap_usage = atomic64_read(&adev->vram_usage);
481 mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800482
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800483 mem.cpu_accessible_vram.total_heap_size =
484 adev->mc.visible_vram_size;
485 mem.cpu_accessible_vram.usable_heap_size =
486 adev->mc.visible_vram_size -
487 (adev->vram_pin_size - adev->invisible_pin_size);
488 mem.cpu_accessible_vram.heap_usage =
489 atomic64_read(&adev->vram_vis_usage);
490 mem.cpu_accessible_vram.max_allocation =
491 mem.cpu_accessible_vram.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800492
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800493 mem.gtt.total_heap_size = adev->mc.gtt_size;
494 mem.gtt.usable_heap_size =
495 adev->mc.gtt_size - adev->gart_pin_size;
496 mem.gtt.heap_usage = atomic64_read(&adev->gtt_usage);
497 mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800498
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800499 return copy_to_user(out, &mem,
500 min((size_t)size, sizeof(mem)))
Junwei Zhangcfa32552016-09-21 10:33:26 +0800501 ? -EFAULT : 0;
502 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400503 case AMDGPU_INFO_READ_MMR_REG: {
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300504 unsigned n, alloc_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400505 uint32_t *regs;
506 unsigned se_num = (info->read_mmr_reg.instance >>
507 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
508 AMDGPU_INFO_MMR_SE_INDEX_MASK;
509 unsigned sh_num = (info->read_mmr_reg.instance >>
510 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
511 AMDGPU_INFO_MMR_SH_INDEX_MASK;
512
513 /* set full masks if the userspace set all bits
514 * in the bitfields */
515 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
516 se_num = 0xffffffff;
517 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
518 sh_num = 0xffffffff;
519
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300520 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400521 if (!regs)
522 return -ENOMEM;
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300523 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400524
525 for (i = 0; i < info->read_mmr_reg.count; i++)
526 if (amdgpu_asic_read_register(adev, se_num, sh_num,
527 info->read_mmr_reg.dword_offset + i,
528 &regs[i])) {
529 DRM_DEBUG_KMS("unallowed offset %#x\n",
530 info->read_mmr_reg.dword_offset + i);
531 kfree(regs);
532 return -EFAULT;
533 }
534 n = copy_to_user(out, regs, min(size, alloc_size));
535 kfree(regs);
536 return n ? -EFAULT : 0;
537 }
538 case AMDGPU_INFO_DEV_INFO: {
Dan Carpenterc193fa912015-07-28 18:51:29 +0300539 struct drm_amdgpu_info_device dev_info = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400540
541 dev_info.device_id = dev->pdev->device;
542 dev_info.chip_rev = adev->rev_id;
543 dev_info.external_rev = adev->external_rev_id;
544 dev_info.pci_rev = dev->pdev->revision;
545 dev_info.family = adev->family;
546 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
547 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
548 /* return all clocks in KHz */
549 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800550 if (adev->pm.dpm_enabled) {
Evan Quan1304f0c2016-10-17 09:49:29 +0800551 dev_info.max_engine_clock = amdgpu_dpm_get_sclk(adev, false) * 10;
552 dev_info.max_memory_clock = amdgpu_dpm_get_mclk(adev, false) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800553 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400554 dev_info.max_engine_clock = adev->pm.default_sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800555 dev_info.max_memory_clock = adev->pm.default_mclk * 10;
556 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400557 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
Alex Deucher0b100292016-06-17 10:17:17 -0400558 dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se *
559 adev->gfx.config.max_shader_engines;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400560 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
561 dev_info._pad = 0;
562 dev_info.ids_flags = 0;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800563 if (adev->flags & AMD_IS_APU)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400564 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
Monk Liuaafcafa2016-10-24 11:36:17 +0800565 if (amdgpu_sriov_vf(adev))
566 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400567 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
Jammy Zhou02b70c82015-05-12 22:46:45 +0800568 dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
Christian Königc548b342015-08-07 20:22:40 +0200569 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400570 dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
571 AMDGPU_GPU_PAGE_SIZE;
572 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
573
Alex Deucher7dae69a2016-05-03 16:25:53 -0400574 dev_info.cu_active_number = adev->gfx.cu_info.number;
575 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
Ken Wanga101a892015-06-03 17:47:54 +0800576 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
Alex Deucher7dae69a2016-05-03 16:25:53 -0400577 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
578 sizeof(adev->gfx.cu_info.bitmap));
Ken Wang81c59f52015-06-03 21:02:01 +0800579 dev_info.vram_type = adev->mc.vram_type;
580 dev_info.vram_bit_width = adev->mc.vram_width;
Leo Liufa927542015-07-13 12:46:23 -0400581 dev_info.vce_harvest_config = adev->vce.harvest_config;
Junwei Zhangdf6e2c42017-02-17 11:05:49 +0800582 dev_info.gc_double_offchip_lds_buf =
583 adev->gfx.config.double_offchip_lds_buf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400584
Alex Deucherbce23e02017-03-28 12:52:08 -0400585 if (amdgpu_ngg) {
Guenter Roeckaf8baf12017-05-03 23:49:18 -0700586 dev_info.prim_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PRIM].gpu_addr;
587 dev_info.prim_buf_size = adev->gfx.ngg.buf[NGG_PRIM].size;
588 dev_info.pos_buf_gpu_addr = adev->gfx.ngg.buf[NGG_POS].gpu_addr;
589 dev_info.pos_buf_size = adev->gfx.ngg.buf[NGG_POS].size;
590 dev_info.cntl_sb_buf_gpu_addr = adev->gfx.ngg.buf[NGG_CNTL].gpu_addr;
591 dev_info.cntl_sb_buf_size = adev->gfx.ngg.buf[NGG_CNTL].size;
592 dev_info.param_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PARAM].gpu_addr;
593 dev_info.param_buf_size = adev->gfx.ngg.buf[NGG_PARAM].size;
Alex Deucherbce23e02017-03-28 12:52:08 -0400594 }
Junwei Zhang408bfe72017-04-27 11:12:07 +0800595 dev_info.wave_front_size = adev->gfx.cu_info.wave_front_size;
596 dev_info.num_shader_visible_vgprs = adev->gfx.config.max_gprs;
597 dev_info.num_cu_per_sh = adev->gfx.config.max_cu_per_sh;
598 dev_info.num_tcc_blocks = adev->gfx.config.max_texture_channel_caches;
599 dev_info.gs_vgt_table_depth = adev->gfx.config.gs_vgt_table_depth;
600 dev_info.gs_prim_buffer_depth = adev->gfx.config.gs_prim_buffer_depth;
Alex Deucherf47b77b2017-05-02 15:49:36 -0400601 dev_info.max_gs_waves_per_vgt = adev->gfx.config.max_gs_threads;
Alex Deucherbce23e02017-03-28 12:52:08 -0400602
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400603 return copy_to_user(out, &dev_info,
604 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
605 }
Alex Deucher07fecde2016-10-07 12:22:02 -0400606 case AMDGPU_INFO_VCE_CLOCK_TABLE: {
607 unsigned i;
608 struct drm_amdgpu_info_vce_clock_table vce_clk_table = {};
609 struct amd_vce_state *vce_state;
610
611 for (i = 0; i < AMDGPU_VCE_CLOCK_TABLE_ENTRIES; i++) {
612 vce_state = amdgpu_dpm_get_vce_clock_state(adev, i);
613 if (vce_state) {
614 vce_clk_table.entries[i].sclk = vce_state->sclk;
615 vce_clk_table.entries[i].mclk = vce_state->mclk;
616 vce_clk_table.entries[i].eclk = vce_state->evclk;
617 vce_clk_table.num_valid_entries++;
618 }
619 }
620
621 return copy_to_user(out, &vce_clk_table,
622 min((size_t)size, sizeof(vce_clk_table))) ? -EFAULT : 0;
623 }
Evan Quan40ee5882016-12-07 10:05:09 +0800624 case AMDGPU_INFO_VBIOS: {
625 uint32_t bios_size = adev->bios_size;
626
627 switch (info->vbios_info.type) {
628 case AMDGPU_INFO_VBIOS_SIZE:
629 return copy_to_user(out, &bios_size,
630 min((size_t)size, sizeof(bios_size)))
631 ? -EFAULT : 0;
632 case AMDGPU_INFO_VBIOS_IMAGE: {
633 uint8_t *bios;
634 uint32_t bios_offset = info->vbios_info.offset;
635
636 if (bios_offset >= bios_size)
637 return -EINVAL;
638
639 bios = adev->bios + bios_offset;
640 return copy_to_user(out, bios,
641 min((size_t)size, (size_t)(bios_size - bios_offset)))
642 ? -EFAULT : 0;
643 }
644 default:
645 DRM_DEBUG_KMS("Invalid request %d\n",
646 info->vbios_info.type);
647 return -EINVAL;
648 }
649 }
Arindam Nath44879b62016-12-12 15:29:33 +0530650 case AMDGPU_INFO_NUM_HANDLES: {
651 struct drm_amdgpu_info_num_handles handle;
652
653 switch (info->query_hw_ip.type) {
654 case AMDGPU_HW_IP_UVD:
655 /* Starting Polaris, we support unlimited UVD handles */
656 if (adev->asic_type < CHIP_POLARIS10) {
657 handle.uvd_max_handles = adev->uvd.max_handles;
658 handle.uvd_used_handles = amdgpu_uvd_used_handles(adev);
659
660 return copy_to_user(out, &handle,
661 min((size_t)size, sizeof(handle))) ? -EFAULT : 0;
662 } else {
663 return -ENODATA;
664 }
665
666 break;
667 default:
668 return -EINVAL;
669 }
670 }
Alex Deucher5ebbac42017-03-08 18:25:15 -0500671 case AMDGPU_INFO_SENSOR: {
672 struct pp_gpu_power query = {0};
673 int query_size = sizeof(query);
674
675 if (amdgpu_dpm == 0)
676 return -ENOENT;
677
678 switch (info->sensor_info.type) {
679 case AMDGPU_INFO_SENSOR_GFX_SCLK:
680 /* get sclk in Mhz */
681 if (amdgpu_dpm_read_sensor(adev,
682 AMDGPU_PP_SENSOR_GFX_SCLK,
683 (void *)&ui32, &ui32_size)) {
684 return -EINVAL;
685 }
686 ui32 /= 100;
687 break;
688 case AMDGPU_INFO_SENSOR_GFX_MCLK:
689 /* get mclk in Mhz */
690 if (amdgpu_dpm_read_sensor(adev,
691 AMDGPU_PP_SENSOR_GFX_MCLK,
692 (void *)&ui32, &ui32_size)) {
693 return -EINVAL;
694 }
695 ui32 /= 100;
696 break;
697 case AMDGPU_INFO_SENSOR_GPU_TEMP:
698 /* get temperature in millidegrees C */
699 if (amdgpu_dpm_read_sensor(adev,
700 AMDGPU_PP_SENSOR_GPU_TEMP,
701 (void *)&ui32, &ui32_size)) {
702 return -EINVAL;
703 }
704 break;
705 case AMDGPU_INFO_SENSOR_GPU_LOAD:
706 /* get GPU load */
707 if (amdgpu_dpm_read_sensor(adev,
708 AMDGPU_PP_SENSOR_GPU_LOAD,
709 (void *)&ui32, &ui32_size)) {
710 return -EINVAL;
711 }
712 break;
713 case AMDGPU_INFO_SENSOR_GPU_AVG_POWER:
714 /* get average GPU power */
715 if (amdgpu_dpm_read_sensor(adev,
716 AMDGPU_PP_SENSOR_GPU_POWER,
717 (void *)&query, &query_size)) {
718 return -EINVAL;
719 }
720 ui32 = query.average_gpu_power >> 8;
721 break;
722 case AMDGPU_INFO_SENSOR_VDDNB:
723 /* get VDDNB in millivolts */
724 if (amdgpu_dpm_read_sensor(adev,
725 AMDGPU_PP_SENSOR_VDDNB,
726 (void *)&ui32, &ui32_size)) {
727 return -EINVAL;
728 }
729 break;
730 case AMDGPU_INFO_SENSOR_VDDGFX:
731 /* get VDDGFX in millivolts */
732 if (amdgpu_dpm_read_sensor(adev,
733 AMDGPU_PP_SENSOR_VDDGFX,
734 (void *)&ui32, &ui32_size)) {
735 return -EINVAL;
736 }
737 break;
738 default:
739 DRM_DEBUG_KMS("Invalid request %d\n",
740 info->sensor_info.type);
741 return -EINVAL;
742 }
743 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
744 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400745 default:
746 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
747 return -EINVAL;
748 }
749 return 0;
750}
751
752
753/*
754 * Outdated mess for old drm with Xorg being in charge (void function now).
755 */
756/**
Alex Deucher8b7530b2015-10-02 16:59:34 -0400757 * amdgpu_driver_lastclose_kms - drm callback for last close
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400758 *
759 * @dev: drm dev pointer
760 *
Lukas Wunner16944672015-09-05 11:17:35 +0200761 * Switch vga_switcheroo state after last close (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400762 */
763void amdgpu_driver_lastclose_kms(struct drm_device *dev)
764{
Alex Deucher8b7530b2015-10-02 16:59:34 -0400765 struct amdgpu_device *adev = dev->dev_private;
766
767 amdgpu_fbdev_restore_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400768 vga_switcheroo_process_delayed_switch();
769}
770
Chunming Zhouf1892132017-05-15 16:48:27 +0800771bool amdgpu_kms_vram_lost(struct amdgpu_device *adev,
772 struct amdgpu_fpriv *fpriv)
773{
774 return fpriv->vram_lost_counter != atomic_read(&adev->vram_lost_counter);
775}
776
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400777/**
778 * amdgpu_driver_open_kms - drm callback for open
779 *
780 * @dev: drm dev pointer
781 * @file_priv: drm file
782 *
783 * On device open, init vm on cayman+ (all asics).
784 * Returns 0 on success, error on failure.
785 */
786int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
787{
788 struct amdgpu_device *adev = dev->dev_private;
789 struct amdgpu_fpriv *fpriv;
790 int r;
791
792 file_priv->driver_priv = NULL;
793
794 r = pm_runtime_get_sync(dev->dev);
795 if (r < 0)
796 return r;
797
798 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
Alex Deucherdc082672016-08-27 12:30:25 -0400799 if (unlikely(!fpriv)) {
800 r = -ENOMEM;
801 goto out_suspend;
802 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400803
804 r = amdgpu_vm_init(adev, &fpriv->vm);
Alex Deucherdc082672016-08-27 12:30:25 -0400805 if (r) {
806 kfree(fpriv);
807 goto out_suspend;
808 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400809
Junwei Zhangb85891b2017-01-16 13:59:01 +0800810 fpriv->prt_va = amdgpu_vm_bo_add(adev, &fpriv->vm, NULL);
811 if (!fpriv->prt_va) {
812 r = -ENOMEM;
813 amdgpu_vm_fini(adev, &fpriv->vm);
814 kfree(fpriv);
815 goto out_suspend;
816 }
817
Monk Liu24936642017-01-09 15:54:32 +0800818 if (amdgpu_sriov_vf(adev)) {
819 r = amdgpu_map_static_csa(adev, &fpriv->vm);
820 if (r)
821 goto out_suspend;
822 }
823
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400824 mutex_init(&fpriv->bo_list_lock);
825 idr_init(&fpriv->bo_list_handles);
826
Christian Königefd4ccb2015-08-04 16:20:31 +0200827 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400828
Chunming Zhouf1892132017-05-15 16:48:27 +0800829 fpriv->vram_lost_counter = atomic_read(&adev->vram_lost_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400830 file_priv->driver_priv = fpriv;
831
Alex Deucherdc082672016-08-27 12:30:25 -0400832out_suspend:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400833 pm_runtime_mark_last_busy(dev->dev);
834 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400835
836 return r;
837}
838
839/**
840 * amdgpu_driver_postclose_kms - drm callback for post close
841 *
842 * @dev: drm dev pointer
843 * @file_priv: drm file
844 *
845 * On device post close, tear down vm on cayman+ (all asics).
846 */
847void amdgpu_driver_postclose_kms(struct drm_device *dev,
848 struct drm_file *file_priv)
849{
850 struct amdgpu_device *adev = dev->dev_private;
851 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
852 struct amdgpu_bo_list *list;
853 int handle;
854
855 if (!fpriv)
856 return;
857
Daniel Vetter04e30c92017-03-08 15:12:52 +0100858 pm_runtime_get_sync(dev->dev);
859
Christian König02537d62015-08-25 15:05:20 +0200860 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
861
Leo Liuef80d302017-02-05 15:19:57 -0500862 if (adev->asic_type != CHIP_RAVEN) {
863 amdgpu_uvd_free_handles(adev, file_priv);
864 amdgpu_vce_free_handles(adev, file_priv);
865 }
Leo Liucd437e32016-07-22 14:13:11 -0400866
Junwei Zhangb85891b2017-01-16 13:59:01 +0800867 amdgpu_vm_bo_rmv(adev, fpriv->prt_va);
868
Monk Liu24936642017-01-09 15:54:32 +0800869 if (amdgpu_sriov_vf(adev)) {
870 /* TODO: how to handle reserve failure */
Michel Dänzerc81a1a72017-04-28 17:28:14 +0900871 BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, true));
Monk Liu24936642017-01-09 15:54:32 +0800872 amdgpu_vm_bo_rmv(adev, fpriv->vm.csa_bo_va);
873 fpriv->vm.csa_bo_va = NULL;
874 amdgpu_bo_unreserve(adev->virt.csa_obj);
875 }
876
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400877 amdgpu_vm_fini(adev, &fpriv->vm);
878
879 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
880 amdgpu_bo_list_free(list);
881
882 idr_destroy(&fpriv->bo_list_handles);
883 mutex_destroy(&fpriv->bo_list_lock);
884
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400885 kfree(fpriv);
886 file_priv->driver_priv = NULL;
Alex Deucherd6bda7b2016-08-27 12:27:24 -0400887
888 pm_runtime_mark_last_busy(dev->dev);
889 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400890}
891
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400892/*
893 * VBlank related functions.
894 */
895/**
896 * amdgpu_get_vblank_counter_kms - get frame count
897 *
898 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200899 * @pipe: crtc to get the frame count from
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400900 *
901 * Gets the frame count on the requested crtc (all asics).
902 * Returns frame count on success, -EINVAL on failure.
903 */
Thierry Reding88e72712015-09-24 18:35:31 +0200904u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400905{
906 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500907 int vpos, hpos, stat;
908 u32 count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400909
Thierry Reding88e72712015-09-24 18:35:31 +0200910 if (pipe >= adev->mode_info.num_crtc) {
911 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400912 return -EINVAL;
913 }
914
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500915 /* The hw increments its frame counter at start of vsync, not at start
916 * of vblank, as is required by DRM core vblank counter handling.
917 * Cook the hw count here to make it appear to the caller as if it
918 * incremented at start of vblank. We measure distance to start of
919 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
920 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
921 * result by 1 to give the proper appearance to caller.
922 */
923 if (adev->mode_info.crtcs[pipe]) {
924 /* Repeat readout if needed to provide stable result if
925 * we cross start of vsync during the queries.
926 */
927 do {
928 count = amdgpu_display_vblank_get_counter(adev, pipe);
929 /* Ask amdgpu_get_crtc_scanoutpos to return vpos as
930 * distance to start of vblank, instead of regular
931 * vertical scanout pos.
932 */
933 stat = amdgpu_get_crtc_scanoutpos(
934 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
935 &vpos, &hpos, NULL, NULL,
936 &adev->mode_info.crtcs[pipe]->base.hwmode);
937 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
938
939 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
940 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
941 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
942 } else {
943 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
944 pipe, vpos);
945
946 /* Bump counter if we are at >= leading edge of vblank,
947 * but before vsync where vpos would turn negative and
948 * the hw counter really increments.
949 */
950 if (vpos >= 0)
951 count++;
952 }
953 } else {
954 /* Fallback to use value as is. */
955 count = amdgpu_display_vblank_get_counter(adev, pipe);
956 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
957 }
958
959 return count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400960}
961
962/**
963 * amdgpu_enable_vblank_kms - enable vblank interrupt
964 *
965 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200966 * @pipe: crtc to enable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400967 *
968 * Enable the interrupt on the requested crtc (all asics).
969 * Returns 0 on success, -EINVAL on failure.
970 */
Thierry Reding88e72712015-09-24 18:35:31 +0200971int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400972{
973 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200974 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400975
976 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
977}
978
979/**
980 * amdgpu_disable_vblank_kms - disable vblank interrupt
981 *
982 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200983 * @pipe: crtc to disable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400984 *
985 * Disable the interrupt on the requested crtc (all asics).
986 */
Thierry Reding88e72712015-09-24 18:35:31 +0200987void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400988{
989 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200990 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400991
992 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
993}
994
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400995const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200996 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
997 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Chunming Zhoucfbcacf2017-04-24 11:09:04 +0800998 DRM_IOCTL_DEF_DRV(AMDGPU_VM, amdgpu_vm_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Daniel Vetterf8c47142015-09-08 13:56:30 +0200999 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001000 /* KMS */
Daniel Vetterf8c47142015-09-08 13:56:30 +02001001 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1002 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1003 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1004 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1005 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Junwei Zhangeef18a82016-11-04 16:16:10 -04001006 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_FENCES, amdgpu_cs_wait_fences_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Daniel Vetterf8c47142015-09-08 13:56:30 +02001007 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1008 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1009 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1010 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001011};
Nils Wallméniusf498d9e2016-04-10 16:29:59 +02001012const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);
Huang Rui50ab2532016-06-12 15:51:09 +08001013
1014/*
1015 * Debugfs info
1016 */
1017#if defined(CONFIG_DEBUG_FS)
1018
1019static int amdgpu_debugfs_firmware_info(struct seq_file *m, void *data)
1020{
1021 struct drm_info_node *node = (struct drm_info_node *) m->private;
1022 struct drm_device *dev = node->minor->dev;
1023 struct amdgpu_device *adev = dev->dev_private;
1024 struct drm_amdgpu_info_firmware fw_info;
1025 struct drm_amdgpu_query_fw query_fw;
1026 int ret, i;
1027
1028 /* VCE */
1029 query_fw.fw_type = AMDGPU_INFO_FW_VCE;
1030 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1031 if (ret)
1032 return ret;
1033 seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n",
1034 fw_info.feature, fw_info.ver);
1035
1036 /* UVD */
1037 query_fw.fw_type = AMDGPU_INFO_FW_UVD;
1038 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1039 if (ret)
1040 return ret;
1041 seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n",
1042 fw_info.feature, fw_info.ver);
1043
1044 /* GMC */
1045 query_fw.fw_type = AMDGPU_INFO_FW_GMC;
1046 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1047 if (ret)
1048 return ret;
1049 seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n",
1050 fw_info.feature, fw_info.ver);
1051
1052 /* ME */
1053 query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME;
1054 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1055 if (ret)
1056 return ret;
1057 seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n",
1058 fw_info.feature, fw_info.ver);
1059
1060 /* PFP */
1061 query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP;
1062 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1063 if (ret)
1064 return ret;
1065 seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n",
1066 fw_info.feature, fw_info.ver);
1067
1068 /* CE */
1069 query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE;
1070 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1071 if (ret)
1072 return ret;
1073 seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n",
1074 fw_info.feature, fw_info.ver);
1075
1076 /* RLC */
1077 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC;
1078 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1079 if (ret)
1080 return ret;
1081 seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n",
1082 fw_info.feature, fw_info.ver);
1083
1084 /* MEC */
1085 query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC;
1086 query_fw.index = 0;
1087 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1088 if (ret)
1089 return ret;
1090 seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n",
1091 fw_info.feature, fw_info.ver);
1092
1093 /* MEC2 */
1094 if (adev->asic_type == CHIP_KAVERI ||
1095 (adev->asic_type > CHIP_TOPAZ && adev->asic_type != CHIP_STONEY)) {
1096 query_fw.index = 1;
1097 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1098 if (ret)
1099 return ret;
1100 seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n",
1101 fw_info.feature, fw_info.ver);
1102 }
1103
Huang Rui6a7ed072017-03-03 19:15:26 -05001104 /* PSP SOS */
1105 query_fw.fw_type = AMDGPU_INFO_FW_SOS;
1106 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1107 if (ret)
1108 return ret;
1109 seq_printf(m, "SOS feature version: %u, firmware version: 0x%08x\n",
1110 fw_info.feature, fw_info.ver);
1111
1112
1113 /* PSP ASD */
1114 query_fw.fw_type = AMDGPU_INFO_FW_ASD;
1115 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1116 if (ret)
1117 return ret;
1118 seq_printf(m, "ASD feature version: %u, firmware version: 0x%08x\n",
1119 fw_info.feature, fw_info.ver);
1120
Huang Rui50ab2532016-06-12 15:51:09 +08001121 /* SMC */
1122 query_fw.fw_type = AMDGPU_INFO_FW_SMC;
1123 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1124 if (ret)
1125 return ret;
1126 seq_printf(m, "SMC feature version: %u, firmware version: 0x%08x\n",
1127 fw_info.feature, fw_info.ver);
1128
1129 /* SDMA */
1130 query_fw.fw_type = AMDGPU_INFO_FW_SDMA;
1131 for (i = 0; i < adev->sdma.num_instances; i++) {
1132 query_fw.index = i;
1133 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1134 if (ret)
1135 return ret;
1136 seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n",
1137 i, fw_info.feature, fw_info.ver);
1138 }
1139
1140 return 0;
1141}
1142
1143static const struct drm_info_list amdgpu_firmware_info_list[] = {
1144 {"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL},
1145};
1146#endif
1147
1148int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev)
1149{
1150#if defined(CONFIG_DEBUG_FS)
1151 return amdgpu_debugfs_add_files(adev, amdgpu_firmware_info_list,
1152 ARRAY_SIZE(amdgpu_firmware_info_list));
1153#else
1154 return 0;
1155#endif
1156}