blob: 0db692ef3d25faa3a3595da15162a44f1fb0305e [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:
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200140 if (r) {
141 /* balance pm_runtime_get_sync in amdgpu_driver_unload_kms */
142 if (adev->rmmio && amdgpu_device_is_px(dev))
143 pm_runtime_put_noidle(dev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144 amdgpu_driver_unload_kms(dev);
Lukas Wunnerc9c9bbd2016-06-08 18:47:27 +0200145 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400146
147 return r;
148}
149
150/*
151 * Userspace get information ioctl
152 */
153/**
154 * amdgpu_info_ioctl - answer a device specific request.
155 *
156 * @adev: amdgpu device pointer
157 * @data: request object
158 * @filp: drm filp
159 *
160 * This function is used to pass device specific parameters to the userspace
161 * drivers. Examples include: pci device id, pipeline parms, tiling params,
162 * etc. (all asics).
163 * Returns 0 on success, -EINVAL on failure.
164 */
165static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
166{
167 struct amdgpu_device *adev = dev->dev_private;
168 struct drm_amdgpu_info *info = data;
169 struct amdgpu_mode_info *minfo = &adev->mode_info;
170 void __user *out = (void __user *)(long)info->return_pointer;
171 uint32_t size = info->return_size;
172 struct drm_crtc *crtc;
173 uint32_t ui32 = 0;
174 uint64_t ui64 = 0;
175 int i, found;
176
177 if (!info->return_size || !info->return_pointer)
178 return -EINVAL;
179
180 switch (info->query) {
181 case AMDGPU_INFO_ACCEL_WORKING:
182 ui32 = adev->accel_working;
183 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
184 case AMDGPU_INFO_CRTC_FROM_ID:
185 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
186 crtc = (struct drm_crtc *)minfo->crtcs[i];
187 if (crtc && crtc->base.id == info->mode_crtc.id) {
188 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
189 ui32 = amdgpu_crtc->crtc_id;
190 found = 1;
191 break;
192 }
193 }
194 if (!found) {
195 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
196 return -EINVAL;
197 }
198 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
199 case AMDGPU_INFO_HW_IP_INFO: {
200 struct drm_amdgpu_info_hw_ip ip = {};
yanyang15fc3aee2015-05-22 14:39:35 -0400201 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400202 uint32_t ring_mask = 0;
Ken Wang71062f42015-06-04 21:26:57 +0800203 uint32_t ib_start_alignment = 0;
204 uint32_t ib_size_alignment = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400205
206 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
207 return -EINVAL;
208
209 switch (info->query_hw_ip.type) {
210 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400211 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400212 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
213 ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800214 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
215 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400216 break;
217 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400218 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400219 for (i = 0; i < adev->gfx.num_compute_rings; i++)
220 ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800221 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
222 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400223 break;
224 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400225 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherc113ea12015-10-08 16:30:37 -0400226 for (i = 0; i < adev->sdma.num_instances; i++)
227 ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800228 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
229 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400230 break;
231 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400232 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400233 ring_mask = adev->uvd.ring.ready ? 1 : 0;
Ken Wang71062f42015-06-04 21:26:57 +0800234 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
235 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400236 break;
237 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400238 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400239 for (i = 0; i < AMDGPU_MAX_VCE_RINGS; i++)
240 ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800241 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
242 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400243 break;
244 default:
245 return -EINVAL;
246 }
247
248 for (i = 0; i < adev->num_ip_blocks; i++) {
249 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e02015-07-28 11:50:31 -0400250 adev->ip_block_status[i].valid) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400251 ip.hw_ip_version_major = adev->ip_blocks[i].major;
252 ip.hw_ip_version_minor = adev->ip_blocks[i].minor;
253 ip.capabilities_flags = 0;
254 ip.available_rings = ring_mask;
Ken Wang71062f42015-06-04 21:26:57 +0800255 ip.ib_start_alignment = ib_start_alignment;
256 ip.ib_size_alignment = ib_size_alignment;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400257 break;
258 }
259 }
260 return copy_to_user(out, &ip,
261 min((size_t)size, sizeof(ip))) ? -EFAULT : 0;
262 }
263 case AMDGPU_INFO_HW_IP_COUNT: {
yanyang15fc3aee2015-05-22 14:39:35 -0400264 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400265 uint32_t count = 0;
266
267 switch (info->query_hw_ip.type) {
268 case AMDGPU_HW_IP_GFX:
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_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400272 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400273 break;
274 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400275 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400276 break;
277 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400278 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279 break;
280 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400281 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400282 break;
283 default:
284 return -EINVAL;
285 }
286
287 for (i = 0; i < adev->num_ip_blocks; i++)
288 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e02015-07-28 11:50:31 -0400289 adev->ip_block_status[i].valid &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400290 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
291 count++;
292
293 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
294 }
295 case AMDGPU_INFO_TIMESTAMP:
296 ui64 = amdgpu_asic_get_gpu_clock_counter(adev);
297 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
298 case AMDGPU_INFO_FW_VERSION: {
299 struct drm_amdgpu_info_firmware fw_info;
300
301 /* We only support one instance of each IP block right now. */
302 if (info->query_fw.ip_instance != 0)
303 return -EINVAL;
304
305 switch (info->query_fw.fw_type) {
306 case AMDGPU_INFO_FW_VCE:
307 fw_info.ver = adev->vce.fw_version;
308 fw_info.feature = adev->vce.fb_version;
309 break;
310 case AMDGPU_INFO_FW_UVD:
Sonny Jiang562e2682016-04-18 16:05:04 -0400311 fw_info.ver = adev->uvd.fw_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400312 fw_info.feature = 0;
313 break;
314 case AMDGPU_INFO_FW_GMC:
315 fw_info.ver = adev->mc.fw_version;
316 fw_info.feature = 0;
317 break;
318 case AMDGPU_INFO_FW_GFX_ME:
319 fw_info.ver = adev->gfx.me_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800320 fw_info.feature = adev->gfx.me_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400321 break;
322 case AMDGPU_INFO_FW_GFX_PFP:
323 fw_info.ver = adev->gfx.pfp_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800324 fw_info.feature = adev->gfx.pfp_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400325 break;
326 case AMDGPU_INFO_FW_GFX_CE:
327 fw_info.ver = adev->gfx.ce_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800328 fw_info.feature = adev->gfx.ce_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400329 break;
330 case AMDGPU_INFO_FW_GFX_RLC:
331 fw_info.ver = adev->gfx.rlc_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800332 fw_info.feature = adev->gfx.rlc_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400333 break;
334 case AMDGPU_INFO_FW_GFX_MEC:
Jammy Zhou351643d2015-08-04 10:43:50 +0800335 if (info->query_fw.index == 0) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400336 fw_info.ver = adev->gfx.mec_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800337 fw_info.feature = adev->gfx.mec_feature_version;
338 } else if (info->query_fw.index == 1) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400339 fw_info.ver = adev->gfx.mec2_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800340 fw_info.feature = adev->gfx.mec2_feature_version;
341 } else
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400342 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400343 break;
344 case AMDGPU_INFO_FW_SMC:
345 fw_info.ver = adev->pm.fw_version;
346 fw_info.feature = 0;
347 break;
348 case AMDGPU_INFO_FW_SDMA:
Alex Deucherc113ea12015-10-08 16:30:37 -0400349 if (info->query_fw.index >= adev->sdma.num_instances)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400350 return -EINVAL;
Alex Deucherc113ea12015-10-08 16:30:37 -0400351 fw_info.ver = adev->sdma.instance[info->query_fw.index].fw_version;
352 fw_info.feature = adev->sdma.instance[info->query_fw.index].feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400353 break;
354 default:
355 return -EINVAL;
356 }
357 return copy_to_user(out, &fw_info,
358 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
359 }
360 case AMDGPU_INFO_NUM_BYTES_MOVED:
361 ui64 = atomic64_read(&adev->num_bytes_moved);
362 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
363 case AMDGPU_INFO_VRAM_USAGE:
364 ui64 = atomic64_read(&adev->vram_usage);
365 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
366 case AMDGPU_INFO_VIS_VRAM_USAGE:
367 ui64 = atomic64_read(&adev->vram_vis_usage);
368 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
369 case AMDGPU_INFO_GTT_USAGE:
370 ui64 = atomic64_read(&adev->gtt_usage);
371 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
372 case AMDGPU_INFO_GDS_CONFIG: {
373 struct drm_amdgpu_info_gds gds_info;
374
Alex Deucherc92b90c2015-04-30 11:47:03 -0400375 memset(&gds_info, 0, sizeof(gds_info));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400376 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT;
377 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT;
378 gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT;
379 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT;
380 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT;
381 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT;
382 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT;
383 return copy_to_user(out, &gds_info,
384 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
385 }
386 case AMDGPU_INFO_VRAM_GTT: {
387 struct drm_amdgpu_info_vram_gtt vram_gtt;
388
389 vram_gtt.vram_size = adev->mc.real_vram_size;
Chunming Zhou7c0ecda2016-04-01 17:05:30 +0800390 vram_gtt.vram_size -= adev->vram_pin_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400391 vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
Chunming Zhoue131b912016-04-05 10:48:48 +0800392 vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400393 vram_gtt.gtt_size = adev->mc.gtt_size;
394 vram_gtt.gtt_size -= adev->gart_pin_size;
395 return copy_to_user(out, &vram_gtt,
396 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
397 }
398 case AMDGPU_INFO_READ_MMR_REG: {
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300399 unsigned n, alloc_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400400 uint32_t *regs;
401 unsigned se_num = (info->read_mmr_reg.instance >>
402 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
403 AMDGPU_INFO_MMR_SE_INDEX_MASK;
404 unsigned sh_num = (info->read_mmr_reg.instance >>
405 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
406 AMDGPU_INFO_MMR_SH_INDEX_MASK;
407
408 /* set full masks if the userspace set all bits
409 * in the bitfields */
410 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
411 se_num = 0xffffffff;
412 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
413 sh_num = 0xffffffff;
414
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300415 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400416 if (!regs)
417 return -ENOMEM;
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300418 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400419
420 for (i = 0; i < info->read_mmr_reg.count; i++)
421 if (amdgpu_asic_read_register(adev, se_num, sh_num,
422 info->read_mmr_reg.dword_offset + i,
423 &regs[i])) {
424 DRM_DEBUG_KMS("unallowed offset %#x\n",
425 info->read_mmr_reg.dword_offset + i);
426 kfree(regs);
427 return -EFAULT;
428 }
429 n = copy_to_user(out, regs, min(size, alloc_size));
430 kfree(regs);
431 return n ? -EFAULT : 0;
432 }
433 case AMDGPU_INFO_DEV_INFO: {
Dan Carpenterc193fa912015-07-28 18:51:29 +0300434 struct drm_amdgpu_info_device dev_info = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400435
436 dev_info.device_id = dev->pdev->device;
437 dev_info.chip_rev = adev->rev_id;
438 dev_info.external_rev = adev->external_rev_id;
439 dev_info.pci_rev = dev->pdev->revision;
440 dev_info.family = adev->family;
441 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
442 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
443 /* return all clocks in KHz */
444 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800445 if (adev->pm.dpm_enabled) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400446 dev_info.max_engine_clock =
447 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800448 dev_info.max_memory_clock =
449 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.mclk * 10;
450 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400451 dev_info.max_engine_clock = adev->pm.default_sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800452 dev_info.max_memory_clock = adev->pm.default_mclk * 10;
453 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400454 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
Alex Deucher8f8e00c2016-02-12 00:39:13 -0500455 dev_info.num_rb_pipes = adev->gfx.config.num_rbs;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400456 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
457 dev_info._pad = 0;
458 dev_info.ids_flags = 0;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800459 if (adev->flags & AMD_IS_APU)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400460 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
461 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
Jammy Zhou02b70c82015-05-12 22:46:45 +0800462 dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
Christian Königc548b342015-08-07 20:22:40 +0200463 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400464 dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
465 AMDGPU_GPU_PAGE_SIZE;
466 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
467
Alex Deucher7dae69a2016-05-03 16:25:53 -0400468 dev_info.cu_active_number = adev->gfx.cu_info.number;
469 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
Ken Wanga101a892015-06-03 17:47:54 +0800470 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
Alex Deucher7dae69a2016-05-03 16:25:53 -0400471 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
472 sizeof(adev->gfx.cu_info.bitmap));
Ken Wang81c59f52015-06-03 21:02:01 +0800473 dev_info.vram_type = adev->mc.vram_type;
474 dev_info.vram_bit_width = adev->mc.vram_width;
Leo Liufa927542015-07-13 12:46:23 -0400475 dev_info.vce_harvest_config = adev->vce.harvest_config;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400476
477 return copy_to_user(out, &dev_info,
478 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
479 }
480 default:
481 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
482 return -EINVAL;
483 }
484 return 0;
485}
486
487
488/*
489 * Outdated mess for old drm with Xorg being in charge (void function now).
490 */
491/**
Alex Deucher8b7530b2015-10-02 16:59:34 -0400492 * amdgpu_driver_lastclose_kms - drm callback for last close
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400493 *
494 * @dev: drm dev pointer
495 *
Lukas Wunner16944672015-09-05 11:17:35 +0200496 * Switch vga_switcheroo state after last close (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400497 */
498void amdgpu_driver_lastclose_kms(struct drm_device *dev)
499{
Alex Deucher8b7530b2015-10-02 16:59:34 -0400500 struct amdgpu_device *adev = dev->dev_private;
501
502 amdgpu_fbdev_restore_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400503 vga_switcheroo_process_delayed_switch();
504}
505
506/**
507 * amdgpu_driver_open_kms - drm callback for open
508 *
509 * @dev: drm dev pointer
510 * @file_priv: drm file
511 *
512 * On device open, init vm on cayman+ (all asics).
513 * Returns 0 on success, error on failure.
514 */
515int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
516{
517 struct amdgpu_device *adev = dev->dev_private;
518 struct amdgpu_fpriv *fpriv;
519 int r;
520
521 file_priv->driver_priv = NULL;
522
523 r = pm_runtime_get_sync(dev->dev);
524 if (r < 0)
525 return r;
526
527 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
528 if (unlikely(!fpriv))
529 return -ENOMEM;
530
531 r = amdgpu_vm_init(adev, &fpriv->vm);
532 if (r)
533 goto error_free;
534
535 mutex_init(&fpriv->bo_list_lock);
536 idr_init(&fpriv->bo_list_handles);
537
Christian Königefd4ccb2015-08-04 16:20:31 +0200538 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400539
540 file_priv->driver_priv = fpriv;
541
542 pm_runtime_mark_last_busy(dev->dev);
543 pm_runtime_put_autosuspend(dev->dev);
544 return 0;
545
546error_free:
547 kfree(fpriv);
548
549 return r;
550}
551
552/**
553 * amdgpu_driver_postclose_kms - drm callback for post close
554 *
555 * @dev: drm dev pointer
556 * @file_priv: drm file
557 *
558 * On device post close, tear down vm on cayman+ (all asics).
559 */
560void amdgpu_driver_postclose_kms(struct drm_device *dev,
561 struct drm_file *file_priv)
562{
563 struct amdgpu_device *adev = dev->dev_private;
564 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
565 struct amdgpu_bo_list *list;
566 int handle;
567
568 if (!fpriv)
569 return;
570
Christian König02537d62015-08-25 15:05:20 +0200571 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
572
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400573 amdgpu_vm_fini(adev, &fpriv->vm);
574
575 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
576 amdgpu_bo_list_free(list);
577
578 idr_destroy(&fpriv->bo_list_handles);
579 mutex_destroy(&fpriv->bo_list_lock);
580
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400581 kfree(fpriv);
582 file_priv->driver_priv = NULL;
583}
584
585/**
586 * amdgpu_driver_preclose_kms - drm callback for pre close
587 *
588 * @dev: drm dev pointer
589 * @file_priv: drm file
590 *
591 * On device pre close, tear down hyperz and cmask filps on r1xx-r5xx
592 * (all asics).
593 */
594void amdgpu_driver_preclose_kms(struct drm_device *dev,
595 struct drm_file *file_priv)
596{
597 struct amdgpu_device *adev = dev->dev_private;
598
599 amdgpu_uvd_free_handles(adev, file_priv);
600 amdgpu_vce_free_handles(adev, file_priv);
601}
602
603/*
604 * VBlank related functions.
605 */
606/**
607 * amdgpu_get_vblank_counter_kms - get frame count
608 *
609 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200610 * @pipe: crtc to get the frame count from
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400611 *
612 * Gets the frame count on the requested crtc (all asics).
613 * Returns frame count on success, -EINVAL on failure.
614 */
Thierry Reding88e72712015-09-24 18:35:31 +0200615u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400616{
617 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500618 int vpos, hpos, stat;
619 u32 count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400620
Thierry Reding88e72712015-09-24 18:35:31 +0200621 if (pipe >= adev->mode_info.num_crtc) {
622 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400623 return -EINVAL;
624 }
625
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500626 /* The hw increments its frame counter at start of vsync, not at start
627 * of vblank, as is required by DRM core vblank counter handling.
628 * Cook the hw count here to make it appear to the caller as if it
629 * incremented at start of vblank. We measure distance to start of
630 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
631 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
632 * result by 1 to give the proper appearance to caller.
633 */
634 if (adev->mode_info.crtcs[pipe]) {
635 /* Repeat readout if needed to provide stable result if
636 * we cross start of vsync during the queries.
637 */
638 do {
639 count = amdgpu_display_vblank_get_counter(adev, pipe);
640 /* Ask amdgpu_get_crtc_scanoutpos to return vpos as
641 * distance to start of vblank, instead of regular
642 * vertical scanout pos.
643 */
644 stat = amdgpu_get_crtc_scanoutpos(
645 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
646 &vpos, &hpos, NULL, NULL,
647 &adev->mode_info.crtcs[pipe]->base.hwmode);
648 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
649
650 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
651 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
652 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
653 } else {
654 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
655 pipe, vpos);
656
657 /* Bump counter if we are at >= leading edge of vblank,
658 * but before vsync where vpos would turn negative and
659 * the hw counter really increments.
660 */
661 if (vpos >= 0)
662 count++;
663 }
664 } else {
665 /* Fallback to use value as is. */
666 count = amdgpu_display_vblank_get_counter(adev, pipe);
667 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
668 }
669
670 return count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400671}
672
673/**
674 * amdgpu_enable_vblank_kms - enable vblank interrupt
675 *
676 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200677 * @pipe: crtc to enable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400678 *
679 * Enable the interrupt on the requested crtc (all asics).
680 * Returns 0 on success, -EINVAL on failure.
681 */
Thierry Reding88e72712015-09-24 18:35:31 +0200682int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400683{
684 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200685 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400686
687 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
688}
689
690/**
691 * amdgpu_disable_vblank_kms - disable vblank interrupt
692 *
693 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200694 * @pipe: crtc to disable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400695 *
696 * Disable the interrupt on the requested crtc (all asics).
697 */
Thierry Reding88e72712015-09-24 18:35:31 +0200698void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400699{
700 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200701 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400702
703 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
704}
705
706/**
707 * amdgpu_get_vblank_timestamp_kms - get vblank timestamp
708 *
709 * @dev: drm dev pointer
710 * @crtc: crtc to get the timestamp for
711 * @max_error: max error
712 * @vblank_time: time value
713 * @flags: flags passed to the driver
714 *
715 * Gets the timestamp on the requested crtc based on the
716 * scanout position. (all asics).
717 * Returns postive status flags on success, negative error on failure.
718 */
Thierry Reding88e72712015-09-24 18:35:31 +0200719int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400720 int *max_error,
721 struct timeval *vblank_time,
722 unsigned flags)
723{
Thierry Reding88e72712015-09-24 18:35:31 +0200724 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400725 struct amdgpu_device *adev = dev->dev_private;
726
Thierry Reding88e72712015-09-24 18:35:31 +0200727 if (pipe >= dev->num_crtcs) {
728 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400729 return -EINVAL;
730 }
731
732 /* Get associated drm_crtc: */
Thierry Reding88e72712015-09-24 18:35:31 +0200733 crtc = &adev->mode_info.crtcs[pipe]->base;
Harry Wentland9ddf9402015-11-25 15:42:09 -0500734 if (!crtc) {
735 /* This can occur on driver load if some component fails to
736 * initialize completely and driver is unloaded */
737 DRM_ERROR("Uninitialized crtc %d\n", pipe);
738 return -EINVAL;
739 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400740
741 /* Helper routine in DRM core does all the work: */
Thierry Reding88e72712015-09-24 18:35:31 +0200742 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400743 vblank_time, flags,
Thierry Reding88e72712015-09-24 18:35:31 +0200744 &crtc->hwmode);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400745}
746
747const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200748 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
749 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
750 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400751 /* KMS */
Daniel Vetterf8c47142015-09-08 13:56:30 +0200752 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
753 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
754 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
755 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
756 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
757 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
758 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
759 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
760 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400761};
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200762const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);