blob: 1ecfe9a046ab4d9d6af59add1b9a422460766adf [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
39#if defined(CONFIG_VGA_SWITCHEROO)
40bool amdgpu_has_atpx(void);
41#else
42static inline bool amdgpu_has_atpx(void) { return false; }
43#endif
44
45/**
46 * amdgpu_driver_unload_kms - Main unload function for KMS.
47 *
48 * @dev: drm dev pointer
49 *
50 * This is the main unload function for KMS (all asics).
51 * Returns 0 on success.
52 */
53int amdgpu_driver_unload_kms(struct drm_device *dev)
54{
55 struct amdgpu_device *adev = dev->dev_private;
56
57 if (adev == NULL)
58 return 0;
59
60 if (adev->rmmio == NULL)
61 goto done_free;
62
Lukas Wunner4a788542016-06-08 18:47:27 +020063 if (amdgpu_device_is_px(dev)) {
64 pm_runtime_get_sync(dev->dev);
Lukas Wunner6ce62d82016-06-08 18:47:27 +020065 pm_runtime_forbid(dev->dev);
Lukas Wunner4a788542016-06-08 18:47:27 +020066 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040067
Oded Gabbay130e0372015-06-12 21:35:14 +030068 amdgpu_amdkfd_device_fini(adev);
69
Alex Deucherd38ceaf2015-04-20 16:55:21 -040070 amdgpu_acpi_fini(adev);
71
72 amdgpu_device_fini(adev);
73
74done_free:
75 kfree(adev);
76 dev->dev_private = NULL;
77 return 0;
78}
79
80/**
81 * amdgpu_driver_load_kms - Main load function for KMS.
82 *
83 * @dev: drm dev pointer
84 * @flags: device flags
85 *
86 * This is the main load function for KMS (all asics).
87 * Returns 0 on success, error on failure.
88 */
89int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
90{
91 struct amdgpu_device *adev;
92 int r, acpi_status;
93
94 adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL);
95 if (adev == NULL) {
96 return -ENOMEM;
97 }
98 dev->dev_private = (void *)adev;
99
100 if ((amdgpu_runtime_pm != 0) &&
101 amdgpu_has_atpx() &&
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800102 ((flags & AMD_IS_APU) == 0))
103 flags |= AMD_IS_PX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400104
105 /* amdgpu_device_init should report only fatal error
106 * like memory allocation failure or iomapping failure,
107 * or memory manager initialization failure, it must
108 * properly initialize the GPU MC controller and permit
109 * VRAM allocation
110 */
111 r = amdgpu_device_init(adev, dev, dev->pdev, flags);
112 if (r) {
113 dev_err(&dev->pdev->dev, "Fatal error during GPU init\n");
114 goto out;
115 }
116
117 /* Call ACPI methods: require modeset init
118 * but failure is not fatal
119 */
120 if (!r) {
121 acpi_status = amdgpu_acpi_init(adev);
122 if (acpi_status)
123 dev_dbg(&dev->pdev->dev,
124 "Error during ACPI methods call\n");
125 }
126
Oded Gabbay130e0372015-06-12 21:35:14 +0300127 amdgpu_amdkfd_load_interface(adev);
128 amdgpu_amdkfd_device_probe(adev);
129 amdgpu_amdkfd_device_init(adev);
130
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 if (amdgpu_device_is_px(dev)) {
132 pm_runtime_use_autosuspend(dev->dev);
133 pm_runtime_set_autosuspend_delay(dev->dev, 5000);
134 pm_runtime_set_active(dev->dev);
135 pm_runtime_allow(dev->dev);
136 pm_runtime_mark_last_busy(dev->dev);
137 pm_runtime_put_autosuspend(dev->dev);
138 }
139
140out:
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200141 if (r) {
142 /* balance pm_runtime_get_sync in amdgpu_driver_unload_kms */
143 if (adev->rmmio && amdgpu_device_is_px(dev))
144 pm_runtime_put_noidle(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400145 amdgpu_driver_unload_kms(dev);
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200146 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400147
148 return r;
149}
150
Huang Rui000cab92016-06-12 15:44:44 +0800151static int amdgpu_firmware_info(struct drm_amdgpu_info_firmware *fw_info,
152 struct drm_amdgpu_query_fw *query_fw,
153 struct amdgpu_device *adev)
154{
155 switch (query_fw->fw_type) {
156 case AMDGPU_INFO_FW_VCE:
157 fw_info->ver = adev->vce.fw_version;
158 fw_info->feature = adev->vce.fb_version;
159 break;
160 case AMDGPU_INFO_FW_UVD:
161 fw_info->ver = adev->uvd.fw_version;
162 fw_info->feature = 0;
163 break;
164 case AMDGPU_INFO_FW_GMC:
165 fw_info->ver = adev->mc.fw_version;
166 fw_info->feature = 0;
167 break;
168 case AMDGPU_INFO_FW_GFX_ME:
169 fw_info->ver = adev->gfx.me_fw_version;
170 fw_info->feature = adev->gfx.me_feature_version;
171 break;
172 case AMDGPU_INFO_FW_GFX_PFP:
173 fw_info->ver = adev->gfx.pfp_fw_version;
174 fw_info->feature = adev->gfx.pfp_feature_version;
175 break;
176 case AMDGPU_INFO_FW_GFX_CE:
177 fw_info->ver = adev->gfx.ce_fw_version;
178 fw_info->feature = adev->gfx.ce_feature_version;
179 break;
180 case AMDGPU_INFO_FW_GFX_RLC:
181 fw_info->ver = adev->gfx.rlc_fw_version;
182 fw_info->feature = adev->gfx.rlc_feature_version;
183 break;
184 case AMDGPU_INFO_FW_GFX_MEC:
185 if (query_fw->index == 0) {
186 fw_info->ver = adev->gfx.mec_fw_version;
187 fw_info->feature = adev->gfx.mec_feature_version;
188 } else if (query_fw->index == 1) {
189 fw_info->ver = adev->gfx.mec2_fw_version;
190 fw_info->feature = adev->gfx.mec2_feature_version;
191 } else
192 return -EINVAL;
193 break;
194 case AMDGPU_INFO_FW_SMC:
195 fw_info->ver = adev->pm.fw_version;
196 fw_info->feature = 0;
197 break;
198 case AMDGPU_INFO_FW_SDMA:
199 if (query_fw->index >= adev->sdma.num_instances)
200 return -EINVAL;
201 fw_info->ver = adev->sdma.instance[query_fw->index].fw_version;
202 fw_info->feature = adev->sdma.instance[query_fw->index].feature_version;
203 break;
204 default:
205 return -EINVAL;
206 }
207 return 0;
208}
209
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400210/*
211 * Userspace get information ioctl
212 */
213/**
214 * amdgpu_info_ioctl - answer a device specific request.
215 *
216 * @adev: amdgpu device pointer
217 * @data: request object
218 * @filp: drm filp
219 *
220 * This function is used to pass device specific parameters to the userspace
221 * drivers. Examples include: pci device id, pipeline parms, tiling params,
222 * etc. (all asics).
223 * Returns 0 on success, -EINVAL on failure.
224 */
225static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
226{
227 struct amdgpu_device *adev = dev->dev_private;
228 struct drm_amdgpu_info *info = data;
229 struct amdgpu_mode_info *minfo = &adev->mode_info;
230 void __user *out = (void __user *)(long)info->return_pointer;
231 uint32_t size = info->return_size;
232 struct drm_crtc *crtc;
233 uint32_t ui32 = 0;
234 uint64_t ui64 = 0;
235 int i, found;
236
237 if (!info->return_size || !info->return_pointer)
238 return -EINVAL;
239
240 switch (info->query) {
241 case AMDGPU_INFO_ACCEL_WORKING:
242 ui32 = adev->accel_working;
243 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
244 case AMDGPU_INFO_CRTC_FROM_ID:
245 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
246 crtc = (struct drm_crtc *)minfo->crtcs[i];
247 if (crtc && crtc->base.id == info->mode_crtc.id) {
248 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
249 ui32 = amdgpu_crtc->crtc_id;
250 found = 1;
251 break;
252 }
253 }
254 if (!found) {
255 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
256 return -EINVAL;
257 }
258 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
259 case AMDGPU_INFO_HW_IP_INFO: {
260 struct drm_amdgpu_info_hw_ip ip = {};
yanyang15fc3aee2015-05-22 14:39:35 -0400261 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400262 uint32_t ring_mask = 0;
Ken Wang71062f42015-06-04 21:26:57 +0800263 uint32_t ib_start_alignment = 0;
264 uint32_t ib_size_alignment = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400265
266 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
267 return -EINVAL;
268
269 switch (info->query_hw_ip.type) {
270 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400271 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400272 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
273 ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800274 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
275 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276 break;
277 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400278 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279 for (i = 0; i < adev->gfx.num_compute_rings; i++)
280 ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800281 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
282 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400283 break;
284 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400285 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherc113ea12015-10-08 16:30:37 -0400286 for (i = 0; i < adev->sdma.num_instances; i++)
287 ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800288 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
289 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400290 break;
291 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400292 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400293 ring_mask = adev->uvd.ring.ready ? 1 : 0;
Ken Wang71062f42015-06-04 21:26:57 +0800294 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
Alex Deucherc4795ca2016-08-22 16:31:36 -0400295 ib_size_alignment = 16;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400296 break;
297 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400298 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucher75c65482016-08-24 16:56:21 -0400299 for (i = 0; i < adev->vce.num_rings; i++)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400300 ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800301 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
Alex Deuchera22f8032016-08-23 10:44:16 -0400302 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400303 break;
304 default:
305 return -EINVAL;
306 }
307
308 for (i = 0; i < adev->num_ip_blocks; i++) {
309 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e082015-07-28 11:50:31 -0400310 adev->ip_block_status[i].valid) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400311 ip.hw_ip_version_major = adev->ip_blocks[i].major;
312 ip.hw_ip_version_minor = adev->ip_blocks[i].minor;
313 ip.capabilities_flags = 0;
314 ip.available_rings = ring_mask;
Ken Wang71062f42015-06-04 21:26:57 +0800315 ip.ib_start_alignment = ib_start_alignment;
316 ip.ib_size_alignment = ib_size_alignment;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400317 break;
318 }
319 }
320 return copy_to_user(out, &ip,
321 min((size_t)size, sizeof(ip))) ? -EFAULT : 0;
322 }
323 case AMDGPU_INFO_HW_IP_COUNT: {
yanyang15fc3aee2015-05-22 14:39:35 -0400324 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400325 uint32_t count = 0;
326
327 switch (info->query_hw_ip.type) {
328 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400329 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400330 break;
331 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400332 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400333 break;
334 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400335 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400336 break;
337 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400338 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400339 break;
340 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400341 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400342 break;
343 default:
344 return -EINVAL;
345 }
346
347 for (i = 0; i < adev->num_ip_blocks; i++)
348 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e082015-07-28 11:50:31 -0400349 adev->ip_block_status[i].valid &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400350 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
351 count++;
352
353 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
354 }
355 case AMDGPU_INFO_TIMESTAMP:
Alex Deucherb95e31f2016-07-07 15:01:42 -0400356 ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400357 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
358 case AMDGPU_INFO_FW_VERSION: {
359 struct drm_amdgpu_info_firmware fw_info;
Huang Rui000cab92016-06-12 15:44:44 +0800360 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400361
362 /* We only support one instance of each IP block right now. */
363 if (info->query_fw.ip_instance != 0)
364 return -EINVAL;
365
Huang Rui000cab92016-06-12 15:44:44 +0800366 ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
367 if (ret)
368 return ret;
369
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400370 return copy_to_user(out, &fw_info,
371 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
372 }
373 case AMDGPU_INFO_NUM_BYTES_MOVED:
374 ui64 = atomic64_read(&adev->num_bytes_moved);
375 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
Marek Olšák83a59b62016-08-17 23:58:58 +0200376 case AMDGPU_INFO_NUM_EVICTIONS:
377 ui64 = atomic64_read(&adev->num_evictions);
378 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400379 case AMDGPU_INFO_VRAM_USAGE:
380 ui64 = atomic64_read(&adev->vram_usage);
381 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
382 case AMDGPU_INFO_VIS_VRAM_USAGE:
383 ui64 = atomic64_read(&adev->vram_vis_usage);
384 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
385 case AMDGPU_INFO_GTT_USAGE:
386 ui64 = atomic64_read(&adev->gtt_usage);
387 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
388 case AMDGPU_INFO_GDS_CONFIG: {
389 struct drm_amdgpu_info_gds gds_info;
390
Alex Deucherc92b90c2015-04-30 11:47:03 -0400391 memset(&gds_info, 0, sizeof(gds_info));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400392 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT;
393 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT;
394 gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT;
395 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT;
396 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT;
397 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT;
398 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT;
399 return copy_to_user(out, &gds_info,
400 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
401 }
402 case AMDGPU_INFO_VRAM_GTT: {
403 struct drm_amdgpu_info_vram_gtt vram_gtt;
404
405 vram_gtt.vram_size = adev->mc.real_vram_size;
Chunming Zhou7c0ecda2016-04-01 17:05:30 +0800406 vram_gtt.vram_size -= adev->vram_pin_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400407 vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
Chunming Zhoue131b912016-04-05 10:48:48 +0800408 vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400409 vram_gtt.gtt_size = adev->mc.gtt_size;
410 vram_gtt.gtt_size -= adev->gart_pin_size;
411 return copy_to_user(out, &vram_gtt,
412 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
413 }
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800414 case AMDGPU_INFO_MEMORY: {
415 struct drm_amdgpu_memory_info mem;
Junwei Zhang9f6163e2016-09-21 10:17:22 +0800416
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800417 memset(&mem, 0, sizeof(mem));
418 mem.vram.total_heap_size = adev->mc.real_vram_size;
419 mem.vram.usable_heap_size =
420 adev->mc.real_vram_size - adev->vram_pin_size;
421 mem.vram.heap_usage = atomic64_read(&adev->vram_usage);
422 mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800423
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800424 mem.cpu_accessible_vram.total_heap_size =
425 adev->mc.visible_vram_size;
426 mem.cpu_accessible_vram.usable_heap_size =
427 adev->mc.visible_vram_size -
428 (adev->vram_pin_size - adev->invisible_pin_size);
429 mem.cpu_accessible_vram.heap_usage =
430 atomic64_read(&adev->vram_vis_usage);
431 mem.cpu_accessible_vram.max_allocation =
432 mem.cpu_accessible_vram.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800433
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800434 mem.gtt.total_heap_size = adev->mc.gtt_size;
435 mem.gtt.usable_heap_size =
436 adev->mc.gtt_size - adev->gart_pin_size;
437 mem.gtt.heap_usage = atomic64_read(&adev->gtt_usage);
438 mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4;
Junwei Zhangcfa32552016-09-21 10:33:26 +0800439
Junwei Zhange0adf6c2016-09-29 09:39:10 +0800440 return copy_to_user(out, &mem,
441 min((size_t)size, sizeof(mem)))
Junwei Zhangcfa32552016-09-21 10:33:26 +0800442 ? -EFAULT : 0;
443 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400444 case AMDGPU_INFO_READ_MMR_REG: {
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300445 unsigned n, alloc_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400446 uint32_t *regs;
447 unsigned se_num = (info->read_mmr_reg.instance >>
448 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
449 AMDGPU_INFO_MMR_SE_INDEX_MASK;
450 unsigned sh_num = (info->read_mmr_reg.instance >>
451 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
452 AMDGPU_INFO_MMR_SH_INDEX_MASK;
453
454 /* set full masks if the userspace set all bits
455 * in the bitfields */
456 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
457 se_num = 0xffffffff;
458 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
459 sh_num = 0xffffffff;
460
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300461 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400462 if (!regs)
463 return -ENOMEM;
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300464 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400465
466 for (i = 0; i < info->read_mmr_reg.count; i++)
467 if (amdgpu_asic_read_register(adev, se_num, sh_num,
468 info->read_mmr_reg.dword_offset + i,
469 &regs[i])) {
470 DRM_DEBUG_KMS("unallowed offset %#x\n",
471 info->read_mmr_reg.dword_offset + i);
472 kfree(regs);
473 return -EFAULT;
474 }
475 n = copy_to_user(out, regs, min(size, alloc_size));
476 kfree(regs);
477 return n ? -EFAULT : 0;
478 }
479 case AMDGPU_INFO_DEV_INFO: {
Dan Carpenterc193fa912015-07-28 18:51:29 +0300480 struct drm_amdgpu_info_device dev_info = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400481
482 dev_info.device_id = dev->pdev->device;
483 dev_info.chip_rev = adev->rev_id;
484 dev_info.external_rev = adev->external_rev_id;
485 dev_info.pci_rev = dev->pdev->revision;
486 dev_info.family = adev->family;
487 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
488 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
489 /* return all clocks in KHz */
490 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800491 if (adev->pm.dpm_enabled) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400492 dev_info.max_engine_clock =
493 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800494 dev_info.max_memory_clock =
495 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.mclk * 10;
496 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400497 dev_info.max_engine_clock = adev->pm.default_sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800498 dev_info.max_memory_clock = adev->pm.default_mclk * 10;
499 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
Alex Deucher0b100292016-06-17 10:17:17 -0400501 dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se *
502 adev->gfx.config.max_shader_engines;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400503 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
504 dev_info._pad = 0;
505 dev_info.ids_flags = 0;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800506 if (adev->flags & AMD_IS_APU)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400507 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
508 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
Jammy Zhou02b70c82015-05-12 22:46:45 +0800509 dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
Christian Königc548b342015-08-07 20:22:40 +0200510 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400511 dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
512 AMDGPU_GPU_PAGE_SIZE;
513 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
514
Alex Deucher7dae69a2016-05-03 16:25:53 -0400515 dev_info.cu_active_number = adev->gfx.cu_info.number;
516 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
Ken Wanga101a892015-06-03 17:47:54 +0800517 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
Alex Deucher7dae69a2016-05-03 16:25:53 -0400518 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
519 sizeof(adev->gfx.cu_info.bitmap));
Ken Wang81c59f52015-06-03 21:02:01 +0800520 dev_info.vram_type = adev->mc.vram_type;
521 dev_info.vram_bit_width = adev->mc.vram_width;
Leo Liufa927542015-07-13 12:46:23 -0400522 dev_info.vce_harvest_config = adev->vce.harvest_config;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400523
524 return copy_to_user(out, &dev_info,
525 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
526 }
527 default:
528 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
529 return -EINVAL;
530 }
531 return 0;
532}
533
534
535/*
536 * Outdated mess for old drm with Xorg being in charge (void function now).
537 */
538/**
Alex Deucher8b7530b2015-10-02 16:59:34 -0400539 * amdgpu_driver_lastclose_kms - drm callback for last close
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400540 *
541 * @dev: drm dev pointer
542 *
Lukas Wunner16944672015-09-05 11:17:35 +0200543 * Switch vga_switcheroo state after last close (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400544 */
545void amdgpu_driver_lastclose_kms(struct drm_device *dev)
546{
Alex Deucher8b7530b2015-10-02 16:59:34 -0400547 struct amdgpu_device *adev = dev->dev_private;
548
549 amdgpu_fbdev_restore_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400550 vga_switcheroo_process_delayed_switch();
551}
552
553/**
554 * amdgpu_driver_open_kms - drm callback for open
555 *
556 * @dev: drm dev pointer
557 * @file_priv: drm file
558 *
559 * On device open, init vm on cayman+ (all asics).
560 * Returns 0 on success, error on failure.
561 */
562int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
563{
564 struct amdgpu_device *adev = dev->dev_private;
565 struct amdgpu_fpriv *fpriv;
566 int r;
567
568 file_priv->driver_priv = NULL;
569
570 r = pm_runtime_get_sync(dev->dev);
571 if (r < 0)
572 return r;
573
574 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
Alex Deucherdc082672016-08-27 12:30:25 -0400575 if (unlikely(!fpriv)) {
576 r = -ENOMEM;
577 goto out_suspend;
578 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400579
580 r = amdgpu_vm_init(adev, &fpriv->vm);
Alex Deucherdc082672016-08-27 12:30:25 -0400581 if (r) {
582 kfree(fpriv);
583 goto out_suspend;
584 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400585
586 mutex_init(&fpriv->bo_list_lock);
587 idr_init(&fpriv->bo_list_handles);
588
Christian Königefd4ccb2015-08-04 16:20:31 +0200589 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400590
591 file_priv->driver_priv = fpriv;
592
Alex Deucherdc082672016-08-27 12:30:25 -0400593out_suspend:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400594 pm_runtime_mark_last_busy(dev->dev);
595 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400596
597 return r;
598}
599
600/**
601 * amdgpu_driver_postclose_kms - drm callback for post close
602 *
603 * @dev: drm dev pointer
604 * @file_priv: drm file
605 *
606 * On device post close, tear down vm on cayman+ (all asics).
607 */
608void amdgpu_driver_postclose_kms(struct drm_device *dev,
609 struct drm_file *file_priv)
610{
611 struct amdgpu_device *adev = dev->dev_private;
612 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
613 struct amdgpu_bo_list *list;
614 int handle;
615
616 if (!fpriv)
617 return;
618
Christian König02537d62015-08-25 15:05:20 +0200619 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
620
Leo Liucd437e32016-07-22 14:13:11 -0400621 amdgpu_uvd_free_handles(adev, file_priv);
622 amdgpu_vce_free_handles(adev, file_priv);
623
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624 amdgpu_vm_fini(adev, &fpriv->vm);
625
626 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
627 amdgpu_bo_list_free(list);
628
629 idr_destroy(&fpriv->bo_list_handles);
630 mutex_destroy(&fpriv->bo_list_lock);
631
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400632 kfree(fpriv);
633 file_priv->driver_priv = NULL;
Alex Deucherd6bda7b2016-08-27 12:27:24 -0400634
635 pm_runtime_mark_last_busy(dev->dev);
636 pm_runtime_put_autosuspend(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400637}
638
639/**
640 * amdgpu_driver_preclose_kms - drm callback for pre close
641 *
642 * @dev: drm dev pointer
643 * @file_priv: drm file
644 *
645 * On device pre close, tear down hyperz and cmask filps on r1xx-r5xx
646 * (all asics).
647 */
648void amdgpu_driver_preclose_kms(struct drm_device *dev,
649 struct drm_file *file_priv)
650{
Alex Deucherd6bda7b2016-08-27 12:27:24 -0400651 pm_runtime_get_sync(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400652}
653
654/*
655 * VBlank related functions.
656 */
657/**
658 * amdgpu_get_vblank_counter_kms - get frame count
659 *
660 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200661 * @pipe: crtc to get the frame count from
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400662 *
663 * Gets the frame count on the requested crtc (all asics).
664 * Returns frame count on success, -EINVAL on failure.
665 */
Thierry Reding88e72712015-09-24 18:35:31 +0200666u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400667{
668 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500669 int vpos, hpos, stat;
670 u32 count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400671
Thierry Reding88e72712015-09-24 18:35:31 +0200672 if (pipe >= adev->mode_info.num_crtc) {
673 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400674 return -EINVAL;
675 }
676
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500677 /* The hw increments its frame counter at start of vsync, not at start
678 * of vblank, as is required by DRM core vblank counter handling.
679 * Cook the hw count here to make it appear to the caller as if it
680 * incremented at start of vblank. We measure distance to start of
681 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
682 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
683 * result by 1 to give the proper appearance to caller.
684 */
685 if (adev->mode_info.crtcs[pipe]) {
686 /* Repeat readout if needed to provide stable result if
687 * we cross start of vsync during the queries.
688 */
689 do {
690 count = amdgpu_display_vblank_get_counter(adev, pipe);
691 /* Ask amdgpu_get_crtc_scanoutpos to return vpos as
692 * distance to start of vblank, instead of regular
693 * vertical scanout pos.
694 */
695 stat = amdgpu_get_crtc_scanoutpos(
696 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
697 &vpos, &hpos, NULL, NULL,
698 &adev->mode_info.crtcs[pipe]->base.hwmode);
699 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
700
701 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
702 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
703 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
704 } else {
705 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
706 pipe, vpos);
707
708 /* Bump counter if we are at >= leading edge of vblank,
709 * but before vsync where vpos would turn negative and
710 * the hw counter really increments.
711 */
712 if (vpos >= 0)
713 count++;
714 }
715 } else {
716 /* Fallback to use value as is. */
717 count = amdgpu_display_vblank_get_counter(adev, pipe);
718 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
719 }
720
721 return count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400722}
723
724/**
725 * amdgpu_enable_vblank_kms - enable vblank interrupt
726 *
727 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200728 * @pipe: crtc to enable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400729 *
730 * Enable the interrupt on the requested crtc (all asics).
731 * Returns 0 on success, -EINVAL on failure.
732 */
Thierry Reding88e72712015-09-24 18:35:31 +0200733int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400734{
735 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200736 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400737
738 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
739}
740
741/**
742 * amdgpu_disable_vblank_kms - disable vblank interrupt
743 *
744 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200745 * @pipe: crtc to disable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400746 *
747 * Disable the interrupt on the requested crtc (all asics).
748 */
Thierry Reding88e72712015-09-24 18:35:31 +0200749void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400750{
751 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200752 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400753
754 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
755}
756
757/**
758 * amdgpu_get_vblank_timestamp_kms - get vblank timestamp
759 *
760 * @dev: drm dev pointer
761 * @crtc: crtc to get the timestamp for
762 * @max_error: max error
763 * @vblank_time: time value
764 * @flags: flags passed to the driver
765 *
766 * Gets the timestamp on the requested crtc based on the
767 * scanout position. (all asics).
768 * Returns postive status flags on success, negative error on failure.
769 */
Thierry Reding88e72712015-09-24 18:35:31 +0200770int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771 int *max_error,
772 struct timeval *vblank_time,
773 unsigned flags)
774{
Thierry Reding88e72712015-09-24 18:35:31 +0200775 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400776 struct amdgpu_device *adev = dev->dev_private;
777
Thierry Reding88e72712015-09-24 18:35:31 +0200778 if (pipe >= dev->num_crtcs) {
779 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400780 return -EINVAL;
781 }
782
783 /* Get associated drm_crtc: */
Thierry Reding88e72712015-09-24 18:35:31 +0200784 crtc = &adev->mode_info.crtcs[pipe]->base;
Harry Wentland9ddf9402015-11-25 15:42:09 -0500785 if (!crtc) {
786 /* This can occur on driver load if some component fails to
787 * initialize completely and driver is unloaded */
788 DRM_ERROR("Uninitialized crtc %d\n", pipe);
789 return -EINVAL;
790 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400791
792 /* Helper routine in DRM core does all the work: */
Thierry Reding88e72712015-09-24 18:35:31 +0200793 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400794 vblank_time, flags,
Thierry Reding88e72712015-09-24 18:35:31 +0200795 &crtc->hwmode);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400796}
797
798const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200799 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
800 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
801 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400802 /* KMS */
Daniel Vetterf8c47142015-09-08 13:56:30 +0200803 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
804 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
805 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
806 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
807 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
808 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
809 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
810 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
811 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400812};
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200813const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);
Huang Rui50ab2532016-06-12 15:51:09 +0800814
815/*
816 * Debugfs info
817 */
818#if defined(CONFIG_DEBUG_FS)
819
820static int amdgpu_debugfs_firmware_info(struct seq_file *m, void *data)
821{
822 struct drm_info_node *node = (struct drm_info_node *) m->private;
823 struct drm_device *dev = node->minor->dev;
824 struct amdgpu_device *adev = dev->dev_private;
825 struct drm_amdgpu_info_firmware fw_info;
826 struct drm_amdgpu_query_fw query_fw;
827 int ret, i;
828
829 /* VCE */
830 query_fw.fw_type = AMDGPU_INFO_FW_VCE;
831 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
832 if (ret)
833 return ret;
834 seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n",
835 fw_info.feature, fw_info.ver);
836
837 /* UVD */
838 query_fw.fw_type = AMDGPU_INFO_FW_UVD;
839 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
840 if (ret)
841 return ret;
842 seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n",
843 fw_info.feature, fw_info.ver);
844
845 /* GMC */
846 query_fw.fw_type = AMDGPU_INFO_FW_GMC;
847 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
848 if (ret)
849 return ret;
850 seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n",
851 fw_info.feature, fw_info.ver);
852
853 /* ME */
854 query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME;
855 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
856 if (ret)
857 return ret;
858 seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n",
859 fw_info.feature, fw_info.ver);
860
861 /* PFP */
862 query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP;
863 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
864 if (ret)
865 return ret;
866 seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n",
867 fw_info.feature, fw_info.ver);
868
869 /* CE */
870 query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE;
871 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
872 if (ret)
873 return ret;
874 seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n",
875 fw_info.feature, fw_info.ver);
876
877 /* RLC */
878 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC;
879 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
880 if (ret)
881 return ret;
882 seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n",
883 fw_info.feature, fw_info.ver);
884
885 /* MEC */
886 query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC;
887 query_fw.index = 0;
888 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
889 if (ret)
890 return ret;
891 seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n",
892 fw_info.feature, fw_info.ver);
893
894 /* MEC2 */
895 if (adev->asic_type == CHIP_KAVERI ||
896 (adev->asic_type > CHIP_TOPAZ && adev->asic_type != CHIP_STONEY)) {
897 query_fw.index = 1;
898 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
899 if (ret)
900 return ret;
901 seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n",
902 fw_info.feature, fw_info.ver);
903 }
904
905 /* SMC */
906 query_fw.fw_type = AMDGPU_INFO_FW_SMC;
907 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
908 if (ret)
909 return ret;
910 seq_printf(m, "SMC feature version: %u, firmware version: 0x%08x\n",
911 fw_info.feature, fw_info.ver);
912
913 /* SDMA */
914 query_fw.fw_type = AMDGPU_INFO_FW_SDMA;
915 for (i = 0; i < adev->sdma.num_instances; i++) {
916 query_fw.index = i;
917 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
918 if (ret)
919 return ret;
920 seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n",
921 i, fw_info.feature, fw_info.ver);
922 }
923
924 return 0;
925}
926
927static const struct drm_info_list amdgpu_firmware_info_list[] = {
928 {"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL},
929};
930#endif
931
932int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev)
933{
934#if defined(CONFIG_DEBUG_FS)
935 return amdgpu_debugfs_add_files(adev, amdgpu_firmware_info_list,
936 ARRAY_SIZE(amdgpu_firmware_info_list));
937#else
938 return 0;
939#endif
940}