blob: 9b1f9790dfae676b28a3de1a4d6494befe3b33c8 [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);
65 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040066
Oded Gabbay130e0372015-06-12 21:35:14 +030067 amdgpu_amdkfd_device_fini(adev);
68
Alex Deucherd38ceaf2015-04-20 16:55:21 -040069 amdgpu_acpi_fini(adev);
70
71 amdgpu_device_fini(adev);
72
73done_free:
74 kfree(adev);
75 dev->dev_private = NULL;
76 return 0;
77}
78
79/**
80 * amdgpu_driver_load_kms - Main load function for KMS.
81 *
82 * @dev: drm dev pointer
83 * @flags: device flags
84 *
85 * This is the main load function for KMS (all asics).
86 * Returns 0 on success, error on failure.
87 */
88int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
89{
90 struct amdgpu_device *adev;
91 int r, acpi_status;
92
93 adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL);
94 if (adev == NULL) {
95 return -ENOMEM;
96 }
97 dev->dev_private = (void *)adev;
98
99 if ((amdgpu_runtime_pm != 0) &&
100 amdgpu_has_atpx() &&
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800101 ((flags & AMD_IS_APU) == 0))
102 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
139out:
140 if (r)
141 amdgpu_driver_unload_kms(dev);
142
143
144 return r;
145}
146
147/*
148 * Userspace get information ioctl
149 */
150/**
151 * amdgpu_info_ioctl - answer a device specific request.
152 *
153 * @adev: amdgpu device pointer
154 * @data: request object
155 * @filp: drm filp
156 *
157 * This function is used to pass device specific parameters to the userspace
158 * drivers. Examples include: pci device id, pipeline parms, tiling params,
159 * etc. (all asics).
160 * Returns 0 on success, -EINVAL on failure.
161 */
162static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
163{
164 struct amdgpu_device *adev = dev->dev_private;
165 struct drm_amdgpu_info *info = data;
166 struct amdgpu_mode_info *minfo = &adev->mode_info;
167 void __user *out = (void __user *)(long)info->return_pointer;
168 uint32_t size = info->return_size;
169 struct drm_crtc *crtc;
170 uint32_t ui32 = 0;
171 uint64_t ui64 = 0;
172 int i, found;
173
174 if (!info->return_size || !info->return_pointer)
175 return -EINVAL;
176
177 switch (info->query) {
178 case AMDGPU_INFO_ACCEL_WORKING:
179 ui32 = adev->accel_working;
180 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
181 case AMDGPU_INFO_CRTC_FROM_ID:
182 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
183 crtc = (struct drm_crtc *)minfo->crtcs[i];
184 if (crtc && crtc->base.id == info->mode_crtc.id) {
185 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
186 ui32 = amdgpu_crtc->crtc_id;
187 found = 1;
188 break;
189 }
190 }
191 if (!found) {
192 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
193 return -EINVAL;
194 }
195 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
196 case AMDGPU_INFO_HW_IP_INFO: {
197 struct drm_amdgpu_info_hw_ip ip = {};
yanyang15fc3aee2015-05-22 14:39:35 -0400198 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400199 uint32_t ring_mask = 0;
Ken Wang71062f42015-06-04 21:26:57 +0800200 uint32_t ib_start_alignment = 0;
201 uint32_t ib_size_alignment = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400202
203 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
204 return -EINVAL;
205
206 switch (info->query_hw_ip.type) {
207 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400208 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400209 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
210 ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800211 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
212 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400213 break;
214 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400215 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400216 for (i = 0; i < adev->gfx.num_compute_rings; i++)
217 ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800218 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
219 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400220 break;
221 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400222 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherc113ea12015-10-08 16:30:37 -0400223 for (i = 0; i < adev->sdma.num_instances; i++)
224 ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800225 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
226 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400227 break;
228 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400229 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400230 ring_mask = adev->uvd.ring.ready ? 1 : 0;
Ken Wang71062f42015-06-04 21:26:57 +0800231 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
232 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400233 break;
234 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400235 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400236 for (i = 0; i < AMDGPU_MAX_VCE_RINGS; i++)
237 ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800238 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
239 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400240 break;
241 default:
242 return -EINVAL;
243 }
244
245 for (i = 0; i < adev->num_ip_blocks; i++) {
246 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e02015-07-28 11:50:31 -0400247 adev->ip_block_status[i].valid) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400248 ip.hw_ip_version_major = adev->ip_blocks[i].major;
249 ip.hw_ip_version_minor = adev->ip_blocks[i].minor;
250 ip.capabilities_flags = 0;
251 ip.available_rings = ring_mask;
Ken Wang71062f42015-06-04 21:26:57 +0800252 ip.ib_start_alignment = ib_start_alignment;
253 ip.ib_size_alignment = ib_size_alignment;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400254 break;
255 }
256 }
257 return copy_to_user(out, &ip,
258 min((size_t)size, sizeof(ip))) ? -EFAULT : 0;
259 }
260 case AMDGPU_INFO_HW_IP_COUNT: {
yanyang15fc3aee2015-05-22 14:39:35 -0400261 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400262 uint32_t count = 0;
263
264 switch (info->query_hw_ip.type) {
265 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400266 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400267 break;
268 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400269 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400270 break;
271 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400272 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400273 break;
274 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400275 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276 break;
277 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400278 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279 break;
280 default:
281 return -EINVAL;
282 }
283
284 for (i = 0; i < adev->num_ip_blocks; i++)
285 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e02015-07-28 11:50:31 -0400286 adev->ip_block_status[i].valid &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400287 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
288 count++;
289
290 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
291 }
292 case AMDGPU_INFO_TIMESTAMP:
293 ui64 = amdgpu_asic_get_gpu_clock_counter(adev);
294 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
295 case AMDGPU_INFO_FW_VERSION: {
296 struct drm_amdgpu_info_firmware fw_info;
297
298 /* We only support one instance of each IP block right now. */
299 if (info->query_fw.ip_instance != 0)
300 return -EINVAL;
301
302 switch (info->query_fw.fw_type) {
303 case AMDGPU_INFO_FW_VCE:
304 fw_info.ver = adev->vce.fw_version;
305 fw_info.feature = adev->vce.fb_version;
306 break;
307 case AMDGPU_INFO_FW_UVD:
Sonny Jiang562e2682016-04-18 16:05:04 -0400308 fw_info.ver = adev->uvd.fw_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400309 fw_info.feature = 0;
310 break;
311 case AMDGPU_INFO_FW_GMC:
312 fw_info.ver = adev->mc.fw_version;
313 fw_info.feature = 0;
314 break;
315 case AMDGPU_INFO_FW_GFX_ME:
316 fw_info.ver = adev->gfx.me_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800317 fw_info.feature = adev->gfx.me_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400318 break;
319 case AMDGPU_INFO_FW_GFX_PFP:
320 fw_info.ver = adev->gfx.pfp_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800321 fw_info.feature = adev->gfx.pfp_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400322 break;
323 case AMDGPU_INFO_FW_GFX_CE:
324 fw_info.ver = adev->gfx.ce_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800325 fw_info.feature = adev->gfx.ce_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400326 break;
327 case AMDGPU_INFO_FW_GFX_RLC:
328 fw_info.ver = adev->gfx.rlc_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800329 fw_info.feature = adev->gfx.rlc_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400330 break;
331 case AMDGPU_INFO_FW_GFX_MEC:
Jammy Zhou351643d2015-08-04 10:43:50 +0800332 if (info->query_fw.index == 0) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400333 fw_info.ver = adev->gfx.mec_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800334 fw_info.feature = adev->gfx.mec_feature_version;
335 } else if (info->query_fw.index == 1) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400336 fw_info.ver = adev->gfx.mec2_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800337 fw_info.feature = adev->gfx.mec2_feature_version;
338 } else
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400339 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400340 break;
341 case AMDGPU_INFO_FW_SMC:
342 fw_info.ver = adev->pm.fw_version;
343 fw_info.feature = 0;
344 break;
345 case AMDGPU_INFO_FW_SDMA:
Alex Deucherc113ea12015-10-08 16:30:37 -0400346 if (info->query_fw.index >= adev->sdma.num_instances)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400347 return -EINVAL;
Alex Deucherc113ea12015-10-08 16:30:37 -0400348 fw_info.ver = adev->sdma.instance[info->query_fw.index].fw_version;
349 fw_info.feature = adev->sdma.instance[info->query_fw.index].feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400350 break;
351 default:
352 return -EINVAL;
353 }
354 return copy_to_user(out, &fw_info,
355 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
356 }
357 case AMDGPU_INFO_NUM_BYTES_MOVED:
358 ui64 = atomic64_read(&adev->num_bytes_moved);
359 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
360 case AMDGPU_INFO_VRAM_USAGE:
361 ui64 = atomic64_read(&adev->vram_usage);
362 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
363 case AMDGPU_INFO_VIS_VRAM_USAGE:
364 ui64 = atomic64_read(&adev->vram_vis_usage);
365 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
366 case AMDGPU_INFO_GTT_USAGE:
367 ui64 = atomic64_read(&adev->gtt_usage);
368 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
369 case AMDGPU_INFO_GDS_CONFIG: {
370 struct drm_amdgpu_info_gds gds_info;
371
Alex Deucherc92b90c2015-04-30 11:47:03 -0400372 memset(&gds_info, 0, sizeof(gds_info));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400373 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT;
374 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT;
375 gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT;
376 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT;
377 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT;
378 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT;
379 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT;
380 return copy_to_user(out, &gds_info,
381 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
382 }
383 case AMDGPU_INFO_VRAM_GTT: {
384 struct drm_amdgpu_info_vram_gtt vram_gtt;
385
386 vram_gtt.vram_size = adev->mc.real_vram_size;
Chunming Zhou7c0ecda2016-04-01 17:05:30 +0800387 vram_gtt.vram_size -= adev->vram_pin_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400388 vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
Chunming Zhoue131b912016-04-05 10:48:48 +0800389 vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400390 vram_gtt.gtt_size = adev->mc.gtt_size;
391 vram_gtt.gtt_size -= adev->gart_pin_size;
392 return copy_to_user(out, &vram_gtt,
393 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
394 }
395 case AMDGPU_INFO_READ_MMR_REG: {
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300396 unsigned n, alloc_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400397 uint32_t *regs;
398 unsigned se_num = (info->read_mmr_reg.instance >>
399 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
400 AMDGPU_INFO_MMR_SE_INDEX_MASK;
401 unsigned sh_num = (info->read_mmr_reg.instance >>
402 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
403 AMDGPU_INFO_MMR_SH_INDEX_MASK;
404
405 /* set full masks if the userspace set all bits
406 * in the bitfields */
407 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
408 se_num = 0xffffffff;
409 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
410 sh_num = 0xffffffff;
411
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300412 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400413 if (!regs)
414 return -ENOMEM;
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300415 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400416
417 for (i = 0; i < info->read_mmr_reg.count; i++)
418 if (amdgpu_asic_read_register(adev, se_num, sh_num,
419 info->read_mmr_reg.dword_offset + i,
420 &regs[i])) {
421 DRM_DEBUG_KMS("unallowed offset %#x\n",
422 info->read_mmr_reg.dword_offset + i);
423 kfree(regs);
424 return -EFAULT;
425 }
426 n = copy_to_user(out, regs, min(size, alloc_size));
427 kfree(regs);
428 return n ? -EFAULT : 0;
429 }
430 case AMDGPU_INFO_DEV_INFO: {
Dan Carpenterc193fa912015-07-28 18:51:29 +0300431 struct drm_amdgpu_info_device dev_info = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400432
433 dev_info.device_id = dev->pdev->device;
434 dev_info.chip_rev = adev->rev_id;
435 dev_info.external_rev = adev->external_rev_id;
436 dev_info.pci_rev = dev->pdev->revision;
437 dev_info.family = adev->family;
438 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
439 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
440 /* return all clocks in KHz */
441 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800442 if (adev->pm.dpm_enabled) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400443 dev_info.max_engine_clock =
444 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800445 dev_info.max_memory_clock =
446 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.mclk * 10;
447 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400448 dev_info.max_engine_clock = adev->pm.default_sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800449 dev_info.max_memory_clock = adev->pm.default_mclk * 10;
450 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400451 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
Alex Deucher8f8e00c2016-02-12 00:39:13 -0500452 dev_info.num_rb_pipes = adev->gfx.config.num_rbs;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400453 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
454 dev_info._pad = 0;
455 dev_info.ids_flags = 0;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800456 if (adev->flags & AMD_IS_APU)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400457 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
458 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
Jammy Zhou02b70c82015-05-12 22:46:45 +0800459 dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
Christian Königc548b342015-08-07 20:22:40 +0200460 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400461 dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
462 AMDGPU_GPU_PAGE_SIZE;
463 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
464
Alex Deucher7dae69a2016-05-03 16:25:53 -0400465 dev_info.cu_active_number = adev->gfx.cu_info.number;
466 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
Ken Wanga101a892015-06-03 17:47:54 +0800467 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
Alex Deucher7dae69a2016-05-03 16:25:53 -0400468 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
469 sizeof(adev->gfx.cu_info.bitmap));
Ken Wang81c59f52015-06-03 21:02:01 +0800470 dev_info.vram_type = adev->mc.vram_type;
471 dev_info.vram_bit_width = adev->mc.vram_width;
Leo Liufa927542015-07-13 12:46:23 -0400472 dev_info.vce_harvest_config = adev->vce.harvest_config;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400473
474 return copy_to_user(out, &dev_info,
475 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
476 }
477 default:
478 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
479 return -EINVAL;
480 }
481 return 0;
482}
483
484
485/*
486 * Outdated mess for old drm with Xorg being in charge (void function now).
487 */
488/**
Alex Deucher8b7530b2015-10-02 16:59:34 -0400489 * amdgpu_driver_lastclose_kms - drm callback for last close
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400490 *
491 * @dev: drm dev pointer
492 *
Lukas Wunner16944672015-09-05 11:17:35 +0200493 * Switch vga_switcheroo state after last close (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400494 */
495void amdgpu_driver_lastclose_kms(struct drm_device *dev)
496{
Alex Deucher8b7530b2015-10-02 16:59:34 -0400497 struct amdgpu_device *adev = dev->dev_private;
498
499 amdgpu_fbdev_restore_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500 vga_switcheroo_process_delayed_switch();
501}
502
503/**
504 * amdgpu_driver_open_kms - drm callback for open
505 *
506 * @dev: drm dev pointer
507 * @file_priv: drm file
508 *
509 * On device open, init vm on cayman+ (all asics).
510 * Returns 0 on success, error on failure.
511 */
512int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
513{
514 struct amdgpu_device *adev = dev->dev_private;
515 struct amdgpu_fpriv *fpriv;
516 int r;
517
518 file_priv->driver_priv = NULL;
519
520 r = pm_runtime_get_sync(dev->dev);
521 if (r < 0)
522 return r;
523
524 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
525 if (unlikely(!fpriv))
526 return -ENOMEM;
527
528 r = amdgpu_vm_init(adev, &fpriv->vm);
529 if (r)
530 goto error_free;
531
532 mutex_init(&fpriv->bo_list_lock);
533 idr_init(&fpriv->bo_list_handles);
534
Christian Königefd4ccb2015-08-04 16:20:31 +0200535 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400536
537 file_priv->driver_priv = fpriv;
538
539 pm_runtime_mark_last_busy(dev->dev);
540 pm_runtime_put_autosuspend(dev->dev);
541 return 0;
542
543error_free:
544 kfree(fpriv);
545
546 return r;
547}
548
549/**
550 * amdgpu_driver_postclose_kms - drm callback for post close
551 *
552 * @dev: drm dev pointer
553 * @file_priv: drm file
554 *
555 * On device post close, tear down vm on cayman+ (all asics).
556 */
557void amdgpu_driver_postclose_kms(struct drm_device *dev,
558 struct drm_file *file_priv)
559{
560 struct amdgpu_device *adev = dev->dev_private;
561 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
562 struct amdgpu_bo_list *list;
563 int handle;
564
565 if (!fpriv)
566 return;
567
Christian König02537d62015-08-25 15:05:20 +0200568 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
569
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400570 amdgpu_vm_fini(adev, &fpriv->vm);
571
572 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
573 amdgpu_bo_list_free(list);
574
575 idr_destroy(&fpriv->bo_list_handles);
576 mutex_destroy(&fpriv->bo_list_lock);
577
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400578 kfree(fpriv);
579 file_priv->driver_priv = NULL;
580}
581
582/**
583 * amdgpu_driver_preclose_kms - drm callback for pre close
584 *
585 * @dev: drm dev pointer
586 * @file_priv: drm file
587 *
588 * On device pre close, tear down hyperz and cmask filps on r1xx-r5xx
589 * (all asics).
590 */
591void amdgpu_driver_preclose_kms(struct drm_device *dev,
592 struct drm_file *file_priv)
593{
594 struct amdgpu_device *adev = dev->dev_private;
595
596 amdgpu_uvd_free_handles(adev, file_priv);
597 amdgpu_vce_free_handles(adev, file_priv);
598}
599
600/*
601 * VBlank related functions.
602 */
603/**
604 * amdgpu_get_vblank_counter_kms - get frame count
605 *
606 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200607 * @pipe: crtc to get the frame count from
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400608 *
609 * Gets the frame count on the requested crtc (all asics).
610 * Returns frame count on success, -EINVAL on failure.
611 */
Thierry Reding88e72712015-09-24 18:35:31 +0200612u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400613{
614 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500615 int vpos, hpos, stat;
616 u32 count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400617
Thierry Reding88e72712015-09-24 18:35:31 +0200618 if (pipe >= adev->mode_info.num_crtc) {
619 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400620 return -EINVAL;
621 }
622
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500623 /* The hw increments its frame counter at start of vsync, not at start
624 * of vblank, as is required by DRM core vblank counter handling.
625 * Cook the hw count here to make it appear to the caller as if it
626 * incremented at start of vblank. We measure distance to start of
627 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
628 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
629 * result by 1 to give the proper appearance to caller.
630 */
631 if (adev->mode_info.crtcs[pipe]) {
632 /* Repeat readout if needed to provide stable result if
633 * we cross start of vsync during the queries.
634 */
635 do {
636 count = amdgpu_display_vblank_get_counter(adev, pipe);
637 /* Ask amdgpu_get_crtc_scanoutpos to return vpos as
638 * distance to start of vblank, instead of regular
639 * vertical scanout pos.
640 */
641 stat = amdgpu_get_crtc_scanoutpos(
642 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
643 &vpos, &hpos, NULL, NULL,
644 &adev->mode_info.crtcs[pipe]->base.hwmode);
645 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
646
647 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
648 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
649 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
650 } else {
651 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
652 pipe, vpos);
653
654 /* Bump counter if we are at >= leading edge of vblank,
655 * but before vsync where vpos would turn negative and
656 * the hw counter really increments.
657 */
658 if (vpos >= 0)
659 count++;
660 }
661 } else {
662 /* Fallback to use value as is. */
663 count = amdgpu_display_vblank_get_counter(adev, pipe);
664 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
665 }
666
667 return count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400668}
669
670/**
671 * amdgpu_enable_vblank_kms - enable vblank interrupt
672 *
673 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200674 * @pipe: crtc to enable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400675 *
676 * Enable the interrupt on the requested crtc (all asics).
677 * Returns 0 on success, -EINVAL on failure.
678 */
Thierry Reding88e72712015-09-24 18:35:31 +0200679int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400680{
681 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200682 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400683
684 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
685}
686
687/**
688 * amdgpu_disable_vblank_kms - disable vblank interrupt
689 *
690 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200691 * @pipe: crtc to disable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400692 *
693 * Disable the interrupt on the requested crtc (all asics).
694 */
Thierry Reding88e72712015-09-24 18:35:31 +0200695void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400696{
697 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200698 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400699
700 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
701}
702
703/**
704 * amdgpu_get_vblank_timestamp_kms - get vblank timestamp
705 *
706 * @dev: drm dev pointer
707 * @crtc: crtc to get the timestamp for
708 * @max_error: max error
709 * @vblank_time: time value
710 * @flags: flags passed to the driver
711 *
712 * Gets the timestamp on the requested crtc based on the
713 * scanout position. (all asics).
714 * Returns postive status flags on success, negative error on failure.
715 */
Thierry Reding88e72712015-09-24 18:35:31 +0200716int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400717 int *max_error,
718 struct timeval *vblank_time,
719 unsigned flags)
720{
Thierry Reding88e72712015-09-24 18:35:31 +0200721 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400722 struct amdgpu_device *adev = dev->dev_private;
723
Thierry Reding88e72712015-09-24 18:35:31 +0200724 if (pipe >= dev->num_crtcs) {
725 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400726 return -EINVAL;
727 }
728
729 /* Get associated drm_crtc: */
Thierry Reding88e72712015-09-24 18:35:31 +0200730 crtc = &adev->mode_info.crtcs[pipe]->base;
Harry Wentland9ddf9402015-11-25 15:42:09 -0500731 if (!crtc) {
732 /* This can occur on driver load if some component fails to
733 * initialize completely and driver is unloaded */
734 DRM_ERROR("Uninitialized crtc %d\n", pipe);
735 return -EINVAL;
736 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400737
738 /* Helper routine in DRM core does all the work: */
Thierry Reding88e72712015-09-24 18:35:31 +0200739 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400740 vblank_time, flags,
Thierry Reding88e72712015-09-24 18:35:31 +0200741 &crtc->hwmode);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400742}
743
744const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200745 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
746 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
747 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400748 /* KMS */
Daniel Vetterf8c47142015-09-08 13:56:30 +0200749 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
750 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
751 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
752 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
753 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
754 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
755 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
756 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
757 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400758};
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200759const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);