blob: df73cddf8867f49fa30e1ac2c236efb5e2ee5261 [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 */
Chunming Zhou0875dc92016-06-12 15:41:58 +080028#include <linux/kthread.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040029#include <linux/console.h>
30#include <linux/slab.h>
31#include <linux/debugfs.h>
32#include <drm/drmP.h>
33#include <drm/drm_crtc_helper.h>
34#include <drm/amdgpu_drm.h>
35#include <linux/vgaarb.h>
36#include <linux/vga_switcheroo.h>
37#include <linux/efi.h>
38#include "amdgpu.h"
Tom St Denisf4b373f2016-05-31 08:02:27 -040039#include "amdgpu_trace.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040040#include "amdgpu_i2c.h"
41#include "atom.h"
42#include "amdgpu_atombios.h"
Alex Deuchera5bde2f2016-09-23 16:23:41 -040043#include "amdgpu_atomfirmware.h"
Alex Deucherd0dd7f02015-11-11 19:45:06 -050044#include "amd_pcie.h"
Ken Wang33f34802016-01-21 17:29:41 +080045#ifdef CONFIG_DRM_AMDGPU_SI
46#include "si.h"
47#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -040048#ifdef CONFIG_DRM_AMDGPU_CIK
49#include "cik.h"
50#endif
Alex Deucheraaa36a92015-04-20 17:31:14 -040051#include "vi.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040052#include "bif/bif_4_1_d.h"
Emily Deng9accf2f2016-08-10 16:01:25 +080053#include <linux/pci.h>
Monk Liubec86372016-09-14 19:38:08 +080054#include <linux/firmware.h>
Tom St Denisd1aff8e2016-08-09 18:01:55 -040055#include "amdgpu_pm.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040056
57static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
58static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
59
60static const char *amdgpu_asic_name[] = {
Ken Wangda69c1612016-01-21 19:08:55 +080061 "TAHITI",
62 "PITCAIRN",
63 "VERDE",
64 "OLAND",
65 "HAINAN",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040066 "BONAIRE",
67 "KAVERI",
68 "KABINI",
69 "HAWAII",
70 "MULLINS",
71 "TOPAZ",
72 "TONGA",
David Zhang48299f92015-07-08 01:05:16 +080073 "FIJI",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040074 "CARRIZO",
Samuel Li139f4912015-10-08 14:50:27 -040075 "STONEY",
Flora Cui2cc0c0b2016-03-14 18:33:29 -040076 "POLARIS10",
77 "POLARIS11",
Junwei Zhangc4642a42016-12-14 15:32:28 -050078 "POLARIS12",
Ken Wangd4196f02016-03-09 09:28:32 +080079 "VEGA10",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040080 "LAST",
81};
82
83bool amdgpu_device_is_px(struct drm_device *dev)
84{
85 struct amdgpu_device *adev = dev->dev_private;
86
Jammy Zhou2f7d10b2015-07-22 11:29:01 +080087 if (adev->flags & AMD_IS_PX)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040088 return true;
89 return false;
90}
91
92/*
93 * MMIO register access helper functions.
94 */
95uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
Monk Liu15d72fd2017-01-25 15:07:40 +080096 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040097{
Tom St Denisf4b373f2016-05-31 08:02:27 -040098 uint32_t ret;
99
Monk Liu15d72fd2017-01-25 15:07:40 +0800100 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) {
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800101 BUG_ON(in_interrupt());
102 return amdgpu_virt_kiq_rreg(adev, reg);
103 }
104
Monk Liu15d72fd2017-01-25 15:07:40 +0800105 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Tom St Denisf4b373f2016-05-31 08:02:27 -0400106 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400107 else {
108 unsigned long flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400109
110 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
111 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
112 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
113 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400114 }
Tom St Denisf4b373f2016-05-31 08:02:27 -0400115 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
116 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400117}
118
119void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
Monk Liu15d72fd2017-01-25 15:07:40 +0800120 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400121{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400122 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
Monk Liu4e99a442016-03-31 13:26:59 +0800123
Monk Liu15d72fd2017-01-25 15:07:40 +0800124 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) {
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800125 BUG_ON(in_interrupt());
126 return amdgpu_virt_kiq_wreg(adev, reg, v);
127 }
128
Monk Liu15d72fd2017-01-25 15:07:40 +0800129 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400130 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
131 else {
132 unsigned long flags;
133
134 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
135 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
136 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
137 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
138 }
139}
140
141u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
142{
143 if ((reg * 4) < adev->rio_mem_size)
144 return ioread32(adev->rio_mem + (reg * 4));
145 else {
146 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
147 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
148 }
149}
150
151void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
152{
153
154 if ((reg * 4) < adev->rio_mem_size)
155 iowrite32(v, adev->rio_mem + (reg * 4));
156 else {
157 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
158 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
159 }
160}
161
162/**
163 * amdgpu_mm_rdoorbell - read a doorbell dword
164 *
165 * @adev: amdgpu_device pointer
166 * @index: doorbell index
167 *
168 * Returns the value in the doorbell aperture at the
169 * requested doorbell index (CIK).
170 */
171u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
172{
173 if (index < adev->doorbell.num_doorbells) {
174 return readl(adev->doorbell.ptr + index);
175 } else {
176 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
177 return 0;
178 }
179}
180
181/**
182 * amdgpu_mm_wdoorbell - write a doorbell dword
183 *
184 * @adev: amdgpu_device pointer
185 * @index: doorbell index
186 * @v: value to write
187 *
188 * Writes @v to the doorbell aperture at the
189 * requested doorbell index (CIK).
190 */
191void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
192{
193 if (index < adev->doorbell.num_doorbells) {
194 writel(v, adev->doorbell.ptr + index);
195 } else {
196 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
197 }
198}
199
200/**
Ken Wang832be402016-03-18 15:23:08 +0800201 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
202 *
203 * @adev: amdgpu_device pointer
204 * @index: doorbell index
205 *
206 * Returns the value in the doorbell aperture at the
207 * requested doorbell index (VEGA10+).
208 */
209u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
210{
211 if (index < adev->doorbell.num_doorbells) {
212 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
213 } else {
214 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
215 return 0;
216 }
217}
218
219/**
220 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
221 *
222 * @adev: amdgpu_device pointer
223 * @index: doorbell index
224 * @v: value to write
225 *
226 * Writes @v to the doorbell aperture at the
227 * requested doorbell index (VEGA10+).
228 */
229void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
230{
231 if (index < adev->doorbell.num_doorbells) {
232 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
233 } else {
234 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
235 }
236}
237
238/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400239 * amdgpu_invalid_rreg - dummy reg read function
240 *
241 * @adev: amdgpu device pointer
242 * @reg: offset of register
243 *
244 * Dummy register read function. Used for register blocks
245 * that certain asics don't have (all asics).
246 * Returns the value in the register.
247 */
248static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
249{
250 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
251 BUG();
252 return 0;
253}
254
255/**
256 * amdgpu_invalid_wreg - dummy reg write function
257 *
258 * @adev: amdgpu device pointer
259 * @reg: offset of register
260 * @v: value to write to the register
261 *
262 * Dummy register read function. Used for register blocks
263 * that certain asics don't have (all asics).
264 */
265static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
266{
267 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
268 reg, v);
269 BUG();
270}
271
272/**
273 * amdgpu_block_invalid_rreg - dummy reg read function
274 *
275 * @adev: amdgpu device pointer
276 * @block: offset of instance
277 * @reg: offset of register
278 *
279 * Dummy register read function. Used for register blocks
280 * that certain asics don't have (all asics).
281 * Returns the value in the register.
282 */
283static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
284 uint32_t block, uint32_t reg)
285{
286 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
287 reg, block);
288 BUG();
289 return 0;
290}
291
292/**
293 * amdgpu_block_invalid_wreg - dummy reg write function
294 *
295 * @adev: amdgpu device pointer
296 * @block: offset of instance
297 * @reg: offset of register
298 * @v: value to write to the register
299 *
300 * Dummy register read function. Used for register blocks
301 * that certain asics don't have (all asics).
302 */
303static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
304 uint32_t block,
305 uint32_t reg, uint32_t v)
306{
307 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
308 reg, block, v);
309 BUG();
310}
311
312static int amdgpu_vram_scratch_init(struct amdgpu_device *adev)
313{
314 int r;
315
316 if (adev->vram_scratch.robj == NULL) {
317 r = amdgpu_bo_create(adev, AMDGPU_GPU_PAGE_SIZE,
Alex Deucher857d9132015-08-27 00:14:16 -0400318 PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_VRAM,
Christian König03f48dd2016-08-15 17:00:22 +0200319 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
320 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS,
Christian König72d76682015-09-03 17:34:59 +0200321 NULL, NULL, &adev->vram_scratch.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400322 if (r) {
323 return r;
324 }
325 }
326
327 r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
328 if (unlikely(r != 0))
329 return r;
330 r = amdgpu_bo_pin(adev->vram_scratch.robj,
331 AMDGPU_GEM_DOMAIN_VRAM, &adev->vram_scratch.gpu_addr);
332 if (r) {
333 amdgpu_bo_unreserve(adev->vram_scratch.robj);
334 return r;
335 }
336 r = amdgpu_bo_kmap(adev->vram_scratch.robj,
337 (void **)&adev->vram_scratch.ptr);
338 if (r)
339 amdgpu_bo_unpin(adev->vram_scratch.robj);
340 amdgpu_bo_unreserve(adev->vram_scratch.robj);
341
342 return r;
343}
344
345static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev)
346{
347 int r;
348
349 if (adev->vram_scratch.robj == NULL) {
350 return;
351 }
352 r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
353 if (likely(r == 0)) {
354 amdgpu_bo_kunmap(adev->vram_scratch.robj);
355 amdgpu_bo_unpin(adev->vram_scratch.robj);
356 amdgpu_bo_unreserve(adev->vram_scratch.robj);
357 }
358 amdgpu_bo_unref(&adev->vram_scratch.robj);
359}
360
361/**
362 * amdgpu_program_register_sequence - program an array of registers.
363 *
364 * @adev: amdgpu_device pointer
365 * @registers: pointer to the register array
366 * @array_size: size of the register array
367 *
368 * Programs an array or registers with and and or masks.
369 * This is a helper for setting golden registers.
370 */
371void amdgpu_program_register_sequence(struct amdgpu_device *adev,
372 const u32 *registers,
373 const u32 array_size)
374{
375 u32 tmp, reg, and_mask, or_mask;
376 int i;
377
378 if (array_size % 3)
379 return;
380
381 for (i = 0; i < array_size; i +=3) {
382 reg = registers[i + 0];
383 and_mask = registers[i + 1];
384 or_mask = registers[i + 2];
385
386 if (and_mask == 0xffffffff) {
387 tmp = or_mask;
388 } else {
389 tmp = RREG32(reg);
390 tmp &= ~and_mask;
391 tmp |= or_mask;
392 }
393 WREG32(reg, tmp);
394 }
395}
396
397void amdgpu_pci_config_reset(struct amdgpu_device *adev)
398{
399 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
400}
401
402/*
403 * GPU doorbell aperture helpers function.
404 */
405/**
406 * amdgpu_doorbell_init - Init doorbell driver information.
407 *
408 * @adev: amdgpu_device pointer
409 *
410 * Init doorbell driver information (CIK)
411 * Returns 0 on success, error on failure.
412 */
413static int amdgpu_doorbell_init(struct amdgpu_device *adev)
414{
415 /* doorbell bar mapping */
416 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
417 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
418
Christian Königedf600d2016-05-03 15:54:54 +0200419 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400420 AMDGPU_DOORBELL_MAX_ASSIGNMENT+1);
421 if (adev->doorbell.num_doorbells == 0)
422 return -EINVAL;
423
424 adev->doorbell.ptr = ioremap(adev->doorbell.base, adev->doorbell.num_doorbells * sizeof(u32));
425 if (adev->doorbell.ptr == NULL) {
426 return -ENOMEM;
427 }
428 DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)adev->doorbell.base);
429 DRM_INFO("doorbell mmio size: %u\n", (unsigned)adev->doorbell.size);
430
431 return 0;
432}
433
434/**
435 * amdgpu_doorbell_fini - Tear down doorbell driver information.
436 *
437 * @adev: amdgpu_device pointer
438 *
439 * Tear down doorbell driver information (CIK)
440 */
441static void amdgpu_doorbell_fini(struct amdgpu_device *adev)
442{
443 iounmap(adev->doorbell.ptr);
444 adev->doorbell.ptr = NULL;
445}
446
447/**
448 * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
449 * setup amdkfd
450 *
451 * @adev: amdgpu_device pointer
452 * @aperture_base: output returning doorbell aperture base physical address
453 * @aperture_size: output returning doorbell aperture size in bytes
454 * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
455 *
456 * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
457 * takes doorbells required for its own rings and reports the setup to amdkfd.
458 * amdgpu reserved doorbells are at the start of the doorbell aperture.
459 */
460void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
461 phys_addr_t *aperture_base,
462 size_t *aperture_size,
463 size_t *start_offset)
464{
465 /*
466 * The first num_doorbells are used by amdgpu.
467 * amdkfd takes whatever's left in the aperture.
468 */
469 if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
470 *aperture_base = adev->doorbell.base;
471 *aperture_size = adev->doorbell.size;
472 *start_offset = adev->doorbell.num_doorbells * sizeof(u32);
473 } else {
474 *aperture_base = 0;
475 *aperture_size = 0;
476 *start_offset = 0;
477 }
478}
479
480/*
481 * amdgpu_wb_*()
482 * Writeback is the the method by which the the GPU updates special pages
483 * in memory with the status of certain GPU events (fences, ring pointers,
484 * etc.).
485 */
486
487/**
488 * amdgpu_wb_fini - Disable Writeback and free memory
489 *
490 * @adev: amdgpu_device pointer
491 *
492 * Disables Writeback and frees the Writeback memory (all asics).
493 * Used at driver shutdown.
494 */
495static void amdgpu_wb_fini(struct amdgpu_device *adev)
496{
497 if (adev->wb.wb_obj) {
Alex Deuchera76ed482016-10-21 15:30:36 -0400498 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
499 &adev->wb.gpu_addr,
500 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400501 adev->wb.wb_obj = NULL;
502 }
503}
504
505/**
506 * amdgpu_wb_init- Init Writeback driver info and allocate memory
507 *
508 * @adev: amdgpu_device pointer
509 *
510 * Disables Writeback and frees the Writeback memory (all asics).
511 * Used at driver startup.
512 * Returns 0 on success or an -error on failure.
513 */
514static int amdgpu_wb_init(struct amdgpu_device *adev)
515{
516 int r;
517
518 if (adev->wb.wb_obj == NULL) {
Huang Rui60a970a62017-03-15 10:13:32 +0800519 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t),
Alex Deuchera76ed482016-10-21 15:30:36 -0400520 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
521 &adev->wb.wb_obj, &adev->wb.gpu_addr,
522 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400523 if (r) {
524 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
525 return r;
526 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400527
528 adev->wb.num_wb = AMDGPU_MAX_WB;
529 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
530
531 /* clear wb memory */
Huang Rui60a970a62017-03-15 10:13:32 +0800532 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400533 }
534
535 return 0;
536}
537
538/**
539 * amdgpu_wb_get - Allocate a wb entry
540 *
541 * @adev: amdgpu_device pointer
542 * @wb: wb index
543 *
544 * Allocate a wb slot for use by the driver (all asics).
545 * Returns 0 on success or -EINVAL on failure.
546 */
547int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb)
548{
549 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
550 if (offset < adev->wb.num_wb) {
551 __set_bit(offset, adev->wb.used);
552 *wb = offset;
553 return 0;
554 } else {
555 return -EINVAL;
556 }
557}
558
559/**
Ken Wang70142852016-03-18 15:08:49 +0800560 * amdgpu_wb_get_64bit - Allocate a wb entry
561 *
562 * @adev: amdgpu_device pointer
563 * @wb: wb index
564 *
565 * Allocate a wb slot for use by the driver (all asics).
566 * Returns 0 on success or -EINVAL on failure.
567 */
568int amdgpu_wb_get_64bit(struct amdgpu_device *adev, u32 *wb)
569{
570 unsigned long offset = bitmap_find_next_zero_area_off(adev->wb.used,
571 adev->wb.num_wb, 0, 2, 7, 0);
572 if ((offset + 1) < adev->wb.num_wb) {
573 __set_bit(offset, adev->wb.used);
574 __set_bit(offset + 1, adev->wb.used);
575 *wb = offset;
576 return 0;
577 } else {
578 return -EINVAL;
579 }
580}
581
582/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400583 * amdgpu_wb_free - Free a wb entry
584 *
585 * @adev: amdgpu_device pointer
586 * @wb: wb index
587 *
588 * Free a wb slot allocated for use by the driver (all asics)
589 */
590void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb)
591{
592 if (wb < adev->wb.num_wb)
593 __clear_bit(wb, adev->wb.used);
594}
595
596/**
Ken Wang70142852016-03-18 15:08:49 +0800597 * amdgpu_wb_free_64bit - Free a wb entry
598 *
599 * @adev: amdgpu_device pointer
600 * @wb: wb index
601 *
602 * Free a wb slot allocated for use by the driver (all asics)
603 */
604void amdgpu_wb_free_64bit(struct amdgpu_device *adev, u32 wb)
605{
606 if ((wb + 1) < adev->wb.num_wb) {
607 __clear_bit(wb, adev->wb.used);
608 __clear_bit(wb + 1, adev->wb.used);
609 }
610}
611
612/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400613 * amdgpu_vram_location - try to find VRAM location
614 * @adev: amdgpu device structure holding all necessary informations
615 * @mc: memory controller structure holding memory informations
616 * @base: base address at which to put VRAM
617 *
618 * Function will place try to place VRAM at base address provided
619 * as parameter (which is so far either PCI aperture address or
620 * for IGP TOM base address).
621 *
622 * If there is not enough space to fit the unvisible VRAM in the 32bits
623 * address space then we limit the VRAM size to the aperture.
624 *
625 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
626 * this shouldn't be a problem as we are using the PCI aperture as a reference.
627 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
628 * not IGP.
629 *
630 * Note: we use mc_vram_size as on some board we need to program the mc to
631 * cover the whole aperture even if VRAM size is inferior to aperture size
632 * Novell bug 204882 + along with lots of ubuntu ones
633 *
634 * Note: when limiting vram it's safe to overwritte real_vram_size because
635 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
636 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
637 * ones)
638 *
639 * Note: IGP TOM addr should be the same as the aperture addr, we don't
640 * explicitly check for that thought.
641 *
642 * FIXME: when reducing VRAM size align new size on power of 2.
643 */
644void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base)
645{
646 uint64_t limit = (uint64_t)amdgpu_vram_limit << 20;
647
648 mc->vram_start = base;
649 if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) {
650 dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n");
651 mc->real_vram_size = mc->aper_size;
652 mc->mc_vram_size = mc->aper_size;
653 }
654 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
655 if (limit && limit < mc->real_vram_size)
656 mc->real_vram_size = limit;
657 dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
658 mc->mc_vram_size >> 20, mc->vram_start,
659 mc->vram_end, mc->real_vram_size >> 20);
660}
661
662/**
663 * amdgpu_gtt_location - try to find GTT location
664 * @adev: amdgpu device structure holding all necessary informations
665 * @mc: memory controller structure holding memory informations
666 *
667 * Function will place try to place GTT before or after VRAM.
668 *
669 * If GTT size is bigger than space left then we ajust GTT size.
670 * Thus function will never fails.
671 *
672 * FIXME: when reducing GTT size align new size on power of 2.
673 */
674void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc)
675{
676 u64 size_af, size_bf;
677
678 size_af = ((adev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align;
679 size_bf = mc->vram_start & ~mc->gtt_base_align;
680 if (size_bf > size_af) {
681 if (mc->gtt_size > size_bf) {
682 dev_warn(adev->dev, "limiting GTT\n");
683 mc->gtt_size = size_bf;
684 }
Alex Deucher9dc5a912016-11-17 15:40:22 -0500685 mc->gtt_start = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400686 } else {
687 if (mc->gtt_size > size_af) {
688 dev_warn(adev->dev, "limiting GTT\n");
689 mc->gtt_size = size_af;
690 }
691 mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align;
692 }
693 mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
694 dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
695 mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
696}
697
698/*
699 * GPU helpers function.
700 */
701/**
Jim Quc836fec2017-02-10 15:59:59 +0800702 * amdgpu_need_post - check if the hw need post or not
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400703 *
704 * @adev: amdgpu_device pointer
705 *
Jim Quc836fec2017-02-10 15:59:59 +0800706 * Check if the asic has been initialized (all asics) at driver startup
707 * or post is needed if hw reset is performed.
708 * Returns true if need or false if not.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400709 */
Jim Quc836fec2017-02-10 15:59:59 +0800710bool amdgpu_need_post(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400711{
712 uint32_t reg;
713
Jim Quc836fec2017-02-10 15:59:59 +0800714 if (adev->has_hw_reset) {
715 adev->has_hw_reset = false;
716 return true;
717 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400718 /* then check MEM_SIZE, in case the crtcs are off */
Alex Deucherbbf282d2017-03-03 17:26:10 -0500719 reg = amdgpu_asic_get_config_memsize(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400720
721 if (reg)
Jim Quc836fec2017-02-10 15:59:59 +0800722 return false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400723
Jim Quc836fec2017-02-10 15:59:59 +0800724 return true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400725
726}
727
Monk Liubec86372016-09-14 19:38:08 +0800728static bool amdgpu_vpost_needed(struct amdgpu_device *adev)
729{
730 if (amdgpu_sriov_vf(adev))
731 return false;
732
733 if (amdgpu_passthrough(adev)) {
Monk Liu1da2c322016-11-11 11:24:29 +0800734 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
735 * some old smc fw still need driver do vPost otherwise gpu hang, while
736 * those smc fw version above 22.15 doesn't have this flaw, so we force
737 * vpost executed for smc version below 22.15
Monk Liubec86372016-09-14 19:38:08 +0800738 */
739 if (adev->asic_type == CHIP_FIJI) {
740 int err;
741 uint32_t fw_ver;
742 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
743 /* force vPost if error occured */
744 if (err)
745 return true;
746
747 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
Monk Liu1da2c322016-11-11 11:24:29 +0800748 if (fw_ver < 0x00160e00)
749 return true;
Monk Liubec86372016-09-14 19:38:08 +0800750 }
Monk Liubec86372016-09-14 19:38:08 +0800751 }
Jim Quc836fec2017-02-10 15:59:59 +0800752 return amdgpu_need_post(adev);
Monk Liubec86372016-09-14 19:38:08 +0800753}
754
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400755/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400756 * amdgpu_dummy_page_init - init dummy page used by the driver
757 *
758 * @adev: amdgpu_device pointer
759 *
760 * Allocate the dummy page used by the driver (all asics).
761 * This dummy page is used by the driver as a filler for gart entries
762 * when pages are taken out of the GART
763 * Returns 0 on sucess, -ENOMEM on failure.
764 */
765int amdgpu_dummy_page_init(struct amdgpu_device *adev)
766{
767 if (adev->dummy_page.page)
768 return 0;
769 adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
770 if (adev->dummy_page.page == NULL)
771 return -ENOMEM;
772 adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page,
773 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
774 if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) {
775 dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n");
776 __free_page(adev->dummy_page.page);
777 adev->dummy_page.page = NULL;
778 return -ENOMEM;
779 }
780 return 0;
781}
782
783/**
784 * amdgpu_dummy_page_fini - free dummy page used by the driver
785 *
786 * @adev: amdgpu_device pointer
787 *
788 * Frees the dummy page used by the driver (all asics).
789 */
790void amdgpu_dummy_page_fini(struct amdgpu_device *adev)
791{
792 if (adev->dummy_page.page == NULL)
793 return;
794 pci_unmap_page(adev->pdev, adev->dummy_page.addr,
795 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
796 __free_page(adev->dummy_page.page);
797 adev->dummy_page.page = NULL;
798}
799
800
801/* ATOM accessor methods */
802/*
803 * ATOM is an interpreted byte code stored in tables in the vbios. The
804 * driver registers callbacks to access registers and the interpreter
805 * in the driver parses the tables and executes then to program specific
806 * actions (set display modes, asic init, etc.). See amdgpu_atombios.c,
807 * atombios.h, and atom.c
808 */
809
810/**
811 * cail_pll_read - read PLL register
812 *
813 * @info: atom card_info pointer
814 * @reg: PLL register offset
815 *
816 * Provides a PLL register accessor for the atom interpreter (r4xx+).
817 * Returns the value of the PLL register.
818 */
819static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
820{
821 return 0;
822}
823
824/**
825 * cail_pll_write - write PLL register
826 *
827 * @info: atom card_info pointer
828 * @reg: PLL register offset
829 * @val: value to write to the pll register
830 *
831 * Provides a PLL register accessor for the atom interpreter (r4xx+).
832 */
833static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
834{
835
836}
837
838/**
839 * cail_mc_read - read MC (Memory Controller) register
840 *
841 * @info: atom card_info pointer
842 * @reg: MC register offset
843 *
844 * Provides an MC register accessor for the atom interpreter (r4xx+).
845 * Returns the value of the MC register.
846 */
847static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
848{
849 return 0;
850}
851
852/**
853 * cail_mc_write - write MC (Memory Controller) register
854 *
855 * @info: atom card_info pointer
856 * @reg: MC register offset
857 * @val: value to write to the pll register
858 *
859 * Provides a MC register accessor for the atom interpreter (r4xx+).
860 */
861static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
862{
863
864}
865
866/**
867 * cail_reg_write - write MMIO register
868 *
869 * @info: atom card_info pointer
870 * @reg: MMIO register offset
871 * @val: value to write to the pll register
872 *
873 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
874 */
875static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
876{
877 struct amdgpu_device *adev = info->dev->dev_private;
878
879 WREG32(reg, val);
880}
881
882/**
883 * cail_reg_read - read MMIO register
884 *
885 * @info: atom card_info pointer
886 * @reg: MMIO register offset
887 *
888 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
889 * Returns the value of the MMIO register.
890 */
891static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
892{
893 struct amdgpu_device *adev = info->dev->dev_private;
894 uint32_t r;
895
896 r = RREG32(reg);
897 return r;
898}
899
900/**
901 * cail_ioreg_write - write IO register
902 *
903 * @info: atom card_info pointer
904 * @reg: IO register offset
905 * @val: value to write to the pll register
906 *
907 * Provides a IO register accessor for the atom interpreter (r4xx+).
908 */
909static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
910{
911 struct amdgpu_device *adev = info->dev->dev_private;
912
913 WREG32_IO(reg, val);
914}
915
916/**
917 * cail_ioreg_read - read IO register
918 *
919 * @info: atom card_info pointer
920 * @reg: IO register offset
921 *
922 * Provides an IO register accessor for the atom interpreter (r4xx+).
923 * Returns the value of the IO register.
924 */
925static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
926{
927 struct amdgpu_device *adev = info->dev->dev_private;
928 uint32_t r;
929
930 r = RREG32_IO(reg);
931 return r;
932}
933
934/**
935 * amdgpu_atombios_fini - free the driver info and callbacks for atombios
936 *
937 * @adev: amdgpu_device pointer
938 *
939 * Frees the driver info and register access callbacks for the ATOM
940 * interpreter (r4xx+).
941 * Called at driver shutdown.
942 */
943static void amdgpu_atombios_fini(struct amdgpu_device *adev)
944{
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800945 if (adev->mode_info.atom_context) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400946 kfree(adev->mode_info.atom_context->scratch);
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800947 kfree(adev->mode_info.atom_context->iio);
948 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400949 kfree(adev->mode_info.atom_context);
950 adev->mode_info.atom_context = NULL;
951 kfree(adev->mode_info.atom_card_info);
952 adev->mode_info.atom_card_info = NULL;
953}
954
955/**
956 * amdgpu_atombios_init - init the driver info and callbacks for atombios
957 *
958 * @adev: amdgpu_device pointer
959 *
960 * Initializes the driver info and register access callbacks for the
961 * ATOM interpreter (r4xx+).
962 * Returns 0 on sucess, -ENOMEM on failure.
963 * Called at driver startup.
964 */
965static int amdgpu_atombios_init(struct amdgpu_device *adev)
966{
967 struct card_info *atom_card_info =
968 kzalloc(sizeof(struct card_info), GFP_KERNEL);
969
970 if (!atom_card_info)
971 return -ENOMEM;
972
973 adev->mode_info.atom_card_info = atom_card_info;
974 atom_card_info->dev = adev->ddev;
975 atom_card_info->reg_read = cail_reg_read;
976 atom_card_info->reg_write = cail_reg_write;
977 /* needed for iio ops */
978 if (adev->rio_mem) {
979 atom_card_info->ioreg_read = cail_ioreg_read;
980 atom_card_info->ioreg_write = cail_ioreg_write;
981 } else {
Amber Linb64a18c2017-01-04 08:06:58 -0500982 DRM_INFO("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400983 atom_card_info->ioreg_read = cail_reg_read;
984 atom_card_info->ioreg_write = cail_reg_write;
985 }
986 atom_card_info->mc_read = cail_mc_read;
987 atom_card_info->mc_write = cail_mc_write;
988 atom_card_info->pll_read = cail_pll_read;
989 atom_card_info->pll_write = cail_pll_write;
990
991 adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
992 if (!adev->mode_info.atom_context) {
993 amdgpu_atombios_fini(adev);
994 return -ENOMEM;
995 }
996
997 mutex_init(&adev->mode_info.atom_context->mutex);
Alex Deuchera5bde2f2016-09-23 16:23:41 -0400998 if (adev->is_atom_fw) {
999 amdgpu_atomfirmware_scratch_regs_init(adev);
1000 amdgpu_atomfirmware_allocate_fb_scratch(adev);
1001 } else {
1002 amdgpu_atombios_scratch_regs_init(adev);
1003 amdgpu_atombios_allocate_fb_scratch(adev);
1004 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001005 return 0;
1006}
1007
1008/* if we get transitioned to only one device, take VGA back */
1009/**
1010 * amdgpu_vga_set_decode - enable/disable vga decode
1011 *
1012 * @cookie: amdgpu_device pointer
1013 * @state: enable/disable vga decode
1014 *
1015 * Enable/disable vga decode (all asics).
1016 * Returns VGA resource flags.
1017 */
1018static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
1019{
1020 struct amdgpu_device *adev = cookie;
1021 amdgpu_asic_set_vga_state(adev, state);
1022 if (state)
1023 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1024 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1025 else
1026 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1027}
1028
1029/**
1030 * amdgpu_check_pot_argument - check that argument is a power of two
1031 *
1032 * @arg: value to check
1033 *
1034 * Validates that a certain argument is a power of two (all asics).
1035 * Returns true if argument is valid.
1036 */
1037static bool amdgpu_check_pot_argument(int arg)
1038{
1039 return (arg & (arg - 1)) == 0;
1040}
1041
1042/**
1043 * amdgpu_check_arguments - validate module params
1044 *
1045 * @adev: amdgpu_device pointer
1046 *
1047 * Validates certain module parameters and updates
1048 * the associated values used by the driver (all asics).
1049 */
1050static void amdgpu_check_arguments(struct amdgpu_device *adev)
1051{
Chunming Zhou5b011232015-12-10 17:34:33 +08001052 if (amdgpu_sched_jobs < 4) {
1053 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1054 amdgpu_sched_jobs);
1055 amdgpu_sched_jobs = 4;
1056 } else if (!amdgpu_check_pot_argument(amdgpu_sched_jobs)){
1057 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1058 amdgpu_sched_jobs);
1059 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1060 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001061
1062 if (amdgpu_gart_size != -1) {
Christian Königc4e1a132016-03-17 16:25:15 +01001063 /* gtt size must be greater or equal to 32M */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001064 if (amdgpu_gart_size < 32) {
1065 dev_warn(adev->dev, "gart size (%d) too small\n",
1066 amdgpu_gart_size);
1067 amdgpu_gart_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001068 }
1069 }
1070
1071 if (!amdgpu_check_pot_argument(amdgpu_vm_size)) {
1072 dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
1073 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001074 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001075 }
1076
1077 if (amdgpu_vm_size < 1) {
1078 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1079 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001080 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001081 }
1082
1083 /*
1084 * Max GPUVM size for Cayman, SI and CI are 40 bits.
1085 */
1086 if (amdgpu_vm_size > 1024) {
1087 dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
1088 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001089 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001090 }
1091
1092 /* defines number of bits in page table versus page directory,
1093 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1094 * page table and the remaining bits are in the page directory */
1095 if (amdgpu_vm_block_size == -1) {
1096
1097 /* Total bits covered by PD + PTs */
1098 unsigned bits = ilog2(amdgpu_vm_size) + 18;
1099
1100 /* Make sure the PD is 4K in size up to 8GB address space.
1101 Above that split equal between PD and PTs */
1102 if (amdgpu_vm_size <= 8)
1103 amdgpu_vm_block_size = bits - 9;
1104 else
1105 amdgpu_vm_block_size = (bits + 3) / 2;
1106
1107 } else if (amdgpu_vm_block_size < 9) {
1108 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1109 amdgpu_vm_block_size);
1110 amdgpu_vm_block_size = 9;
1111 }
1112
1113 if (amdgpu_vm_block_size > 24 ||
1114 (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
1115 dev_warn(adev->dev, "VM page table size (%d) too large\n",
1116 amdgpu_vm_block_size);
1117 amdgpu_vm_block_size = 9;
1118 }
Christian König6a7f76e2016-08-24 15:51:49 +02001119
jimqu526bae32016-11-07 09:53:10 +08001120 if (amdgpu_vram_page_split != -1 && (amdgpu_vram_page_split < 16 ||
1121 !amdgpu_check_pot_argument(amdgpu_vram_page_split))) {
Christian König6a7f76e2016-08-24 15:51:49 +02001122 dev_warn(adev->dev, "invalid VRAM page split (%d)\n",
1123 amdgpu_vram_page_split);
1124 amdgpu_vram_page_split = 1024;
1125 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001126}
1127
1128/**
1129 * amdgpu_switcheroo_set_state - set switcheroo state
1130 *
1131 * @pdev: pci dev pointer
Lukas Wunner16944672015-09-05 11:17:35 +02001132 * @state: vga_switcheroo state
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001133 *
1134 * Callback for the switcheroo driver. Suspends or resumes the
1135 * the asics before or after it is powered up using ACPI methods.
1136 */
1137static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1138{
1139 struct drm_device *dev = pci_get_drvdata(pdev);
1140
1141 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1142 return;
1143
1144 if (state == VGA_SWITCHEROO_ON) {
1145 unsigned d3_delay = dev->pdev->d3_delay;
1146
Joe Perches7ca85292017-02-28 04:55:52 -08001147 pr_info("amdgpu: switched on\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001148 /* don't suspend or resume card normally */
1149 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1150
Alex Deucher810ddc32016-08-23 13:25:49 -04001151 amdgpu_device_resume(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001152
1153 dev->pdev->d3_delay = d3_delay;
1154
1155 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1156 drm_kms_helper_poll_enable(dev);
1157 } else {
Joe Perches7ca85292017-02-28 04:55:52 -08001158 pr_info("amdgpu: switched off\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001159 drm_kms_helper_poll_disable(dev);
1160 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Alex Deucher810ddc32016-08-23 13:25:49 -04001161 amdgpu_device_suspend(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001162 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1163 }
1164}
1165
1166/**
1167 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1168 *
1169 * @pdev: pci dev pointer
1170 *
1171 * Callback for the switcheroo driver. Check of the switcheroo
1172 * state can be changed.
1173 * Returns true if the state can be changed, false if not.
1174 */
1175static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1176{
1177 struct drm_device *dev = pci_get_drvdata(pdev);
1178
1179 /*
1180 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1181 * locking inversion with the driver load path. And the access here is
1182 * completely racy anyway. So don't bother with locking for now.
1183 */
1184 return dev->open_count == 0;
1185}
1186
1187static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1188 .set_gpu_state = amdgpu_switcheroo_set_state,
1189 .reprobe = NULL,
1190 .can_switch = amdgpu_switcheroo_can_switch,
1191};
1192
1193int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001194 enum amd_ip_block_type block_type,
1195 enum amd_clockgating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001196{
1197 int i, r = 0;
1198
1199 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001200 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001201 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001202 if (adev->ip_blocks[i].version->type != block_type)
1203 continue;
1204 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1205 continue;
1206 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1207 (void *)adev, state);
1208 if (r)
1209 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1210 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001211 }
1212 return r;
1213}
1214
1215int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001216 enum amd_ip_block_type block_type,
1217 enum amd_powergating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001218{
1219 int i, r = 0;
1220
1221 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001222 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001223 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001224 if (adev->ip_blocks[i].version->type != block_type)
1225 continue;
1226 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1227 continue;
1228 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1229 (void *)adev, state);
1230 if (r)
1231 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1232 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001233 }
1234 return r;
1235}
1236
Huang Rui6cb2d4e2017-01-05 18:44:41 +08001237void amdgpu_get_clockgating_state(struct amdgpu_device *adev, u32 *flags)
1238{
1239 int i;
1240
1241 for (i = 0; i < adev->num_ip_blocks; i++) {
1242 if (!adev->ip_blocks[i].status.valid)
1243 continue;
1244 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1245 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1246 }
1247}
1248
Alex Deucher5dbbb602016-06-23 11:41:04 -04001249int amdgpu_wait_for_idle(struct amdgpu_device *adev,
1250 enum amd_ip_block_type block_type)
1251{
1252 int i, r;
1253
1254 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001255 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001256 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001257 if (adev->ip_blocks[i].version->type == block_type) {
1258 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001259 if (r)
1260 return r;
1261 break;
1262 }
1263 }
1264 return 0;
1265
1266}
1267
1268bool amdgpu_is_idle(struct amdgpu_device *adev,
1269 enum amd_ip_block_type block_type)
1270{
1271 int i;
1272
1273 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001274 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001275 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001276 if (adev->ip_blocks[i].version->type == block_type)
1277 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001278 }
1279 return true;
1280
1281}
1282
Alex Deuchera1255102016-10-13 17:41:13 -04001283struct amdgpu_ip_block * amdgpu_get_ip_block(struct amdgpu_device *adev,
1284 enum amd_ip_block_type type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001285{
1286 int i;
1287
1288 for (i = 0; i < adev->num_ip_blocks; i++)
Alex Deuchera1255102016-10-13 17:41:13 -04001289 if (adev->ip_blocks[i].version->type == type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001290 return &adev->ip_blocks[i];
1291
1292 return NULL;
1293}
1294
1295/**
1296 * amdgpu_ip_block_version_cmp
1297 *
1298 * @adev: amdgpu_device pointer
yanyang15fc3aee2015-05-22 14:39:35 -04001299 * @type: enum amd_ip_block_type
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001300 * @major: major version
1301 * @minor: minor version
1302 *
1303 * return 0 if equal or greater
1304 * return 1 if smaller or the ip_block doesn't exist
1305 */
1306int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001307 enum amd_ip_block_type type,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001308 u32 major, u32 minor)
1309{
Alex Deuchera1255102016-10-13 17:41:13 -04001310 struct amdgpu_ip_block *ip_block = amdgpu_get_ip_block(adev, type);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001311
Alex Deuchera1255102016-10-13 17:41:13 -04001312 if (ip_block && ((ip_block->version->major > major) ||
1313 ((ip_block->version->major == major) &&
1314 (ip_block->version->minor >= minor))))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001315 return 0;
1316
1317 return 1;
1318}
1319
Alex Deuchera1255102016-10-13 17:41:13 -04001320/**
1321 * amdgpu_ip_block_add
1322 *
1323 * @adev: amdgpu_device pointer
1324 * @ip_block_version: pointer to the IP to add
1325 *
1326 * Adds the IP block driver information to the collection of IPs
1327 * on the asic.
1328 */
1329int amdgpu_ip_block_add(struct amdgpu_device *adev,
1330 const struct amdgpu_ip_block_version *ip_block_version)
1331{
1332 if (!ip_block_version)
1333 return -EINVAL;
1334
1335 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1336
1337 return 0;
1338}
1339
Alex Deucher483ef982016-09-30 12:43:04 -04001340static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
Emily Deng9accf2f2016-08-10 16:01:25 +08001341{
1342 adev->enable_virtual_display = false;
1343
1344 if (amdgpu_virtual_display) {
1345 struct drm_device *ddev = adev->ddev;
1346 const char *pci_address_name = pci_name(ddev->pdev);
Emily Deng0f663562016-09-30 13:02:18 -04001347 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
Emily Deng9accf2f2016-08-10 16:01:25 +08001348
1349 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1350 pciaddstr_tmp = pciaddstr;
Emily Deng0f663562016-09-30 13:02:18 -04001351 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1352 pciaddname = strsep(&pciaddname_tmp, ",");
Yintian Tao967de2a2017-01-22 15:16:51 +08001353 if (!strcmp("all", pciaddname)
1354 || !strcmp(pci_address_name, pciaddname)) {
Emily Deng0f663562016-09-30 13:02:18 -04001355 long num_crtc;
1356 int res = -1;
1357
Emily Deng9accf2f2016-08-10 16:01:25 +08001358 adev->enable_virtual_display = true;
Emily Deng0f663562016-09-30 13:02:18 -04001359
1360 if (pciaddname_tmp)
1361 res = kstrtol(pciaddname_tmp, 10,
1362 &num_crtc);
1363
1364 if (!res) {
1365 if (num_crtc < 1)
1366 num_crtc = 1;
1367 if (num_crtc > 6)
1368 num_crtc = 6;
1369 adev->mode_info.num_crtc = num_crtc;
1370 } else {
1371 adev->mode_info.num_crtc = 1;
1372 }
Emily Deng9accf2f2016-08-10 16:01:25 +08001373 break;
1374 }
1375 }
1376
Emily Deng0f663562016-09-30 13:02:18 -04001377 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1378 amdgpu_virtual_display, pci_address_name,
1379 adev->enable_virtual_display, adev->mode_info.num_crtc);
Emily Deng9accf2f2016-08-10 16:01:25 +08001380
1381 kfree(pciaddstr);
1382 }
1383}
1384
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001385static int amdgpu_early_init(struct amdgpu_device *adev)
1386{
Alex Deucheraaa36a92015-04-20 17:31:14 -04001387 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001388
Alex Deucher483ef982016-09-30 12:43:04 -04001389 amdgpu_device_enable_virtual_display(adev);
Emily Denga6be7572016-08-08 11:37:50 +08001390
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001391 switch (adev->asic_type) {
Alex Deucheraaa36a92015-04-20 17:31:14 -04001392 case CHIP_TOPAZ:
1393 case CHIP_TONGA:
David Zhang48299f92015-07-08 01:05:16 +08001394 case CHIP_FIJI:
Flora Cui2cc0c0b2016-03-14 18:33:29 -04001395 case CHIP_POLARIS11:
1396 case CHIP_POLARIS10:
Junwei Zhangc4642a42016-12-14 15:32:28 -05001397 case CHIP_POLARIS12:
Alex Deucheraaa36a92015-04-20 17:31:14 -04001398 case CHIP_CARRIZO:
Samuel Li39bb0c92015-10-08 16:31:43 -04001399 case CHIP_STONEY:
1400 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
Alex Deucheraaa36a92015-04-20 17:31:14 -04001401 adev->family = AMDGPU_FAMILY_CZ;
1402 else
1403 adev->family = AMDGPU_FAMILY_VI;
1404
1405 r = vi_set_ip_blocks(adev);
1406 if (r)
1407 return r;
1408 break;
Ken Wang33f34802016-01-21 17:29:41 +08001409#ifdef CONFIG_DRM_AMDGPU_SI
1410 case CHIP_VERDE:
1411 case CHIP_TAHITI:
1412 case CHIP_PITCAIRN:
1413 case CHIP_OLAND:
1414 case CHIP_HAINAN:
Ken Wang295d0da2016-05-24 21:02:53 +08001415 adev->family = AMDGPU_FAMILY_SI;
Ken Wang33f34802016-01-21 17:29:41 +08001416 r = si_set_ip_blocks(adev);
1417 if (r)
1418 return r;
1419 break;
1420#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -04001421#ifdef CONFIG_DRM_AMDGPU_CIK
1422 case CHIP_BONAIRE:
1423 case CHIP_HAWAII:
1424 case CHIP_KAVERI:
1425 case CHIP_KABINI:
1426 case CHIP_MULLINS:
1427 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1428 adev->family = AMDGPU_FAMILY_CI;
1429 else
1430 adev->family = AMDGPU_FAMILY_KV;
1431
1432 r = cik_set_ip_blocks(adev);
1433 if (r)
1434 return r;
1435 break;
1436#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001437 default:
1438 /* FIXME: not supported yet */
1439 return -EINVAL;
1440 }
1441
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001442 if (amdgpu_sriov_vf(adev)) {
1443 r = amdgpu_virt_request_full_gpu(adev, true);
1444 if (r)
1445 return r;
1446 }
1447
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001448 for (i = 0; i < adev->num_ip_blocks; i++) {
1449 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1450 DRM_ERROR("disabled ip block: %d\n", i);
Alex Deuchera1255102016-10-13 17:41:13 -04001451 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001452 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001453 if (adev->ip_blocks[i].version->funcs->early_init) {
1454 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001455 if (r == -ENOENT) {
Alex Deuchera1255102016-10-13 17:41:13 -04001456 adev->ip_blocks[i].status.valid = false;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001457 } else if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001458 DRM_ERROR("early_init of IP block <%s> failed %d\n",
1459 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001460 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001461 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001462 adev->ip_blocks[i].status.valid = true;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001463 }
Alex Deucher974e6b62015-07-10 13:59:44 -04001464 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001465 adev->ip_blocks[i].status.valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001466 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001467 }
1468 }
1469
Nicolai Hähnle395d1fb2016-06-02 12:32:07 +02001470 adev->cg_flags &= amdgpu_cg_mask;
1471 adev->pg_flags &= amdgpu_pg_mask;
1472
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001473 return 0;
1474}
1475
1476static int amdgpu_init(struct amdgpu_device *adev)
1477{
1478 int i, r;
1479
1480 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001481 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001482 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001483 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001484 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001485 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
1486 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001487 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001488 }
Alex Deuchera1255102016-10-13 17:41:13 -04001489 adev->ip_blocks[i].status.sw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001490 /* need to do gmc hw init early so we can allocate gpu mem */
Alex Deuchera1255102016-10-13 17:41:13 -04001491 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001492 r = amdgpu_vram_scratch_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001493 if (r) {
1494 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001495 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001496 }
Alex Deuchera1255102016-10-13 17:41:13 -04001497 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001498 if (r) {
1499 DRM_ERROR("hw_init %d failed %d\n", i, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001500 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001501 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001502 r = amdgpu_wb_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001503 if (r) {
1504 DRM_ERROR("amdgpu_wb_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001505 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001506 }
Alex Deuchera1255102016-10-13 17:41:13 -04001507 adev->ip_blocks[i].status.hw = true;
Monk Liu24936642017-01-09 15:54:32 +08001508
1509 /* right after GMC hw init, we create CSA */
1510 if (amdgpu_sriov_vf(adev)) {
1511 r = amdgpu_allocate_static_csa(adev);
1512 if (r) {
1513 DRM_ERROR("allocate CSA failed %d\n", r);
1514 return r;
1515 }
1516 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001517 }
1518 }
1519
1520 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001521 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001522 continue;
1523 /* gmc hw init is done early */
Alex Deuchera1255102016-10-13 17:41:13 -04001524 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001525 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001526 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001527 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001528 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1529 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001530 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001531 }
Alex Deuchera1255102016-10-13 17:41:13 -04001532 adev->ip_blocks[i].status.hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001533 }
1534
1535 return 0;
1536}
1537
1538static int amdgpu_late_init(struct amdgpu_device *adev)
1539{
1540 int i = 0, r;
1541
1542 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001543 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001544 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001545 if (adev->ip_blocks[i].version->funcs->late_init) {
1546 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001547 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001548 DRM_ERROR("late_init of IP block <%s> failed %d\n",
1549 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001550 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001551 }
Alex Deuchera1255102016-10-13 17:41:13 -04001552 adev->ip_blocks[i].status.late_initialized = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001553 }
Alex Deucher4a446d52016-10-07 14:48:18 -04001554 /* skip CG for VCE/UVD, it's handled specially */
Alex Deuchera1255102016-10-13 17:41:13 -04001555 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1556 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
Alex Deucher4a446d52016-10-07 14:48:18 -04001557 /* enable clockgating to save power */
Alex Deuchera1255102016-10-13 17:41:13 -04001558 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1559 AMD_CG_STATE_GATE);
Alex Deucher4a446d52016-10-07 14:48:18 -04001560 if (r) {
1561 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001562 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher4a446d52016-10-07 14:48:18 -04001563 return r;
1564 }
Arindam Nathb0b00ff2016-10-07 19:01:37 +05301565 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001566 }
1567
Tom St Denisd1aff8e2016-08-09 18:01:55 -04001568 amdgpu_dpm_enable_uvd(adev, false);
1569 amdgpu_dpm_enable_vce(adev, false);
1570
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001571 return 0;
1572}
1573
1574static int amdgpu_fini(struct amdgpu_device *adev)
1575{
1576 int i, r;
1577
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001578 /* need to disable SMC first */
1579 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001580 if (!adev->ip_blocks[i].status.hw)
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001581 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001582 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001583 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
Alex Deuchera1255102016-10-13 17:41:13 -04001584 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1585 AMD_CG_STATE_UNGATE);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001586 if (r) {
1587 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001588 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001589 return r;
1590 }
Alex Deuchera1255102016-10-13 17:41:13 -04001591 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001592 /* XXX handle errors */
1593 if (r) {
1594 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001595 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001596 }
Alex Deuchera1255102016-10-13 17:41:13 -04001597 adev->ip_blocks[i].status.hw = false;
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001598 break;
1599 }
1600 }
1601
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001602 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001603 if (!adev->ip_blocks[i].status.hw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001604 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001605 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001606 amdgpu_wb_fini(adev);
1607 amdgpu_vram_scratch_fini(adev);
1608 }
Rex Zhu8201a672016-11-24 21:44:44 +08001609
1610 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1611 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
1612 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
1613 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1614 AMD_CG_STATE_UNGATE);
1615 if (r) {
1616 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1617 adev->ip_blocks[i].version->funcs->name, r);
1618 return r;
1619 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001620 }
Rex Zhu8201a672016-11-24 21:44:44 +08001621
Alex Deuchera1255102016-10-13 17:41:13 -04001622 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001623 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001624 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001625 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1626 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001627 }
Rex Zhu8201a672016-11-24 21:44:44 +08001628
Alex Deuchera1255102016-10-13 17:41:13 -04001629 adev->ip_blocks[i].status.hw = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001630 }
1631
1632 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001633 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001634 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001635 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001636 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001637 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001638 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
1639 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001640 }
Alex Deuchera1255102016-10-13 17:41:13 -04001641 adev->ip_blocks[i].status.sw = false;
1642 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001643 }
1644
Monk Liua6dcfd92016-05-19 14:36:34 +08001645 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001646 if (!adev->ip_blocks[i].status.late_initialized)
Grazvydas Ignotas8a2eef12016-10-03 00:06:44 +03001647 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001648 if (adev->ip_blocks[i].version->funcs->late_fini)
1649 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
1650 adev->ip_blocks[i].status.late_initialized = false;
Monk Liua6dcfd92016-05-19 14:36:34 +08001651 }
1652
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001653 if (amdgpu_sriov_vf(adev)) {
Monk Liu24936642017-01-09 15:54:32 +08001654 amdgpu_bo_free_kernel(&adev->virt.csa_obj, &adev->virt.csa_vmid0_addr, NULL);
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001655 amdgpu_virt_release_full_gpu(adev, false);
1656 }
Monk Liu24936642017-01-09 15:54:32 +08001657
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001658 return 0;
1659}
1660
Alex Deucherfaefba92016-12-06 10:38:29 -05001661int amdgpu_suspend(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001662{
1663 int i, r;
1664
Xiangliang Yue941ea92017-01-18 12:47:55 +08001665 if (amdgpu_sriov_vf(adev))
1666 amdgpu_virt_request_full_gpu(adev, false);
1667
Flora Cuic5a93a22016-02-26 10:45:25 +08001668 /* ungate SMC block first */
1669 r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC,
1670 AMD_CG_STATE_UNGATE);
1671 if (r) {
1672 DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r);
1673 }
1674
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001675 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001676 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001677 continue;
1678 /* ungate blocks so that suspend can properly shut them down */
Flora Cuic5a93a22016-02-26 10:45:25 +08001679 if (i != AMD_IP_BLOCK_TYPE_SMC) {
Alex Deuchera1255102016-10-13 17:41:13 -04001680 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1681 AMD_CG_STATE_UNGATE);
Flora Cuic5a93a22016-02-26 10:45:25 +08001682 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001683 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1684 adev->ip_blocks[i].version->funcs->name, r);
Flora Cuic5a93a22016-02-26 10:45:25 +08001685 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001686 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001687 /* XXX handle errors */
Alex Deuchera1255102016-10-13 17:41:13 -04001688 r = adev->ip_blocks[i].version->funcs->suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001689 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001690 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001691 DRM_ERROR("suspend of IP block <%s> failed %d\n",
1692 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001693 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001694 }
1695
Xiangliang Yue941ea92017-01-18 12:47:55 +08001696 if (amdgpu_sriov_vf(adev))
1697 amdgpu_virt_release_full_gpu(adev, false);
1698
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001699 return 0;
1700}
1701
Monk Liue4f0fdc2017-02-09 11:55:49 +08001702static int amdgpu_sriov_reinit_early(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001703{
1704 int i, r;
1705
1706 for (i = 0; i < adev->num_ip_blocks; i++) {
1707 if (!adev->ip_blocks[i].status.valid)
1708 continue;
1709
1710 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1711 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
1712 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH)
Monk Liue4f0fdc2017-02-09 11:55:49 +08001713 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08001714
1715 if (r) {
1716 DRM_ERROR("resume of IP block <%s> failed %d\n",
1717 adev->ip_blocks[i].version->funcs->name, r);
1718 return r;
1719 }
1720 }
1721
1722 return 0;
1723}
1724
Monk Liue4f0fdc2017-02-09 11:55:49 +08001725static int amdgpu_sriov_reinit_late(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001726{
1727 int i, r;
1728
1729 for (i = 0; i < adev->num_ip_blocks; i++) {
1730 if (!adev->ip_blocks[i].status.valid)
1731 continue;
1732
1733 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1734 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
1735 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH )
1736 continue;
1737
Monk Liue4f0fdc2017-02-09 11:55:49 +08001738 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08001739 if (r) {
1740 DRM_ERROR("resume of IP block <%s> failed %d\n",
1741 adev->ip_blocks[i].version->funcs->name, r);
1742 return r;
1743 }
1744 }
1745
1746 return 0;
1747}
1748
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001749static int amdgpu_resume(struct amdgpu_device *adev)
1750{
1751 int i, r;
1752
1753 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001754 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001755 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001756 r = adev->ip_blocks[i].version->funcs->resume(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001757 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001758 DRM_ERROR("resume of IP block <%s> failed %d\n",
1759 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001760 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001761 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001762 }
1763
1764 return 0;
1765}
1766
Monk Liu4e99a442016-03-31 13:26:59 +08001767static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
Andres Rodriguez048765a2016-06-11 02:51:32 -04001768{
Alex Deuchera5bde2f2016-09-23 16:23:41 -04001769 if (adev->is_atom_fw) {
1770 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
1771 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
1772 } else {
1773 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
1774 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
1775 }
Andres Rodriguez048765a2016-06-11 02:51:32 -04001776}
1777
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001778/**
1779 * amdgpu_device_init - initialize the driver
1780 *
1781 * @adev: amdgpu_device pointer
1782 * @pdev: drm dev pointer
1783 * @pdev: pci dev pointer
1784 * @flags: driver flags
1785 *
1786 * Initializes the driver info and hw (all asics).
1787 * Returns 0 for success or an error on failure.
1788 * Called at driver startup.
1789 */
1790int amdgpu_device_init(struct amdgpu_device *adev,
1791 struct drm_device *ddev,
1792 struct pci_dev *pdev,
1793 uint32_t flags)
1794{
1795 int r, i;
1796 bool runtime = false;
Marek Olšák95844d22016-08-17 23:49:27 +02001797 u32 max_MBps;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001798
1799 adev->shutdown = false;
1800 adev->dev = &pdev->dev;
1801 adev->ddev = ddev;
1802 adev->pdev = pdev;
1803 adev->flags = flags;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001804 adev->asic_type = flags & AMD_ASIC_MASK;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001805 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
1806 adev->mc.gtt_size = 512 * 1024 * 1024;
1807 adev->accel_working = false;
1808 adev->num_rings = 0;
1809 adev->mman.buffer_funcs = NULL;
1810 adev->mman.buffer_funcs_ring = NULL;
1811 adev->vm_manager.vm_pte_funcs = NULL;
Christian König2d55e452016-02-08 17:37:38 +01001812 adev->vm_manager.vm_pte_num_rings = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001813 adev->gart.gart_funcs = NULL;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001814 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001815
1816 adev->smc_rreg = &amdgpu_invalid_rreg;
1817 adev->smc_wreg = &amdgpu_invalid_wreg;
1818 adev->pcie_rreg = &amdgpu_invalid_rreg;
1819 adev->pcie_wreg = &amdgpu_invalid_wreg;
Huang Rui36b9a952016-08-31 13:23:25 +08001820 adev->pciep_rreg = &amdgpu_invalid_rreg;
1821 adev->pciep_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001822 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
1823 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
1824 adev->didt_rreg = &amdgpu_invalid_rreg;
1825 adev->didt_wreg = &amdgpu_invalid_wreg;
Rex Zhuccdbb202016-06-08 12:47:41 +08001826 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
1827 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001828 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
1829 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
1830
Rex Zhuccdbb202016-06-08 12:47:41 +08001831
Alex Deucher3e39ab92015-06-05 15:04:33 -04001832 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1833 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
1834 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001835
1836 /* mutex initialization are all done here so we
1837 * can recall function without having locking issues */
Christian König8d0a7ce2015-11-03 20:58:50 +01001838 mutex_init(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001839 atomic_set(&adev->irq.ih.lock, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001840 mutex_init(&adev->pm.mutex);
1841 mutex_init(&adev->gfx.gpu_clock_mutex);
1842 mutex_init(&adev->srbm_mutex);
1843 mutex_init(&adev->grbm_idx_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001844 mutex_init(&adev->mn_lock);
1845 hash_init(adev->mn_hash);
1846
1847 amdgpu_check_arguments(adev);
1848
1849 /* Registers mapping */
1850 /* TODO: block userspace mapping of io register */
1851 spin_lock_init(&adev->mmio_idx_lock);
1852 spin_lock_init(&adev->smc_idx_lock);
1853 spin_lock_init(&adev->pcie_idx_lock);
1854 spin_lock_init(&adev->uvd_ctx_idx_lock);
1855 spin_lock_init(&adev->didt_idx_lock);
Rex Zhuccdbb202016-06-08 12:47:41 +08001856 spin_lock_init(&adev->gc_cac_idx_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001857 spin_lock_init(&adev->audio_endpt_idx_lock);
Marek Olšák95844d22016-08-17 23:49:27 +02001858 spin_lock_init(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001859
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +08001860 INIT_LIST_HEAD(&adev->shadow_list);
1861 mutex_init(&adev->shadow_list_lock);
1862
Chunming Zhou5c1354b2016-08-30 16:13:10 +08001863 INIT_LIST_HEAD(&adev->gtt_list);
1864 spin_lock_init(&adev->gtt_list_lock);
1865
Ken Wangda69c1612016-01-21 19:08:55 +08001866 if (adev->asic_type >= CHIP_BONAIRE) {
1867 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
1868 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
1869 } else {
1870 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
1871 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
1872 }
Chunming Zhou5c1354b2016-08-30 16:13:10 +08001873
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001874 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
1875 if (adev->rmmio == NULL) {
1876 return -ENOMEM;
1877 }
1878 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
1879 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
1880
Ken Wangda69c1612016-01-21 19:08:55 +08001881 if (adev->asic_type >= CHIP_BONAIRE)
1882 /* doorbell bar mapping */
1883 amdgpu_doorbell_init(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001884
1885 /* io port mapping */
1886 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1887 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
1888 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
1889 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
1890 break;
1891 }
1892 }
1893 if (adev->rio_mem == NULL)
Amber Linb64a18c2017-01-04 08:06:58 -05001894 DRM_INFO("PCI I/O BAR is not found.\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001895
1896 /* early init functions */
1897 r = amdgpu_early_init(adev);
1898 if (r)
1899 return r;
1900
1901 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
1902 /* this will fail for cards that aren't VGA class devices, just
1903 * ignore it */
1904 vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
1905
1906 if (amdgpu_runtime_pm == 1)
1907 runtime = true;
Alex Deuchere9bef452016-04-25 13:12:18 -04001908 if (amdgpu_device_is_px(ddev))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001909 runtime = true;
1910 vga_switcheroo_register_client(adev->pdev, &amdgpu_switcheroo_ops, runtime);
1911 if (runtime)
1912 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
1913
1914 /* Read BIOS */
Alex Deucher83ba1262016-06-03 18:21:41 -04001915 if (!amdgpu_get_bios(adev)) {
1916 r = -EINVAL;
1917 goto failed;
1918 }
Nils Wallméniusf7e9e9f2016-12-14 21:52:45 +01001919
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001920 r = amdgpu_atombios_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001921 if (r) {
1922 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001923 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001924 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001925
Monk Liu4e99a442016-03-31 13:26:59 +08001926 /* detect if we are with an SRIOV vbios */
1927 amdgpu_device_detect_sriov_bios(adev);
Andres Rodriguez048765a2016-06-11 02:51:32 -04001928
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001929 /* Post card if necessary */
Monk Liubec86372016-09-14 19:38:08 +08001930 if (amdgpu_vpost_needed(adev)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001931 if (!adev->bios) {
Monk Liubec86372016-09-14 19:38:08 +08001932 dev_err(adev->dev, "no vBIOS found\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001933 r = -EINVAL;
1934 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001935 }
Monk Liubec86372016-09-14 19:38:08 +08001936 DRM_INFO("GPU posting now...\n");
Monk Liu4e99a442016-03-31 13:26:59 +08001937 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
1938 if (r) {
1939 dev_err(adev->dev, "gpu post error!\n");
1940 goto failed;
1941 }
1942 } else {
1943 DRM_INFO("GPU post is not needed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001944 }
1945
Alex Deuchera5bde2f2016-09-23 16:23:41 -04001946 if (!adev->is_atom_fw) {
1947 /* Initialize clocks */
1948 r = amdgpu_atombios_get_clock_info(adev);
1949 if (r) {
1950 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
1951 return r;
1952 }
1953 /* init i2c buses */
1954 amdgpu_atombios_i2c_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001955 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001956
1957 /* Fence driver */
1958 r = amdgpu_fence_driver_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001959 if (r) {
1960 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001961 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001962 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001963
1964 /* init the mode config */
1965 drm_mode_config_init(adev->ddev);
1966
1967 r = amdgpu_init(adev);
1968 if (r) {
Alex Deucher2c1a2782015-12-07 17:02:53 -05001969 dev_err(adev->dev, "amdgpu_init failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001970 amdgpu_fini(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04001971 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001972 }
1973
1974 adev->accel_working = true;
1975
Marek Olšák95844d22016-08-17 23:49:27 +02001976 /* Initialize the buffer migration limit. */
1977 if (amdgpu_moverate >= 0)
1978 max_MBps = amdgpu_moverate;
1979 else
1980 max_MBps = 8; /* Allow 8 MB/s. */
1981 /* Get a log2 for easy divisions. */
1982 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
1983
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001984 r = amdgpu_ib_pool_init(adev);
1985 if (r) {
1986 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
Alex Deucher83ba1262016-06-03 18:21:41 -04001987 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001988 }
1989
1990 r = amdgpu_ib_ring_tests(adev);
1991 if (r)
1992 DRM_ERROR("ib ring test failed (%d).\n", r);
1993
Monk Liu9bc92b92017-02-08 17:38:13 +08001994 amdgpu_fbdev_init(adev);
1995
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001996 r = amdgpu_gem_debugfs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08001997 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001998 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001999
2000 r = amdgpu_debugfs_regs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002001 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002002 DRM_ERROR("registering register debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002003
Huang Rui50ab2532016-06-12 15:51:09 +08002004 r = amdgpu_debugfs_firmware_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002005 if (r)
Huang Rui50ab2532016-06-12 15:51:09 +08002006 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
Huang Rui50ab2532016-06-12 15:51:09 +08002007
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002008 if ((amdgpu_testing & 1)) {
2009 if (adev->accel_working)
2010 amdgpu_test_moves(adev);
2011 else
2012 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
2013 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002014 if (amdgpu_benchmarking) {
2015 if (adev->accel_working)
2016 amdgpu_benchmark(adev, amdgpu_benchmarking);
2017 else
2018 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
2019 }
2020
2021 /* enable clockgating, etc. after ib tests, etc. since some blocks require
2022 * explicit gating rather than handling it automatically.
2023 */
2024 r = amdgpu_late_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002025 if (r) {
2026 dev_err(adev->dev, "amdgpu_late_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04002027 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002028 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002029
2030 return 0;
Alex Deucher83ba1262016-06-03 18:21:41 -04002031
2032failed:
2033 if (runtime)
2034 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2035 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002036}
2037
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002038/**
2039 * amdgpu_device_fini - tear down the driver
2040 *
2041 * @adev: amdgpu_device pointer
2042 *
2043 * Tear down the driver info (all asics).
2044 * Called at driver shutdown.
2045 */
2046void amdgpu_device_fini(struct amdgpu_device *adev)
2047{
2048 int r;
2049
2050 DRM_INFO("amdgpu: finishing device.\n");
2051 adev->shutdown = true;
Grazvydas Ignotasa951ed82016-09-25 23:34:48 +03002052 drm_crtc_force_disable_all(adev->ddev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002053 /* evict vram memory */
2054 amdgpu_bo_evict_vram(adev);
2055 amdgpu_ib_pool_fini(adev);
2056 amdgpu_fence_driver_fini(adev);
2057 amdgpu_fbdev_fini(adev);
2058 r = amdgpu_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002059 adev->accel_working = false;
2060 /* free i2c buses */
2061 amdgpu_i2c_fini(adev);
2062 amdgpu_atombios_fini(adev);
2063 kfree(adev->bios);
2064 adev->bios = NULL;
2065 vga_switcheroo_unregister_client(adev->pdev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002066 if (adev->flags & AMD_IS_PX)
2067 vga_switcheroo_fini_domain_pm_ops(adev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002068 vga_client_register(adev->pdev, NULL, NULL, NULL);
2069 if (adev->rio_mem)
2070 pci_iounmap(adev->pdev, adev->rio_mem);
2071 adev->rio_mem = NULL;
2072 iounmap(adev->rmmio);
2073 adev->rmmio = NULL;
Ken Wangda69c1612016-01-21 19:08:55 +08002074 if (adev->asic_type >= CHIP_BONAIRE)
2075 amdgpu_doorbell_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002076 amdgpu_debugfs_regs_cleanup(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002077}
2078
2079
2080/*
2081 * Suspend & resume.
2082 */
2083/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002084 * amdgpu_device_suspend - initiate device suspend
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002085 *
2086 * @pdev: drm dev pointer
2087 * @state: suspend state
2088 *
2089 * Puts the hw in the suspend state (all asics).
2090 * Returns 0 for success or an error on failure.
2091 * Called at driver suspend.
2092 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002093int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002094{
2095 struct amdgpu_device *adev;
2096 struct drm_crtc *crtc;
2097 struct drm_connector *connector;
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002098 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002099
2100 if (dev == NULL || dev->dev_private == NULL) {
2101 return -ENODEV;
2102 }
2103
2104 adev = dev->dev_private;
2105
2106 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2107 return 0;
2108
2109 drm_kms_helper_poll_disable(dev);
2110
2111 /* turn off display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002112 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002113 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2114 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
2115 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002116 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002117
Alex Deucher756e6882015-10-08 00:03:36 -04002118 /* unpin the front buffers and cursors */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002119 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Alex Deucher756e6882015-10-08 00:03:36 -04002120 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002121 struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
2122 struct amdgpu_bo *robj;
2123
Alex Deucher756e6882015-10-08 00:03:36 -04002124 if (amdgpu_crtc->cursor_bo) {
2125 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2126 r = amdgpu_bo_reserve(aobj, false);
2127 if (r == 0) {
2128 amdgpu_bo_unpin(aobj);
2129 amdgpu_bo_unreserve(aobj);
2130 }
2131 }
2132
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002133 if (rfb == NULL || rfb->obj == NULL) {
2134 continue;
2135 }
2136 robj = gem_to_amdgpu_bo(rfb->obj);
2137 /* don't unpin kernel fb objects */
2138 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
2139 r = amdgpu_bo_reserve(robj, false);
2140 if (r == 0) {
2141 amdgpu_bo_unpin(robj);
2142 amdgpu_bo_unreserve(robj);
2143 }
2144 }
2145 }
2146 /* evict vram memory */
2147 amdgpu_bo_evict_vram(adev);
2148
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002149 amdgpu_fence_driver_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002150
2151 r = amdgpu_suspend(adev);
2152
Alex Deuchera0a71e42016-10-10 12:41:36 -04002153 /* evict remaining vram memory
2154 * This second call to evict vram is to evict the gart page table
2155 * using the CPU.
2156 */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002157 amdgpu_bo_evict_vram(adev);
2158
Alex Deuchere695e772016-10-19 14:40:58 -04002159 amdgpu_atombios_scratch_regs_save(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002160 pci_save_state(dev->pdev);
2161 if (suspend) {
2162 /* Shut down the device */
2163 pci_disable_device(dev->pdev);
2164 pci_set_power_state(dev->pdev, PCI_D3hot);
jimqu74b0b152016-09-07 17:09:12 +08002165 } else {
2166 r = amdgpu_asic_reset(adev);
2167 if (r)
2168 DRM_ERROR("amdgpu asic reset failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002169 }
2170
2171 if (fbcon) {
2172 console_lock();
2173 amdgpu_fbdev_set_suspend(adev, 1);
2174 console_unlock();
2175 }
2176 return 0;
2177}
2178
2179/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002180 * amdgpu_device_resume - initiate device resume
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002181 *
2182 * @pdev: drm dev pointer
2183 *
2184 * Bring the hw back to operating state (all asics).
2185 * Returns 0 for success or an error on failure.
2186 * Called at driver resume.
2187 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002188int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002189{
2190 struct drm_connector *connector;
2191 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher756e6882015-10-08 00:03:36 -04002192 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002193 int r;
2194
2195 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2196 return 0;
2197
jimqu74b0b152016-09-07 17:09:12 +08002198 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002199 console_lock();
jimqu74b0b152016-09-07 17:09:12 +08002200
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002201 if (resume) {
2202 pci_set_power_state(dev->pdev, PCI_D0);
2203 pci_restore_state(dev->pdev);
jimqu74b0b152016-09-07 17:09:12 +08002204 r = pci_enable_device(dev->pdev);
2205 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002206 if (fbcon)
2207 console_unlock();
jimqu74b0b152016-09-07 17:09:12 +08002208 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002209 }
2210 }
Alex Deuchere695e772016-10-19 14:40:58 -04002211 amdgpu_atombios_scratch_regs_restore(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002212
2213 /* post card */
Jim Quc836fec2017-02-10 15:59:59 +08002214 if (amdgpu_need_post(adev)) {
jimqu74b0b152016-09-07 17:09:12 +08002215 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2216 if (r)
2217 DRM_ERROR("amdgpu asic init failed\n");
2218 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002219
2220 r = amdgpu_resume(adev);
Flora Cuica198522016-02-04 15:10:08 +08002221 if (r)
2222 DRM_ERROR("amdgpu_resume failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002223
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002224 amdgpu_fence_driver_resume(adev);
2225
Flora Cuica198522016-02-04 15:10:08 +08002226 if (resume) {
2227 r = amdgpu_ib_ring_tests(adev);
2228 if (r)
2229 DRM_ERROR("ib ring test failed (%d).\n", r);
2230 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002231
2232 r = amdgpu_late_init(adev);
Jim Quc085bd52017-03-01 15:53:29 +08002233 if (r) {
2234 if (fbcon)
2235 console_unlock();
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002236 return r;
Jim Quc085bd52017-03-01 15:53:29 +08002237 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002238
Alex Deucher756e6882015-10-08 00:03:36 -04002239 /* pin cursors */
2240 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2241 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2242
2243 if (amdgpu_crtc->cursor_bo) {
2244 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2245 r = amdgpu_bo_reserve(aobj, false);
2246 if (r == 0) {
2247 r = amdgpu_bo_pin(aobj,
2248 AMDGPU_GEM_DOMAIN_VRAM,
2249 &amdgpu_crtc->cursor_addr);
2250 if (r != 0)
2251 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
2252 amdgpu_bo_unreserve(aobj);
2253 }
2254 }
2255 }
2256
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002257 /* blat the mode back in */
2258 if (fbcon) {
2259 drm_helper_resume_force_mode(dev);
2260 /* turn on display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002261 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002262 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2263 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
2264 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002265 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002266 }
2267
2268 drm_kms_helper_poll_enable(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002269
2270 /*
2271 * Most of the connector probing functions try to acquire runtime pm
2272 * refs to ensure that the GPU is powered on when connector polling is
2273 * performed. Since we're calling this from a runtime PM callback,
2274 * trying to acquire rpm refs will cause us to deadlock.
2275 *
2276 * Since we're guaranteed to be holding the rpm lock, it's safe to
2277 * temporarily disable the rpm helpers so this doesn't deadlock us.
2278 */
2279#ifdef CONFIG_PM
2280 dev->dev->power.disable_depth++;
2281#endif
Alex Deucher54fb2a52015-11-24 14:30:56 -05002282 drm_helper_hpd_irq_event(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002283#ifdef CONFIG_PM
2284 dev->dev->power.disable_depth--;
2285#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002286
2287 if (fbcon) {
2288 amdgpu_fbdev_set_suspend(adev, 0);
2289 console_unlock();
2290 }
2291
2292 return 0;
2293}
2294
Chunming Zhou63fbf422016-07-15 11:19:20 +08002295static bool amdgpu_check_soft_reset(struct amdgpu_device *adev)
2296{
2297 int i;
2298 bool asic_hang = false;
2299
2300 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002301 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou63fbf422016-07-15 11:19:20 +08002302 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002303 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
2304 adev->ip_blocks[i].status.hang =
2305 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
2306 if (adev->ip_blocks[i].status.hang) {
2307 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
Chunming Zhou63fbf422016-07-15 11:19:20 +08002308 asic_hang = true;
2309 }
2310 }
2311 return asic_hang;
2312}
2313
Baoyou Xie4d446652016-09-18 22:09:35 +08002314static int amdgpu_pre_soft_reset(struct amdgpu_device *adev)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002315{
2316 int i, r = 0;
2317
2318 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002319 if (!adev->ip_blocks[i].status.valid)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002320 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002321 if (adev->ip_blocks[i].status.hang &&
2322 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
2323 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
Chunming Zhoud31a5012016-07-18 10:04:34 +08002324 if (r)
2325 return r;
2326 }
2327 }
2328
2329 return 0;
2330}
2331
Chunming Zhou35d782f2016-07-15 15:57:13 +08002332static bool amdgpu_need_full_reset(struct amdgpu_device *adev)
2333{
Alex Deucherda146d32016-10-13 16:07:03 -04002334 int i;
2335
2336 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002337 if (!adev->ip_blocks[i].status.valid)
Alex Deucherda146d32016-10-13 16:07:03 -04002338 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002339 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
2340 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
2341 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
2342 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)) {
2343 if (adev->ip_blocks[i].status.hang) {
Alex Deucherda146d32016-10-13 16:07:03 -04002344 DRM_INFO("Some block need full reset!\n");
2345 return true;
2346 }
2347 }
Chunming Zhou35d782f2016-07-15 15:57:13 +08002348 }
2349 return false;
2350}
2351
2352static int amdgpu_soft_reset(struct amdgpu_device *adev)
2353{
2354 int i, r = 0;
2355
2356 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002357 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002358 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002359 if (adev->ip_blocks[i].status.hang &&
2360 adev->ip_blocks[i].version->funcs->soft_reset) {
2361 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002362 if (r)
2363 return r;
2364 }
2365 }
2366
2367 return 0;
2368}
2369
2370static int amdgpu_post_soft_reset(struct amdgpu_device *adev)
2371{
2372 int i, r = 0;
2373
2374 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002375 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002376 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002377 if (adev->ip_blocks[i].status.hang &&
2378 adev->ip_blocks[i].version->funcs->post_soft_reset)
2379 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002380 if (r)
2381 return r;
2382 }
2383
2384 return 0;
2385}
2386
Chunming Zhou3ad81f12016-08-05 17:30:17 +08002387bool amdgpu_need_backup(struct amdgpu_device *adev)
2388{
2389 if (adev->flags & AMD_IS_APU)
2390 return false;
2391
2392 return amdgpu_lockup_timeout > 0 ? true : false;
2393}
2394
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002395static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
2396 struct amdgpu_ring *ring,
2397 struct amdgpu_bo *bo,
Chris Wilsonf54d1862016-10-25 13:00:45 +01002398 struct dma_fence **fence)
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002399{
2400 uint32_t domain;
2401 int r;
2402
2403 if (!bo->shadow)
2404 return 0;
2405
2406 r = amdgpu_bo_reserve(bo, false);
2407 if (r)
2408 return r;
2409 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
2410 /* if bo has been evicted, then no need to recover */
2411 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
2412 r = amdgpu_bo_restore_from_shadow(adev, ring, bo,
2413 NULL, fence, true);
2414 if (r) {
2415 DRM_ERROR("recover page table failed!\n");
2416 goto err;
2417 }
2418 }
2419err:
2420 amdgpu_bo_unreserve(bo);
2421 return r;
2422}
2423
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002424/**
Monk Liua90ad3c2017-01-23 14:22:08 +08002425 * amdgpu_sriov_gpu_reset - reset the asic
2426 *
2427 * @adev: amdgpu device pointer
2428 * @voluntary: if this reset is requested by guest.
2429 * (true means by guest and false means by HYPERVISOR )
2430 *
2431 * Attempt the reset the GPU if it has hung (all asics).
2432 * for SRIOV case.
2433 * Returns 0 for success or an error on failure.
2434 */
2435int amdgpu_sriov_gpu_reset(struct amdgpu_device *adev, bool voluntary)
2436{
2437 int i, r = 0;
2438 int resched;
2439 struct amdgpu_bo *bo, *tmp;
2440 struct amdgpu_ring *ring;
2441 struct dma_fence *fence = NULL, *next = NULL;
2442
Monk Liu147b5982017-01-25 15:48:01 +08002443 mutex_lock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002444 atomic_inc(&adev->gpu_reset_counter);
Monk Liu1fb37a32017-01-26 15:36:37 +08002445 adev->gfx.in_reset = true;
Monk Liua90ad3c2017-01-23 14:22:08 +08002446
2447 /* block TTM */
2448 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2449
2450 /* block scheduler */
2451 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2452 ring = adev->rings[i];
2453
2454 if (!ring || !ring->sched.thread)
2455 continue;
2456
2457 kthread_park(ring->sched.thread);
2458 amd_sched_hw_job_reset(&ring->sched);
2459 }
2460
2461 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2462 amdgpu_fence_driver_force_completion(adev);
2463
2464 /* request to take full control of GPU before re-initialization */
2465 if (voluntary)
2466 amdgpu_virt_reset_gpu(adev);
2467 else
2468 amdgpu_virt_request_full_gpu(adev, true);
2469
2470
2471 /* Resume IP prior to SMC */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002472 amdgpu_sriov_reinit_early(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002473
2474 /* we need recover gart prior to run SMC/CP/SDMA resume */
2475 amdgpu_ttm_recover_gart(adev);
2476
2477 /* now we are okay to resume SMC/CP/SDMA */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002478 amdgpu_sriov_reinit_late(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002479
2480 amdgpu_irq_gpu_reset_resume_helper(adev);
2481
2482 if (amdgpu_ib_ring_tests(adev))
2483 dev_err(adev->dev, "[GPU_RESET] ib ring test failed (%d).\n", r);
2484
2485 /* release full control of GPU after ib test */
2486 amdgpu_virt_release_full_gpu(adev, true);
2487
2488 DRM_INFO("recover vram bo from shadow\n");
2489
2490 ring = adev->mman.buffer_funcs_ring;
2491 mutex_lock(&adev->shadow_list_lock);
2492 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
2493 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2494 if (fence) {
2495 r = dma_fence_wait(fence, false);
2496 if (r) {
2497 WARN(r, "recovery from shadow isn't completed\n");
2498 break;
2499 }
2500 }
2501
2502 dma_fence_put(fence);
2503 fence = next;
2504 }
2505 mutex_unlock(&adev->shadow_list_lock);
2506
2507 if (fence) {
2508 r = dma_fence_wait(fence, false);
2509 if (r)
2510 WARN(r, "recovery from shadow isn't completed\n");
2511 }
2512 dma_fence_put(fence);
2513
2514 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2515 struct amdgpu_ring *ring = adev->rings[i];
2516 if (!ring || !ring->sched.thread)
2517 continue;
2518
2519 amd_sched_job_recovery(&ring->sched);
2520 kthread_unpark(ring->sched.thread);
2521 }
2522
2523 drm_helper_resume_force_mode(adev->ddev);
2524 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
2525 if (r) {
2526 /* bad news, how to tell it to userspace ? */
2527 dev_info(adev->dev, "GPU reset failed\n");
2528 }
2529
Monk Liu1fb37a32017-01-26 15:36:37 +08002530 adev->gfx.in_reset = false;
Monk Liu147b5982017-01-25 15:48:01 +08002531 mutex_unlock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002532 return r;
2533}
2534
2535/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002536 * amdgpu_gpu_reset - reset the asic
2537 *
2538 * @adev: amdgpu device pointer
2539 *
2540 * Attempt the reset the GPU if it has hung (all asics).
2541 * Returns 0 for success or an error on failure.
2542 */
2543int amdgpu_gpu_reset(struct amdgpu_device *adev)
2544{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002545 int i, r;
2546 int resched;
Chunming Zhou35d782f2016-07-15 15:57:13 +08002547 bool need_full_reset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002548
Xiangliang Yufb140b22016-12-17 22:48:57 +08002549 if (amdgpu_sriov_vf(adev))
Monk Liua90ad3c2017-01-23 14:22:08 +08002550 return amdgpu_sriov_gpu_reset(adev, true);
Xiangliang Yufb140b22016-12-17 22:48:57 +08002551
Chunming Zhou63fbf422016-07-15 11:19:20 +08002552 if (!amdgpu_check_soft_reset(adev)) {
2553 DRM_INFO("No hardware hang detected. Did some blocks stall?\n");
2554 return 0;
2555 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002556
Marek Olšákd94aed52015-05-05 21:13:49 +02002557 atomic_inc(&adev->gpu_reset_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002558
Chunming Zhoua3c47d62016-06-30 16:44:41 +08002559 /* block TTM */
2560 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2561
Chunming Zhou0875dc92016-06-12 15:41:58 +08002562 /* block scheduler */
2563 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2564 struct amdgpu_ring *ring = adev->rings[i];
2565
2566 if (!ring)
2567 continue;
2568 kthread_park(ring->sched.thread);
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002569 amd_sched_hw_job_reset(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002570 }
Chunming Zhou2200eda2016-06-30 16:53:02 +08002571 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2572 amdgpu_fence_driver_force_completion(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002573
Chunming Zhou35d782f2016-07-15 15:57:13 +08002574 need_full_reset = amdgpu_need_full_reset(adev);
2575
2576 if (!need_full_reset) {
2577 amdgpu_pre_soft_reset(adev);
2578 r = amdgpu_soft_reset(adev);
2579 amdgpu_post_soft_reset(adev);
2580 if (r || amdgpu_check_soft_reset(adev)) {
2581 DRM_INFO("soft reset failed, will fallback to full reset!\n");
2582 need_full_reset = true;
2583 }
2584 }
2585
2586 if (need_full_reset) {
Chunming Zhou35d782f2016-07-15 15:57:13 +08002587 r = amdgpu_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002588
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002589retry:
Chunming Zhou35d782f2016-07-15 15:57:13 +08002590 /* Disable fb access */
2591 if (adev->mode_info.num_crtc) {
2592 struct amdgpu_mode_mc_save save;
2593 amdgpu_display_stop_mc_access(adev, &save);
2594 amdgpu_wait_for_idle(adev, AMD_IP_BLOCK_TYPE_GMC);
2595 }
Alex Deuchere695e772016-10-19 14:40:58 -04002596 amdgpu_atombios_scratch_regs_save(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002597 r = amdgpu_asic_reset(adev);
Alex Deuchere695e772016-10-19 14:40:58 -04002598 amdgpu_atombios_scratch_regs_restore(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002599 /* post card */
2600 amdgpu_atom_asic_init(adev->mode_info.atom_context);
Alex Deucherbfa99262016-01-15 11:59:48 -05002601
Chunming Zhou35d782f2016-07-15 15:57:13 +08002602 if (!r) {
2603 dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
2604 r = amdgpu_resume(adev);
2605 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002606 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002607 if (!r) {
Chunming Zhoue72cfd52016-07-27 13:15:20 +08002608 amdgpu_irq_gpu_reset_resume_helper(adev);
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002609 if (need_full_reset && amdgpu_need_backup(adev)) {
2610 r = amdgpu_ttm_recover_gart(adev);
2611 if (r)
2612 DRM_ERROR("gart recovery failed!!!\n");
2613 }
Chunming Zhou1f465082016-06-30 15:02:26 +08002614 r = amdgpu_ib_ring_tests(adev);
2615 if (r) {
2616 dev_err(adev->dev, "ib ring test failed (%d).\n", r);
Chunming Zhou40019dc2016-06-29 16:01:49 +08002617 r = amdgpu_suspend(adev);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002618 need_full_reset = true;
Chunming Zhou40019dc2016-06-29 16:01:49 +08002619 goto retry;
Chunming Zhou1f465082016-06-30 15:02:26 +08002620 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002621 /**
2622 * recovery vm page tables, since we cannot depend on VRAM is
2623 * consistent after gpu full reset.
2624 */
2625 if (need_full_reset && amdgpu_need_backup(adev)) {
2626 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
2627 struct amdgpu_bo *bo, *tmp;
Chris Wilsonf54d1862016-10-25 13:00:45 +01002628 struct dma_fence *fence = NULL, *next = NULL;
Chunming Zhou1f465082016-06-30 15:02:26 +08002629
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002630 DRM_INFO("recover vram bo from shadow\n");
2631 mutex_lock(&adev->shadow_list_lock);
2632 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
2633 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2634 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002635 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002636 if (r) {
Monk Liu1d7b17b2017-01-22 18:52:56 +08002637 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002638 break;
2639 }
2640 }
2641
Chris Wilsonf54d1862016-10-25 13:00:45 +01002642 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002643 fence = next;
2644 }
2645 mutex_unlock(&adev->shadow_list_lock);
2646 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002647 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002648 if (r)
Monk Liu1d7b17b2017-01-22 18:52:56 +08002649 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002650 }
Chris Wilsonf54d1862016-10-25 13:00:45 +01002651 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002652 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002653 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2654 struct amdgpu_ring *ring = adev->rings[i];
2655 if (!ring)
2656 continue;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002657
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002658 amd_sched_job_recovery(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002659 kthread_unpark(ring->sched.thread);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002660 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002661 } else {
Chunming Zhou2200eda2016-06-30 16:53:02 +08002662 dev_err(adev->dev, "asic resume failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002663 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
Chunming Zhou0875dc92016-06-12 15:41:58 +08002664 if (adev->rings[i]) {
2665 kthread_unpark(adev->rings[i]->sched.thread);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002666 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002667 }
2668 }
2669
2670 drm_helper_resume_force_mode(adev->ddev);
2671
2672 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
2673 if (r) {
2674 /* bad news, how to tell it to userspace ? */
2675 dev_info(adev->dev, "GPU reset failed\n");
2676 }
2677
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002678 return r;
2679}
2680
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002681void amdgpu_get_pcie_info(struct amdgpu_device *adev)
2682{
2683 u32 mask;
2684 int ret;
2685
Alex Deuchercd474ba2016-02-04 10:21:23 -05002686 if (amdgpu_pcie_gen_cap)
2687 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
2688
2689 if (amdgpu_pcie_lane_cap)
2690 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
2691
2692 /* covers APUs as well */
2693 if (pci_is_root_bus(adev->pdev->bus)) {
2694 if (adev->pm.pcie_gen_mask == 0)
2695 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2696 if (adev->pm.pcie_mlw_mask == 0)
2697 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002698 return;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002699 }
Alex Deuchercd474ba2016-02-04 10:21:23 -05002700
2701 if (adev->pm.pcie_gen_mask == 0) {
2702 ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
2703 if (!ret) {
2704 adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
2705 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
2706 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
2707
2708 if (mask & DRM_PCIE_SPEED_25)
2709 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
2710 if (mask & DRM_PCIE_SPEED_50)
2711 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
2712 if (mask & DRM_PCIE_SPEED_80)
2713 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
2714 } else {
2715 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2716 }
2717 }
2718 if (adev->pm.pcie_mlw_mask == 0) {
2719 ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
2720 if (!ret) {
2721 switch (mask) {
2722 case 32:
2723 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
2724 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2725 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2726 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2727 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2728 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2729 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2730 break;
2731 case 16:
2732 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2733 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2734 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2735 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2736 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2737 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2738 break;
2739 case 12:
2740 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2741 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2742 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2743 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2744 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2745 break;
2746 case 8:
2747 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2748 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2749 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2750 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2751 break;
2752 case 4:
2753 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2754 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2755 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2756 break;
2757 case 2:
2758 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2759 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2760 break;
2761 case 1:
2762 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
2763 break;
2764 default:
2765 break;
2766 }
2767 } else {
2768 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002769 }
2770 }
2771}
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002772
2773/*
2774 * Debugfs
2775 */
2776int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04002777 const struct drm_info_list *files,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002778 unsigned nfiles)
2779{
2780 unsigned i;
2781
2782 for (i = 0; i < adev->debugfs_count; i++) {
2783 if (adev->debugfs[i].files == files) {
2784 /* Already registered */
2785 return 0;
2786 }
2787 }
2788
2789 i = adev->debugfs_count + 1;
2790 if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
2791 DRM_ERROR("Reached maximum number of debugfs components.\n");
2792 DRM_ERROR("Report so we increase "
2793 "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
2794 return -EINVAL;
2795 }
2796 adev->debugfs[adev->debugfs_count].files = files;
2797 adev->debugfs[adev->debugfs_count].num_files = nfiles;
2798 adev->debugfs_count = i;
2799#if defined(CONFIG_DEBUG_FS)
2800 drm_debugfs_create_files(files, nfiles,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002801 adev->ddev->primary->debugfs_root,
2802 adev->ddev->primary);
2803#endif
2804 return 0;
2805}
2806
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002807#if defined(CONFIG_DEBUG_FS)
2808
2809static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
2810 size_t size, loff_t *pos)
2811{
Al Viro45063092016-12-04 18:24:56 -05002812 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002813 ssize_t result = 0;
2814 int r;
Tom St Denisbd122672016-07-28 09:39:22 -04002815 bool pm_pg_lock, use_bank;
Tom St Denis566281592016-06-27 11:55:07 -04002816 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002817
2818 if (size & 0x3 || *pos & 0x3)
2819 return -EINVAL;
2820
Tom St Denisbd122672016-07-28 09:39:22 -04002821 /* are we reading registers for which a PG lock is necessary? */
2822 pm_pg_lock = (*pos >> 23) & 1;
2823
Tom St Denis566281592016-06-27 11:55:07 -04002824 if (*pos & (1ULL << 62)) {
2825 se_bank = (*pos >> 24) & 0x3FF;
2826 sh_bank = (*pos >> 34) & 0x3FF;
2827 instance_bank = (*pos >> 44) & 0x3FF;
Tom St Denis32977f92016-10-09 07:41:26 -04002828
2829 if (se_bank == 0x3FF)
2830 se_bank = 0xFFFFFFFF;
2831 if (sh_bank == 0x3FF)
2832 sh_bank = 0xFFFFFFFF;
2833 if (instance_bank == 0x3FF)
2834 instance_bank = 0xFFFFFFFF;
Tom St Denis566281592016-06-27 11:55:07 -04002835 use_bank = 1;
Tom St Denis566281592016-06-27 11:55:07 -04002836 } else {
2837 use_bank = 0;
2838 }
2839
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04002840 *pos &= (1UL << 22) - 1;
Tom St Denisbd122672016-07-28 09:39:22 -04002841
Tom St Denis566281592016-06-27 11:55:07 -04002842 if (use_bank) {
Tom St Denis32977f92016-10-09 07:41:26 -04002843 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
2844 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
Tom St Denis566281592016-06-27 11:55:07 -04002845 return -EINVAL;
2846 mutex_lock(&adev->grbm_idx_mutex);
2847 amdgpu_gfx_select_se_sh(adev, se_bank,
2848 sh_bank, instance_bank);
2849 }
2850
Tom St Denisbd122672016-07-28 09:39:22 -04002851 if (pm_pg_lock)
2852 mutex_lock(&adev->pm.mutex);
2853
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002854 while (size) {
2855 uint32_t value;
2856
2857 if (*pos > adev->rmmio_size)
Tom St Denis566281592016-06-27 11:55:07 -04002858 goto end;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002859
2860 value = RREG32(*pos >> 2);
2861 r = put_user(value, (uint32_t *)buf);
Tom St Denis566281592016-06-27 11:55:07 -04002862 if (r) {
2863 result = r;
2864 goto end;
2865 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002866
2867 result += 4;
2868 buf += 4;
2869 *pos += 4;
2870 size -= 4;
2871 }
2872
Tom St Denis566281592016-06-27 11:55:07 -04002873end:
2874 if (use_bank) {
2875 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
2876 mutex_unlock(&adev->grbm_idx_mutex);
2877 }
2878
Tom St Denisbd122672016-07-28 09:39:22 -04002879 if (pm_pg_lock)
2880 mutex_unlock(&adev->pm.mutex);
2881
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002882 return result;
2883}
2884
2885static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
2886 size_t size, loff_t *pos)
2887{
Al Viro45063092016-12-04 18:24:56 -05002888 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002889 ssize_t result = 0;
2890 int r;
Tom St Denis394fdde2016-10-10 07:31:23 -04002891 bool pm_pg_lock, use_bank;
2892 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002893
2894 if (size & 0x3 || *pos & 0x3)
2895 return -EINVAL;
2896
Tom St Denis394fdde2016-10-10 07:31:23 -04002897 /* are we reading registers for which a PG lock is necessary? */
2898 pm_pg_lock = (*pos >> 23) & 1;
2899
2900 if (*pos & (1ULL << 62)) {
2901 se_bank = (*pos >> 24) & 0x3FF;
2902 sh_bank = (*pos >> 34) & 0x3FF;
2903 instance_bank = (*pos >> 44) & 0x3FF;
2904
2905 if (se_bank == 0x3FF)
2906 se_bank = 0xFFFFFFFF;
2907 if (sh_bank == 0x3FF)
2908 sh_bank = 0xFFFFFFFF;
2909 if (instance_bank == 0x3FF)
2910 instance_bank = 0xFFFFFFFF;
2911 use_bank = 1;
2912 } else {
2913 use_bank = 0;
2914 }
2915
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04002916 *pos &= (1UL << 22) - 1;
Tom St Denis394fdde2016-10-10 07:31:23 -04002917
2918 if (use_bank) {
2919 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
2920 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
2921 return -EINVAL;
2922 mutex_lock(&adev->grbm_idx_mutex);
2923 amdgpu_gfx_select_se_sh(adev, se_bank,
2924 sh_bank, instance_bank);
2925 }
2926
2927 if (pm_pg_lock)
2928 mutex_lock(&adev->pm.mutex);
2929
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002930 while (size) {
2931 uint32_t value;
2932
2933 if (*pos > adev->rmmio_size)
2934 return result;
2935
2936 r = get_user(value, (uint32_t *)buf);
2937 if (r)
2938 return r;
2939
2940 WREG32(*pos >> 2, value);
2941
2942 result += 4;
2943 buf += 4;
2944 *pos += 4;
2945 size -= 4;
2946 }
2947
Tom St Denis394fdde2016-10-10 07:31:23 -04002948 if (use_bank) {
2949 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
2950 mutex_unlock(&adev->grbm_idx_mutex);
2951 }
2952
2953 if (pm_pg_lock)
2954 mutex_unlock(&adev->pm.mutex);
2955
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002956 return result;
2957}
2958
Tom St Denisadcec282016-04-15 13:08:44 -04002959static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
2960 size_t size, loff_t *pos)
2961{
Al Viro45063092016-12-04 18:24:56 -05002962 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04002963 ssize_t result = 0;
2964 int r;
2965
2966 if (size & 0x3 || *pos & 0x3)
2967 return -EINVAL;
2968
2969 while (size) {
2970 uint32_t value;
2971
2972 value = RREG32_PCIE(*pos >> 2);
2973 r = put_user(value, (uint32_t *)buf);
2974 if (r)
2975 return r;
2976
2977 result += 4;
2978 buf += 4;
2979 *pos += 4;
2980 size -= 4;
2981 }
2982
2983 return result;
2984}
2985
2986static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
2987 size_t size, loff_t *pos)
2988{
Al Viro45063092016-12-04 18:24:56 -05002989 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04002990 ssize_t result = 0;
2991 int r;
2992
2993 if (size & 0x3 || *pos & 0x3)
2994 return -EINVAL;
2995
2996 while (size) {
2997 uint32_t value;
2998
2999 r = get_user(value, (uint32_t *)buf);
3000 if (r)
3001 return r;
3002
3003 WREG32_PCIE(*pos >> 2, value);
3004
3005 result += 4;
3006 buf += 4;
3007 *pos += 4;
3008 size -= 4;
3009 }
3010
3011 return result;
3012}
3013
3014static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
3015 size_t size, loff_t *pos)
3016{
Al Viro45063092016-12-04 18:24:56 -05003017 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003018 ssize_t result = 0;
3019 int r;
3020
3021 if (size & 0x3 || *pos & 0x3)
3022 return -EINVAL;
3023
3024 while (size) {
3025 uint32_t value;
3026
3027 value = RREG32_DIDT(*pos >> 2);
3028 r = put_user(value, (uint32_t *)buf);
3029 if (r)
3030 return r;
3031
3032 result += 4;
3033 buf += 4;
3034 *pos += 4;
3035 size -= 4;
3036 }
3037
3038 return result;
3039}
3040
3041static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
3042 size_t size, loff_t *pos)
3043{
Al Viro45063092016-12-04 18:24:56 -05003044 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003045 ssize_t result = 0;
3046 int r;
3047
3048 if (size & 0x3 || *pos & 0x3)
3049 return -EINVAL;
3050
3051 while (size) {
3052 uint32_t value;
3053
3054 r = get_user(value, (uint32_t *)buf);
3055 if (r)
3056 return r;
3057
3058 WREG32_DIDT(*pos >> 2, value);
3059
3060 result += 4;
3061 buf += 4;
3062 *pos += 4;
3063 size -= 4;
3064 }
3065
3066 return result;
3067}
3068
3069static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
3070 size_t size, loff_t *pos)
3071{
Al Viro45063092016-12-04 18:24:56 -05003072 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003073 ssize_t result = 0;
3074 int r;
3075
3076 if (size & 0x3 || *pos & 0x3)
3077 return -EINVAL;
3078
3079 while (size) {
3080 uint32_t value;
3081
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003082 value = RREG32_SMC(*pos);
Tom St Denisadcec282016-04-15 13:08:44 -04003083 r = put_user(value, (uint32_t *)buf);
3084 if (r)
3085 return r;
3086
3087 result += 4;
3088 buf += 4;
3089 *pos += 4;
3090 size -= 4;
3091 }
3092
3093 return result;
3094}
3095
3096static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
3097 size_t size, loff_t *pos)
3098{
Al Viro45063092016-12-04 18:24:56 -05003099 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003100 ssize_t result = 0;
3101 int r;
3102
3103 if (size & 0x3 || *pos & 0x3)
3104 return -EINVAL;
3105
3106 while (size) {
3107 uint32_t value;
3108
3109 r = get_user(value, (uint32_t *)buf);
3110 if (r)
3111 return r;
3112
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003113 WREG32_SMC(*pos, value);
Tom St Denisadcec282016-04-15 13:08:44 -04003114
3115 result += 4;
3116 buf += 4;
3117 *pos += 4;
3118 size -= 4;
3119 }
3120
3121 return result;
3122}
3123
Tom St Denis1e051412016-06-27 09:57:18 -04003124static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
3125 size_t size, loff_t *pos)
3126{
Al Viro45063092016-12-04 18:24:56 -05003127 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis1e051412016-06-27 09:57:18 -04003128 ssize_t result = 0;
3129 int r;
3130 uint32_t *config, no_regs = 0;
3131
3132 if (size & 0x3 || *pos & 0x3)
3133 return -EINVAL;
3134
Markus Elfringecab7662016-09-18 17:00:52 +02003135 config = kmalloc_array(256, sizeof(*config), GFP_KERNEL);
Tom St Denis1e051412016-06-27 09:57:18 -04003136 if (!config)
3137 return -ENOMEM;
3138
3139 /* version, increment each time something is added */
Tom St Denis9a999352017-01-18 13:01:25 -05003140 config[no_regs++] = 3;
Tom St Denis1e051412016-06-27 09:57:18 -04003141 config[no_regs++] = adev->gfx.config.max_shader_engines;
3142 config[no_regs++] = adev->gfx.config.max_tile_pipes;
3143 config[no_regs++] = adev->gfx.config.max_cu_per_sh;
3144 config[no_regs++] = adev->gfx.config.max_sh_per_se;
3145 config[no_regs++] = adev->gfx.config.max_backends_per_se;
3146 config[no_regs++] = adev->gfx.config.max_texture_channel_caches;
3147 config[no_regs++] = adev->gfx.config.max_gprs;
3148 config[no_regs++] = adev->gfx.config.max_gs_threads;
3149 config[no_regs++] = adev->gfx.config.max_hw_contexts;
3150 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend;
3151 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend;
3152 config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size;
3153 config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size;
3154 config[no_regs++] = adev->gfx.config.num_tile_pipes;
3155 config[no_regs++] = adev->gfx.config.backend_enable_mask;
3156 config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes;
3157 config[no_regs++] = adev->gfx.config.mem_row_size_in_kb;
3158 config[no_regs++] = adev->gfx.config.shader_engine_tile_size;
3159 config[no_regs++] = adev->gfx.config.num_gpus;
3160 config[no_regs++] = adev->gfx.config.multi_gpu_tile_size;
3161 config[no_regs++] = adev->gfx.config.mc_arb_ramcfg;
3162 config[no_regs++] = adev->gfx.config.gb_addr_config;
3163 config[no_regs++] = adev->gfx.config.num_rbs;
3164
Tom St Denis89a8f302016-08-12 15:14:31 -04003165 /* rev==1 */
3166 config[no_regs++] = adev->rev_id;
3167 config[no_regs++] = adev->pg_flags;
3168 config[no_regs++] = adev->cg_flags;
3169
Tom St Denise9f11dc2016-08-17 12:00:51 -04003170 /* rev==2 */
3171 config[no_regs++] = adev->family;
3172 config[no_regs++] = adev->external_rev_id;
3173
Tom St Denis9a999352017-01-18 13:01:25 -05003174 /* rev==3 */
3175 config[no_regs++] = adev->pdev->device;
3176 config[no_regs++] = adev->pdev->revision;
3177 config[no_regs++] = adev->pdev->subsystem_device;
3178 config[no_regs++] = adev->pdev->subsystem_vendor;
3179
Tom St Denis1e051412016-06-27 09:57:18 -04003180 while (size && (*pos < no_regs * 4)) {
3181 uint32_t value;
3182
3183 value = config[*pos >> 2];
3184 r = put_user(value, (uint32_t *)buf);
3185 if (r) {
3186 kfree(config);
3187 return r;
3188 }
3189
3190 result += 4;
3191 buf += 4;
3192 *pos += 4;
3193 size -= 4;
3194 }
3195
3196 kfree(config);
3197 return result;
3198}
3199
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003200static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf,
3201 size_t size, loff_t *pos)
3202{
Al Viro45063092016-12-04 18:24:56 -05003203 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003204 int idx, x, outsize, r, valuesize;
3205 uint32_t values[16];
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003206
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003207 if (size & 3 || *pos & 0x3)
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003208 return -EINVAL;
3209
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003210 if (amdgpu_dpm == 0)
3211 return -EINVAL;
3212
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003213 /* convert offset to sensor number */
3214 idx = *pos >> 2;
3215
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003216 valuesize = sizeof(values);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003217 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003218 r = adev->powerplay.pp_funcs->read_sensor(adev->powerplay.pp_handle, idx, &values[0], &valuesize);
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003219 else if (adev->pm.funcs && adev->pm.funcs->read_sensor)
3220 r = adev->pm.funcs->read_sensor(adev, idx, &values[0],
3221 &valuesize);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003222 else
3223 return -EINVAL;
3224
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003225 if (size > valuesize)
3226 return -EINVAL;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003227
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003228 outsize = 0;
3229 x = 0;
3230 if (!r) {
3231 while (size) {
3232 r = put_user(values[x++], (int32_t *)buf);
3233 buf += 4;
3234 size -= 4;
3235 outsize += 4;
3236 }
3237 }
3238
3239 return !r ? outsize : r;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003240}
Tom St Denis1e051412016-06-27 09:57:18 -04003241
Tom St Denis273d7aa2016-10-11 14:48:55 -04003242static ssize_t amdgpu_debugfs_wave_read(struct file *f, char __user *buf,
3243 size_t size, loff_t *pos)
3244{
3245 struct amdgpu_device *adev = f->f_inode->i_private;
3246 int r, x;
3247 ssize_t result=0;
Tom St Denis472259f2016-10-14 09:49:09 -04003248 uint32_t offset, se, sh, cu, wave, simd, data[32];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003249
3250 if (size & 3 || *pos & 3)
3251 return -EINVAL;
3252
3253 /* decode offset */
3254 offset = (*pos & 0x7F);
3255 se = ((*pos >> 7) & 0xFF);
3256 sh = ((*pos >> 15) & 0xFF);
3257 cu = ((*pos >> 23) & 0xFF);
3258 wave = ((*pos >> 31) & 0xFF);
3259 simd = ((*pos >> 37) & 0xFF);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003260
3261 /* switch to the specific se/sh/cu */
3262 mutex_lock(&adev->grbm_idx_mutex);
3263 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3264
3265 x = 0;
Tom St Denis472259f2016-10-14 09:49:09 -04003266 if (adev->gfx.funcs->read_wave_data)
3267 adev->gfx.funcs->read_wave_data(adev, simd, wave, data, &x);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003268
3269 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3270 mutex_unlock(&adev->grbm_idx_mutex);
3271
Tom St Denis5ecfb3b2016-10-13 12:15:03 -04003272 if (!x)
3273 return -EINVAL;
3274
Tom St Denis472259f2016-10-14 09:49:09 -04003275 while (size && (offset < x * 4)) {
Tom St Denis273d7aa2016-10-11 14:48:55 -04003276 uint32_t value;
3277
Tom St Denis472259f2016-10-14 09:49:09 -04003278 value = data[offset >> 2];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003279 r = put_user(value, (uint32_t *)buf);
3280 if (r)
3281 return r;
3282
3283 result += 4;
3284 buf += 4;
Tom St Denis472259f2016-10-14 09:49:09 -04003285 offset += 4;
Tom St Denis273d7aa2016-10-11 14:48:55 -04003286 size -= 4;
3287 }
3288
3289 return result;
3290}
3291
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003292static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
3293 size_t size, loff_t *pos)
3294{
3295 struct amdgpu_device *adev = f->f_inode->i_private;
3296 int r;
3297 ssize_t result = 0;
3298 uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data;
3299
3300 if (size & 3 || *pos & 3)
3301 return -EINVAL;
3302
3303 /* decode offset */
3304 offset = (*pos & 0xFFF); /* in dwords */
3305 se = ((*pos >> 12) & 0xFF);
3306 sh = ((*pos >> 20) & 0xFF);
3307 cu = ((*pos >> 28) & 0xFF);
3308 wave = ((*pos >> 36) & 0xFF);
3309 simd = ((*pos >> 44) & 0xFF);
3310 thread = ((*pos >> 52) & 0xFF);
3311 bank = ((*pos >> 60) & 1);
3312
3313 data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
3314 if (!data)
3315 return -ENOMEM;
3316
3317 /* switch to the specific se/sh/cu */
3318 mutex_lock(&adev->grbm_idx_mutex);
3319 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3320
3321 if (bank == 0) {
3322 if (adev->gfx.funcs->read_wave_vgprs)
3323 adev->gfx.funcs->read_wave_vgprs(adev, simd, wave, thread, offset, size>>2, data);
3324 } else {
3325 if (adev->gfx.funcs->read_wave_sgprs)
3326 adev->gfx.funcs->read_wave_sgprs(adev, simd, wave, offset, size>>2, data);
3327 }
3328
3329 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3330 mutex_unlock(&adev->grbm_idx_mutex);
3331
3332 while (size) {
3333 uint32_t value;
3334
3335 value = data[offset++];
3336 r = put_user(value, (uint32_t *)buf);
3337 if (r) {
3338 result = r;
3339 goto err;
3340 }
3341
3342 result += 4;
3343 buf += 4;
3344 size -= 4;
3345 }
3346
3347err:
3348 kfree(data);
3349 return result;
3350}
3351
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003352static const struct file_operations amdgpu_debugfs_regs_fops = {
3353 .owner = THIS_MODULE,
3354 .read = amdgpu_debugfs_regs_read,
3355 .write = amdgpu_debugfs_regs_write,
3356 .llseek = default_llseek
3357};
Tom St Denisadcec282016-04-15 13:08:44 -04003358static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
3359 .owner = THIS_MODULE,
3360 .read = amdgpu_debugfs_regs_didt_read,
3361 .write = amdgpu_debugfs_regs_didt_write,
3362 .llseek = default_llseek
3363};
3364static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
3365 .owner = THIS_MODULE,
3366 .read = amdgpu_debugfs_regs_pcie_read,
3367 .write = amdgpu_debugfs_regs_pcie_write,
3368 .llseek = default_llseek
3369};
3370static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
3371 .owner = THIS_MODULE,
3372 .read = amdgpu_debugfs_regs_smc_read,
3373 .write = amdgpu_debugfs_regs_smc_write,
3374 .llseek = default_llseek
3375};
3376
Tom St Denis1e051412016-06-27 09:57:18 -04003377static const struct file_operations amdgpu_debugfs_gca_config_fops = {
3378 .owner = THIS_MODULE,
3379 .read = amdgpu_debugfs_gca_config_read,
3380 .llseek = default_llseek
3381};
3382
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003383static const struct file_operations amdgpu_debugfs_sensors_fops = {
3384 .owner = THIS_MODULE,
3385 .read = amdgpu_debugfs_sensor_read,
3386 .llseek = default_llseek
3387};
3388
Tom St Denis273d7aa2016-10-11 14:48:55 -04003389static const struct file_operations amdgpu_debugfs_wave_fops = {
3390 .owner = THIS_MODULE,
3391 .read = amdgpu_debugfs_wave_read,
3392 .llseek = default_llseek
3393};
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003394static const struct file_operations amdgpu_debugfs_gpr_fops = {
3395 .owner = THIS_MODULE,
3396 .read = amdgpu_debugfs_gpr_read,
3397 .llseek = default_llseek
3398};
Tom St Denis273d7aa2016-10-11 14:48:55 -04003399
Tom St Denisadcec282016-04-15 13:08:44 -04003400static const struct file_operations *debugfs_regs[] = {
3401 &amdgpu_debugfs_regs_fops,
3402 &amdgpu_debugfs_regs_didt_fops,
3403 &amdgpu_debugfs_regs_pcie_fops,
3404 &amdgpu_debugfs_regs_smc_fops,
Tom St Denis1e051412016-06-27 09:57:18 -04003405 &amdgpu_debugfs_gca_config_fops,
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003406 &amdgpu_debugfs_sensors_fops,
Tom St Denis273d7aa2016-10-11 14:48:55 -04003407 &amdgpu_debugfs_wave_fops,
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003408 &amdgpu_debugfs_gpr_fops,
Tom St Denisadcec282016-04-15 13:08:44 -04003409};
3410
3411static const char *debugfs_regs_names[] = {
3412 "amdgpu_regs",
3413 "amdgpu_regs_didt",
3414 "amdgpu_regs_pcie",
3415 "amdgpu_regs_smc",
Tom St Denis1e051412016-06-27 09:57:18 -04003416 "amdgpu_gca_config",
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003417 "amdgpu_sensors",
Tom St Denis273d7aa2016-10-11 14:48:55 -04003418 "amdgpu_wave",
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003419 "amdgpu_gpr",
Tom St Denisadcec282016-04-15 13:08:44 -04003420};
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003421
3422static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3423{
3424 struct drm_minor *minor = adev->ddev->primary;
3425 struct dentry *ent, *root = minor->debugfs_root;
Tom St Denisadcec282016-04-15 13:08:44 -04003426 unsigned i, j;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003427
Tom St Denisadcec282016-04-15 13:08:44 -04003428 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3429 ent = debugfs_create_file(debugfs_regs_names[i],
3430 S_IFREG | S_IRUGO, root,
3431 adev, debugfs_regs[i]);
3432 if (IS_ERR(ent)) {
3433 for (j = 0; j < i; j++) {
3434 debugfs_remove(adev->debugfs_regs[i]);
3435 adev->debugfs_regs[i] = NULL;
3436 }
3437 return PTR_ERR(ent);
3438 }
3439
3440 if (!i)
3441 i_size_write(ent->d_inode, adev->rmmio_size);
3442 adev->debugfs_regs[i] = ent;
3443 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003444
3445 return 0;
3446}
3447
3448static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
3449{
Tom St Denisadcec282016-04-15 13:08:44 -04003450 unsigned i;
3451
3452 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3453 if (adev->debugfs_regs[i]) {
3454 debugfs_remove(adev->debugfs_regs[i]);
3455 adev->debugfs_regs[i] = NULL;
3456 }
3457 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003458}
3459
3460int amdgpu_debugfs_init(struct drm_minor *minor)
3461{
3462 return 0;
3463}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003464#else
3465static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3466{
3467 return 0;
3468}
3469static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003470#endif