blob: 38a28d137f1ded6b6955a0ed39b36f8850f2ce92 [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
151/*
152 * Userspace get information ioctl
153 */
154/**
155 * amdgpu_info_ioctl - answer a device specific request.
156 *
157 * @adev: amdgpu device pointer
158 * @data: request object
159 * @filp: drm filp
160 *
161 * This function is used to pass device specific parameters to the userspace
162 * drivers. Examples include: pci device id, pipeline parms, tiling params,
163 * etc. (all asics).
164 * Returns 0 on success, -EINVAL on failure.
165 */
166static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
167{
168 struct amdgpu_device *adev = dev->dev_private;
169 struct drm_amdgpu_info *info = data;
170 struct amdgpu_mode_info *minfo = &adev->mode_info;
171 void __user *out = (void __user *)(long)info->return_pointer;
172 uint32_t size = info->return_size;
173 struct drm_crtc *crtc;
174 uint32_t ui32 = 0;
175 uint64_t ui64 = 0;
176 int i, found;
177
178 if (!info->return_size || !info->return_pointer)
179 return -EINVAL;
180
181 switch (info->query) {
182 case AMDGPU_INFO_ACCEL_WORKING:
183 ui32 = adev->accel_working;
184 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
185 case AMDGPU_INFO_CRTC_FROM_ID:
186 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
187 crtc = (struct drm_crtc *)minfo->crtcs[i];
188 if (crtc && crtc->base.id == info->mode_crtc.id) {
189 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
190 ui32 = amdgpu_crtc->crtc_id;
191 found = 1;
192 break;
193 }
194 }
195 if (!found) {
196 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
197 return -EINVAL;
198 }
199 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
200 case AMDGPU_INFO_HW_IP_INFO: {
201 struct drm_amdgpu_info_hw_ip ip = {};
yanyang15fc3aee2015-05-22 14:39:35 -0400202 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203 uint32_t ring_mask = 0;
Ken Wang71062f42015-06-04 21:26:57 +0800204 uint32_t ib_start_alignment = 0;
205 uint32_t ib_size_alignment = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400206
207 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
208 return -EINVAL;
209
210 switch (info->query_hw_ip.type) {
211 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400212 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400213 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
214 ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800215 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
216 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400217 break;
218 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400219 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400220 for (i = 0; i < adev->gfx.num_compute_rings; i++)
221 ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800222 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
223 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400224 break;
225 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400226 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherc113ea12015-10-08 16:30:37 -0400227 for (i = 0; i < adev->sdma.num_instances; i++)
228 ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800229 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
230 ib_size_alignment = 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400231 break;
232 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400233 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400234 ring_mask = adev->uvd.ring.ready ? 1 : 0;
Ken Wang71062f42015-06-04 21:26:57 +0800235 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
236 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400237 break;
238 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400239 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400240 for (i = 0; i < AMDGPU_MAX_VCE_RINGS; i++)
241 ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
Ken Wang71062f42015-06-04 21:26:57 +0800242 ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
243 ib_size_alignment = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400244 break;
245 default:
246 return -EINVAL;
247 }
248
249 for (i = 0; i < adev->num_ip_blocks; i++) {
250 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e02015-07-28 11:50:31 -0400251 adev->ip_block_status[i].valid) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400252 ip.hw_ip_version_major = adev->ip_blocks[i].major;
253 ip.hw_ip_version_minor = adev->ip_blocks[i].minor;
254 ip.capabilities_flags = 0;
255 ip.available_rings = ring_mask;
Ken Wang71062f42015-06-04 21:26:57 +0800256 ip.ib_start_alignment = ib_start_alignment;
257 ip.ib_size_alignment = ib_size_alignment;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400258 break;
259 }
260 }
261 return copy_to_user(out, &ip,
262 min((size_t)size, sizeof(ip))) ? -EFAULT : 0;
263 }
264 case AMDGPU_INFO_HW_IP_COUNT: {
yanyang15fc3aee2015-05-22 14:39:35 -0400265 enum amd_ip_block_type type;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400266 uint32_t count = 0;
267
268 switch (info->query_hw_ip.type) {
269 case AMDGPU_HW_IP_GFX:
yanyang15fc3aee2015-05-22 14:39:35 -0400270 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400271 break;
272 case AMDGPU_HW_IP_COMPUTE:
yanyang15fc3aee2015-05-22 14:39:35 -0400273 type = AMD_IP_BLOCK_TYPE_GFX;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400274 break;
275 case AMDGPU_HW_IP_DMA:
yanyang15fc3aee2015-05-22 14:39:35 -0400276 type = AMD_IP_BLOCK_TYPE_SDMA;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400277 break;
278 case AMDGPU_HW_IP_UVD:
yanyang15fc3aee2015-05-22 14:39:35 -0400279 type = AMD_IP_BLOCK_TYPE_UVD;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400280 break;
281 case AMDGPU_HW_IP_VCE:
yanyang15fc3aee2015-05-22 14:39:35 -0400282 type = AMD_IP_BLOCK_TYPE_VCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400283 break;
284 default:
285 return -EINVAL;
286 }
287
288 for (i = 0; i < adev->num_ip_blocks; i++)
289 if (adev->ip_blocks[i].type == type &&
Alex Deucher8faf0e02015-07-28 11:50:31 -0400290 adev->ip_block_status[i].valid &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400291 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
292 count++;
293
294 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
295 }
296 case AMDGPU_INFO_TIMESTAMP:
297 ui64 = amdgpu_asic_get_gpu_clock_counter(adev);
298 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
299 case AMDGPU_INFO_FW_VERSION: {
300 struct drm_amdgpu_info_firmware fw_info;
301
302 /* We only support one instance of each IP block right now. */
303 if (info->query_fw.ip_instance != 0)
304 return -EINVAL;
305
306 switch (info->query_fw.fw_type) {
307 case AMDGPU_INFO_FW_VCE:
308 fw_info.ver = adev->vce.fw_version;
309 fw_info.feature = adev->vce.fb_version;
310 break;
311 case AMDGPU_INFO_FW_UVD:
Sonny Jiang562e2682016-04-18 16:05:04 -0400312 fw_info.ver = adev->uvd.fw_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400313 fw_info.feature = 0;
314 break;
315 case AMDGPU_INFO_FW_GMC:
316 fw_info.ver = adev->mc.fw_version;
317 fw_info.feature = 0;
318 break;
319 case AMDGPU_INFO_FW_GFX_ME:
320 fw_info.ver = adev->gfx.me_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800321 fw_info.feature = adev->gfx.me_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400322 break;
323 case AMDGPU_INFO_FW_GFX_PFP:
324 fw_info.ver = adev->gfx.pfp_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800325 fw_info.feature = adev->gfx.pfp_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400326 break;
327 case AMDGPU_INFO_FW_GFX_CE:
328 fw_info.ver = adev->gfx.ce_fw_version;
Ken Wang02558a02015-06-03 19:52:06 +0800329 fw_info.feature = adev->gfx.ce_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400330 break;
331 case AMDGPU_INFO_FW_GFX_RLC:
332 fw_info.ver = adev->gfx.rlc_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800333 fw_info.feature = adev->gfx.rlc_feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400334 break;
335 case AMDGPU_INFO_FW_GFX_MEC:
Jammy Zhou351643d2015-08-04 10:43:50 +0800336 if (info->query_fw.index == 0) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400337 fw_info.ver = adev->gfx.mec_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800338 fw_info.feature = adev->gfx.mec_feature_version;
339 } else if (info->query_fw.index == 1) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400340 fw_info.ver = adev->gfx.mec2_fw_version;
Jammy Zhou351643d2015-08-04 10:43:50 +0800341 fw_info.feature = adev->gfx.mec2_feature_version;
342 } else
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400343 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400344 break;
345 case AMDGPU_INFO_FW_SMC:
346 fw_info.ver = adev->pm.fw_version;
347 fw_info.feature = 0;
348 break;
349 case AMDGPU_INFO_FW_SDMA:
Alex Deucherc113ea12015-10-08 16:30:37 -0400350 if (info->query_fw.index >= adev->sdma.num_instances)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400351 return -EINVAL;
Alex Deucherc113ea12015-10-08 16:30:37 -0400352 fw_info.ver = adev->sdma.instance[info->query_fw.index].fw_version;
353 fw_info.feature = adev->sdma.instance[info->query_fw.index].feature_version;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400354 break;
355 default:
356 return -EINVAL;
357 }
358 return copy_to_user(out, &fw_info,
359 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
360 }
361 case AMDGPU_INFO_NUM_BYTES_MOVED:
362 ui64 = atomic64_read(&adev->num_bytes_moved);
363 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
364 case AMDGPU_INFO_VRAM_USAGE:
365 ui64 = atomic64_read(&adev->vram_usage);
366 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
367 case AMDGPU_INFO_VIS_VRAM_USAGE:
368 ui64 = atomic64_read(&adev->vram_vis_usage);
369 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
370 case AMDGPU_INFO_GTT_USAGE:
371 ui64 = atomic64_read(&adev->gtt_usage);
372 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
373 case AMDGPU_INFO_GDS_CONFIG: {
374 struct drm_amdgpu_info_gds gds_info;
375
Alex Deucherc92b90c2015-04-30 11:47:03 -0400376 memset(&gds_info, 0, sizeof(gds_info));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400377 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT;
378 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT;
379 gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT;
380 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT;
381 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT;
382 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT;
383 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT;
384 return copy_to_user(out, &gds_info,
385 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
386 }
387 case AMDGPU_INFO_VRAM_GTT: {
388 struct drm_amdgpu_info_vram_gtt vram_gtt;
389
390 vram_gtt.vram_size = adev->mc.real_vram_size;
Chunming Zhou7c0ecda2016-04-01 17:05:30 +0800391 vram_gtt.vram_size -= adev->vram_pin_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400392 vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
Chunming Zhoue131b912016-04-05 10:48:48 +0800393 vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400394 vram_gtt.gtt_size = adev->mc.gtt_size;
395 vram_gtt.gtt_size -= adev->gart_pin_size;
396 return copy_to_user(out, &vram_gtt,
397 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
398 }
399 case AMDGPU_INFO_READ_MMR_REG: {
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300400 unsigned n, alloc_size;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400401 uint32_t *regs;
402 unsigned se_num = (info->read_mmr_reg.instance >>
403 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
404 AMDGPU_INFO_MMR_SE_INDEX_MASK;
405 unsigned sh_num = (info->read_mmr_reg.instance >>
406 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
407 AMDGPU_INFO_MMR_SH_INDEX_MASK;
408
409 /* set full masks if the userspace set all bits
410 * in the bitfields */
411 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
412 se_num = 0xffffffff;
413 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
414 sh_num = 0xffffffff;
415
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300416 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400417 if (!regs)
418 return -ENOMEM;
Dan Carpenter0d2edd32015-09-23 14:00:12 +0300419 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400420
421 for (i = 0; i < info->read_mmr_reg.count; i++)
422 if (amdgpu_asic_read_register(adev, se_num, sh_num,
423 info->read_mmr_reg.dword_offset + i,
424 &regs[i])) {
425 DRM_DEBUG_KMS("unallowed offset %#x\n",
426 info->read_mmr_reg.dword_offset + i);
427 kfree(regs);
428 return -EFAULT;
429 }
430 n = copy_to_user(out, regs, min(size, alloc_size));
431 kfree(regs);
432 return n ? -EFAULT : 0;
433 }
434 case AMDGPU_INFO_DEV_INFO: {
Dan Carpenterc193fa912015-07-28 18:51:29 +0300435 struct drm_amdgpu_info_device dev_info = {};
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400436
437 dev_info.device_id = dev->pdev->device;
438 dev_info.chip_rev = adev->rev_id;
439 dev_info.external_rev = adev->external_rev_id;
440 dev_info.pci_rev = dev->pdev->revision;
441 dev_info.family = adev->family;
442 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
443 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
444 /* return all clocks in KHz */
445 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800446 if (adev->pm.dpm_enabled) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400447 dev_info.max_engine_clock =
448 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800449 dev_info.max_memory_clock =
450 adev->pm.dpm.dyn_state.max_clock_voltage_on_ac.mclk * 10;
451 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400452 dev_info.max_engine_clock = adev->pm.default_sclk * 10;
Ken Wang32bf7102015-06-03 17:36:54 +0800453 dev_info.max_memory_clock = adev->pm.default_mclk * 10;
454 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400455 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
Alex Deucher8f8e00c2016-02-12 00:39:13 -0500456 dev_info.num_rb_pipes = adev->gfx.config.num_rbs;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400457 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
458 dev_info._pad = 0;
459 dev_info.ids_flags = 0;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800460 if (adev->flags & AMD_IS_APU)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400461 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
462 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
Jammy Zhou02b70c82015-05-12 22:46:45 +0800463 dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
Christian Königc548b342015-08-07 20:22:40 +0200464 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400465 dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
466 AMDGPU_GPU_PAGE_SIZE;
467 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
468
Alex Deucher7dae69a2016-05-03 16:25:53 -0400469 dev_info.cu_active_number = adev->gfx.cu_info.number;
470 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
Ken Wanga101a892015-06-03 17:47:54 +0800471 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
Alex Deucher7dae69a2016-05-03 16:25:53 -0400472 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
473 sizeof(adev->gfx.cu_info.bitmap));
Ken Wang81c59f52015-06-03 21:02:01 +0800474 dev_info.vram_type = adev->mc.vram_type;
475 dev_info.vram_bit_width = adev->mc.vram_width;
Leo Liufa927542015-07-13 12:46:23 -0400476 dev_info.vce_harvest_config = adev->vce.harvest_config;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400477
478 return copy_to_user(out, &dev_info,
479 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
480 }
481 default:
482 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
483 return -EINVAL;
484 }
485 return 0;
486}
487
488
489/*
490 * Outdated mess for old drm with Xorg being in charge (void function now).
491 */
492/**
Alex Deucher8b7530b2015-10-02 16:59:34 -0400493 * amdgpu_driver_lastclose_kms - drm callback for last close
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400494 *
495 * @dev: drm dev pointer
496 *
Lukas Wunner16944672015-09-05 11:17:35 +0200497 * Switch vga_switcheroo state after last close (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400498 */
499void amdgpu_driver_lastclose_kms(struct drm_device *dev)
500{
Alex Deucher8b7530b2015-10-02 16:59:34 -0400501 struct amdgpu_device *adev = dev->dev_private;
502
503 amdgpu_fbdev_restore_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400504 vga_switcheroo_process_delayed_switch();
505}
506
507/**
508 * amdgpu_driver_open_kms - drm callback for open
509 *
510 * @dev: drm dev pointer
511 * @file_priv: drm file
512 *
513 * On device open, init vm on cayman+ (all asics).
514 * Returns 0 on success, error on failure.
515 */
516int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
517{
518 struct amdgpu_device *adev = dev->dev_private;
519 struct amdgpu_fpriv *fpriv;
520 int r;
521
522 file_priv->driver_priv = NULL;
523
524 r = pm_runtime_get_sync(dev->dev);
525 if (r < 0)
526 return r;
527
528 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
529 if (unlikely(!fpriv))
530 return -ENOMEM;
531
532 r = amdgpu_vm_init(adev, &fpriv->vm);
533 if (r)
534 goto error_free;
535
536 mutex_init(&fpriv->bo_list_lock);
537 idr_init(&fpriv->bo_list_handles);
538
Christian Königefd4ccb2015-08-04 16:20:31 +0200539 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400540
541 file_priv->driver_priv = fpriv;
542
543 pm_runtime_mark_last_busy(dev->dev);
544 pm_runtime_put_autosuspend(dev->dev);
545 return 0;
546
547error_free:
548 kfree(fpriv);
549
550 return r;
551}
552
553/**
554 * amdgpu_driver_postclose_kms - drm callback for post close
555 *
556 * @dev: drm dev pointer
557 * @file_priv: drm file
558 *
559 * On device post close, tear down vm on cayman+ (all asics).
560 */
561void amdgpu_driver_postclose_kms(struct drm_device *dev,
562 struct drm_file *file_priv)
563{
564 struct amdgpu_device *adev = dev->dev_private;
565 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
566 struct amdgpu_bo_list *list;
567 int handle;
568
569 if (!fpriv)
570 return;
571
Christian König02537d62015-08-25 15:05:20 +0200572 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
573
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400574 amdgpu_vm_fini(adev, &fpriv->vm);
575
576 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
577 amdgpu_bo_list_free(list);
578
579 idr_destroy(&fpriv->bo_list_handles);
580 mutex_destroy(&fpriv->bo_list_lock);
581
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400582 kfree(fpriv);
583 file_priv->driver_priv = NULL;
584}
585
586/**
587 * amdgpu_driver_preclose_kms - drm callback for pre close
588 *
589 * @dev: drm dev pointer
590 * @file_priv: drm file
591 *
592 * On device pre close, tear down hyperz and cmask filps on r1xx-r5xx
593 * (all asics).
594 */
595void amdgpu_driver_preclose_kms(struct drm_device *dev,
596 struct drm_file *file_priv)
597{
598 struct amdgpu_device *adev = dev->dev_private;
599
600 amdgpu_uvd_free_handles(adev, file_priv);
601 amdgpu_vce_free_handles(adev, file_priv);
602}
603
604/*
605 * VBlank related functions.
606 */
607/**
608 * amdgpu_get_vblank_counter_kms - get frame count
609 *
610 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200611 * @pipe: crtc to get the frame count from
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400612 *
613 * Gets the frame count on the requested crtc (all asics).
614 * Returns frame count on success, -EINVAL on failure.
615 */
Thierry Reding88e72712015-09-24 18:35:31 +0200616u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400617{
618 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500619 int vpos, hpos, stat;
620 u32 count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400621
Thierry Reding88e72712015-09-24 18:35:31 +0200622 if (pipe >= adev->mode_info.num_crtc) {
623 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624 return -EINVAL;
625 }
626
Alex Deucher8e36f9d2015-12-03 12:31:56 -0500627 /* The hw increments its frame counter at start of vsync, not at start
628 * of vblank, as is required by DRM core vblank counter handling.
629 * Cook the hw count here to make it appear to the caller as if it
630 * incremented at start of vblank. We measure distance to start of
631 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
632 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
633 * result by 1 to give the proper appearance to caller.
634 */
635 if (adev->mode_info.crtcs[pipe]) {
636 /* Repeat readout if needed to provide stable result if
637 * we cross start of vsync during the queries.
638 */
639 do {
640 count = amdgpu_display_vblank_get_counter(adev, pipe);
641 /* Ask amdgpu_get_crtc_scanoutpos to return vpos as
642 * distance to start of vblank, instead of regular
643 * vertical scanout pos.
644 */
645 stat = amdgpu_get_crtc_scanoutpos(
646 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
647 &vpos, &hpos, NULL, NULL,
648 &adev->mode_info.crtcs[pipe]->base.hwmode);
649 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
650
651 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
652 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
653 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
654 } else {
655 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
656 pipe, vpos);
657
658 /* Bump counter if we are at >= leading edge of vblank,
659 * but before vsync where vpos would turn negative and
660 * the hw counter really increments.
661 */
662 if (vpos >= 0)
663 count++;
664 }
665 } else {
666 /* Fallback to use value as is. */
667 count = amdgpu_display_vblank_get_counter(adev, pipe);
668 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
669 }
670
671 return count;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400672}
673
674/**
675 * amdgpu_enable_vblank_kms - enable vblank interrupt
676 *
677 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200678 * @pipe: crtc to enable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400679 *
680 * Enable the interrupt on the requested crtc (all asics).
681 * Returns 0 on success, -EINVAL on failure.
682 */
Thierry Reding88e72712015-09-24 18:35:31 +0200683int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400684{
685 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200686 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400687
688 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
689}
690
691/**
692 * amdgpu_disable_vblank_kms - disable vblank interrupt
693 *
694 * @dev: drm dev pointer
Thierry Reding88e72712015-09-24 18:35:31 +0200695 * @pipe: crtc to disable vblank interrupt for
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400696 *
697 * Disable the interrupt on the requested crtc (all asics).
698 */
Thierry Reding88e72712015-09-24 18:35:31 +0200699void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400700{
701 struct amdgpu_device *adev = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +0200702 int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400703
704 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
705}
706
707/**
708 * amdgpu_get_vblank_timestamp_kms - get vblank timestamp
709 *
710 * @dev: drm dev pointer
711 * @crtc: crtc to get the timestamp for
712 * @max_error: max error
713 * @vblank_time: time value
714 * @flags: flags passed to the driver
715 *
716 * Gets the timestamp on the requested crtc based on the
717 * scanout position. (all asics).
718 * Returns postive status flags on success, negative error on failure.
719 */
Thierry Reding88e72712015-09-24 18:35:31 +0200720int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400721 int *max_error,
722 struct timeval *vblank_time,
723 unsigned flags)
724{
Thierry Reding88e72712015-09-24 18:35:31 +0200725 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400726 struct amdgpu_device *adev = dev->dev_private;
727
Thierry Reding88e72712015-09-24 18:35:31 +0200728 if (pipe >= dev->num_crtcs) {
729 DRM_ERROR("Invalid crtc %u\n", pipe);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730 return -EINVAL;
731 }
732
733 /* Get associated drm_crtc: */
Thierry Reding88e72712015-09-24 18:35:31 +0200734 crtc = &adev->mode_info.crtcs[pipe]->base;
Harry Wentland9ddf9402015-11-25 15:42:09 -0500735 if (!crtc) {
736 /* This can occur on driver load if some component fails to
737 * initialize completely and driver is unloaded */
738 DRM_ERROR("Uninitialized crtc %d\n", pipe);
739 return -EINVAL;
740 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400741
742 /* Helper routine in DRM core does all the work: */
Thierry Reding88e72712015-09-24 18:35:31 +0200743 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400744 vblank_time, flags,
Thierry Reding88e72712015-09-24 18:35:31 +0200745 &crtc->hwmode);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400746}
747
748const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
Daniel Vetterf8c47142015-09-08 13:56:30 +0200749 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
750 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
751 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400752 /* KMS */
Daniel Vetterf8c47142015-09-08 13:56:30 +0200753 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
754 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
755 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
756 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
757 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
758 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
759 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
760 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
761 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400762};
Nils Wallméniusf498d9e2016-04-10 16:29:59 +0200763const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);