blob: a6f6cb0f2e025f4ee359f307a1aa8a0504d399fe [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"
Ken Wang460826e2017-03-06 14:53:16 -050052#include "soc15.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040053#include "bif/bif_4_1_d.h"
Emily Deng9accf2f2016-08-10 16:01:25 +080054#include <linux/pci.h>
Monk Liubec86372016-09-14 19:38:08 +080055#include <linux/firmware.h>
Gavin Wan89041942017-06-23 13:55:15 -040056#include "amdgpu_vf_error.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040057
Yong Zhaoba997702015-11-09 17:21:45 -050058#include "amdgpu_amdkfd.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040059
Alex Deuchere2a75f82017-04-27 16:58:01 -040060MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
Alex Deucher2d2e5e72017-05-09 12:27:35 -040061MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
Alex Deuchere2a75f82017-04-27 16:58:01 -040062
Shirish S2dc80b02017-05-25 10:05:25 +053063#define AMDGPU_RESUME_MS 2000
64
Alex Deucherd38ceaf2015-04-20 16:55:21 -040065static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
66static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
Huang Rui4f0955f2017-05-10 23:04:06 +080067static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040068
69static const char *amdgpu_asic_name[] = {
Ken Wangda69c1612016-01-21 19:08:55 +080070 "TAHITI",
71 "PITCAIRN",
72 "VERDE",
73 "OLAND",
74 "HAINAN",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040075 "BONAIRE",
76 "KAVERI",
77 "KABINI",
78 "HAWAII",
79 "MULLINS",
80 "TOPAZ",
81 "TONGA",
David Zhang48299f92015-07-08 01:05:16 +080082 "FIJI",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040083 "CARRIZO",
Samuel Li139f4912015-10-08 14:50:27 -040084 "STONEY",
Flora Cui2cc0c0b2016-03-14 18:33:29 -040085 "POLARIS10",
86 "POLARIS11",
Junwei Zhangc4642a42016-12-14 15:32:28 -050087 "POLARIS12",
Ken Wangd4196f02016-03-09 09:28:32 +080088 "VEGA10",
Chunming Zhou2ca8a5d2016-12-07 17:31:19 +080089 "RAVEN",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040090 "LAST",
91};
92
93bool amdgpu_device_is_px(struct drm_device *dev)
94{
95 struct amdgpu_device *adev = dev->dev_private;
96
Jammy Zhou2f7d10b2015-07-22 11:29:01 +080097 if (adev->flags & AMD_IS_PX)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040098 return true;
99 return false;
100}
101
102/*
103 * MMIO register access helper functions.
104 */
105uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
Monk Liu15d72fd2017-01-25 15:07:40 +0800106 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400107{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400108 uint32_t ret;
109
Monk Liu15d72fd2017-01-25 15:07:40 +0800110 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) {
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800111 BUG_ON(in_interrupt());
112 return amdgpu_virt_kiq_rreg(adev, reg);
113 }
114
Monk Liu15d72fd2017-01-25 15:07:40 +0800115 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Tom St Denisf4b373f2016-05-31 08:02:27 -0400116 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400117 else {
118 unsigned long flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119
120 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
121 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
122 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
123 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124 }
Tom St Denisf4b373f2016-05-31 08:02:27 -0400125 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
126 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127}
128
129void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
Monk Liu15d72fd2017-01-25 15:07:40 +0800130 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400132 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
Monk Liu4e99a442016-03-31 13:26:59 +0800133
Ken Wang47ed4e12017-07-04 13:11:52 +0800134 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
135 adev->last_mm_index = v;
136 }
137
Monk Liu15d72fd2017-01-25 15:07:40 +0800138 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) {
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800139 BUG_ON(in_interrupt());
140 return amdgpu_virt_kiq_wreg(adev, reg, v);
141 }
142
Monk Liu15d72fd2017-01-25 15:07:40 +0800143 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
145 else {
146 unsigned long flags;
147
148 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
149 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
150 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
151 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
152 }
Ken Wang47ed4e12017-07-04 13:11:52 +0800153
154 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
155 udelay(500);
156 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157}
158
159u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
160{
161 if ((reg * 4) < adev->rio_mem_size)
162 return ioread32(adev->rio_mem + (reg * 4));
163 else {
164 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
165 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
166 }
167}
168
169void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
170{
Ken Wang47ed4e12017-07-04 13:11:52 +0800171 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
172 adev->last_mm_index = v;
173 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400174
175 if ((reg * 4) < adev->rio_mem_size)
176 iowrite32(v, adev->rio_mem + (reg * 4));
177 else {
178 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
179 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
180 }
Ken Wang47ed4e12017-07-04 13:11:52 +0800181
182 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
183 udelay(500);
184 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185}
186
187/**
188 * amdgpu_mm_rdoorbell - read a doorbell dword
189 *
190 * @adev: amdgpu_device pointer
191 * @index: doorbell index
192 *
193 * Returns the value in the doorbell aperture at the
194 * requested doorbell index (CIK).
195 */
196u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
197{
198 if (index < adev->doorbell.num_doorbells) {
199 return readl(adev->doorbell.ptr + index);
200 } else {
201 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
202 return 0;
203 }
204}
205
206/**
207 * amdgpu_mm_wdoorbell - write a doorbell dword
208 *
209 * @adev: amdgpu_device pointer
210 * @index: doorbell index
211 * @v: value to write
212 *
213 * Writes @v to the doorbell aperture at the
214 * requested doorbell index (CIK).
215 */
216void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
217{
218 if (index < adev->doorbell.num_doorbells) {
219 writel(v, adev->doorbell.ptr + index);
220 } else {
221 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
222 }
223}
224
225/**
Ken Wang832be402016-03-18 15:23:08 +0800226 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
227 *
228 * @adev: amdgpu_device pointer
229 * @index: doorbell index
230 *
231 * Returns the value in the doorbell aperture at the
232 * requested doorbell index (VEGA10+).
233 */
234u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
235{
236 if (index < adev->doorbell.num_doorbells) {
237 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
238 } else {
239 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
240 return 0;
241 }
242}
243
244/**
245 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
246 *
247 * @adev: amdgpu_device pointer
248 * @index: doorbell index
249 * @v: value to write
250 *
251 * Writes @v to the doorbell aperture at the
252 * requested doorbell index (VEGA10+).
253 */
254void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
255{
256 if (index < adev->doorbell.num_doorbells) {
257 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
258 } else {
259 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
260 }
261}
262
263/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400264 * amdgpu_invalid_rreg - dummy reg read function
265 *
266 * @adev: amdgpu device pointer
267 * @reg: offset of register
268 *
269 * Dummy register read function. Used for register blocks
270 * that certain asics don't have (all asics).
271 * Returns the value in the register.
272 */
273static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
274{
275 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
276 BUG();
277 return 0;
278}
279
280/**
281 * amdgpu_invalid_wreg - dummy reg write function
282 *
283 * @adev: amdgpu device pointer
284 * @reg: offset of register
285 * @v: value to write to the register
286 *
287 * Dummy register read function. Used for register blocks
288 * that certain asics don't have (all asics).
289 */
290static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
291{
292 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
293 reg, v);
294 BUG();
295}
296
297/**
298 * amdgpu_block_invalid_rreg - dummy reg read function
299 *
300 * @adev: amdgpu device pointer
301 * @block: offset of instance
302 * @reg: offset of register
303 *
304 * Dummy register read function. Used for register blocks
305 * that certain asics don't have (all asics).
306 * Returns the value in the register.
307 */
308static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
309 uint32_t block, uint32_t reg)
310{
311 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
312 reg, block);
313 BUG();
314 return 0;
315}
316
317/**
318 * amdgpu_block_invalid_wreg - dummy reg write function
319 *
320 * @adev: amdgpu device pointer
321 * @block: offset of instance
322 * @reg: offset of register
323 * @v: value to write to the register
324 *
325 * Dummy register read function. Used for register blocks
326 * that certain asics don't have (all asics).
327 */
328static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
329 uint32_t block,
330 uint32_t reg, uint32_t v)
331{
332 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
333 reg, block, v);
334 BUG();
335}
336
337static int amdgpu_vram_scratch_init(struct amdgpu_device *adev)
338{
Christian Königa4a02772017-07-27 17:24:36 +0200339 return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE,
340 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
341 &adev->vram_scratch.robj,
342 &adev->vram_scratch.gpu_addr,
343 (void **)&adev->vram_scratch.ptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400344}
345
346static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev)
347{
Christian König078af1a2017-07-27 17:43:00 +0200348 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400349}
350
351/**
352 * amdgpu_program_register_sequence - program an array of registers.
353 *
354 * @adev: amdgpu_device pointer
355 * @registers: pointer to the register array
356 * @array_size: size of the register array
357 *
358 * Programs an array or registers with and and or masks.
359 * This is a helper for setting golden registers.
360 */
361void amdgpu_program_register_sequence(struct amdgpu_device *adev,
362 const u32 *registers,
363 const u32 array_size)
364{
365 u32 tmp, reg, and_mask, or_mask;
366 int i;
367
368 if (array_size % 3)
369 return;
370
371 for (i = 0; i < array_size; i +=3) {
372 reg = registers[i + 0];
373 and_mask = registers[i + 1];
374 or_mask = registers[i + 2];
375
376 if (and_mask == 0xffffffff) {
377 tmp = or_mask;
378 } else {
379 tmp = RREG32(reg);
380 tmp &= ~and_mask;
381 tmp |= or_mask;
382 }
383 WREG32(reg, tmp);
384 }
385}
386
387void amdgpu_pci_config_reset(struct amdgpu_device *adev)
388{
389 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
390}
391
392/*
393 * GPU doorbell aperture helpers function.
394 */
395/**
396 * amdgpu_doorbell_init - Init doorbell driver information.
397 *
398 * @adev: amdgpu_device pointer
399 *
400 * Init doorbell driver information (CIK)
401 * Returns 0 on success, error on failure.
402 */
403static int amdgpu_doorbell_init(struct amdgpu_device *adev)
404{
405 /* doorbell bar mapping */
406 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
407 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
408
Christian Königedf600d2016-05-03 15:54:54 +0200409 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400410 AMDGPU_DOORBELL_MAX_ASSIGNMENT+1);
411 if (adev->doorbell.num_doorbells == 0)
412 return -EINVAL;
413
Christian König8972e5d2017-03-06 13:34:57 +0100414 adev->doorbell.ptr = ioremap(adev->doorbell.base,
415 adev->doorbell.num_doorbells *
416 sizeof(u32));
417 if (adev->doorbell.ptr == NULL)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400418 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400419
420 return 0;
421}
422
423/**
424 * amdgpu_doorbell_fini - Tear down doorbell driver information.
425 *
426 * @adev: amdgpu_device pointer
427 *
428 * Tear down doorbell driver information (CIK)
429 */
430static void amdgpu_doorbell_fini(struct amdgpu_device *adev)
431{
432 iounmap(adev->doorbell.ptr);
433 adev->doorbell.ptr = NULL;
434}
435
436/**
437 * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
438 * setup amdkfd
439 *
440 * @adev: amdgpu_device pointer
441 * @aperture_base: output returning doorbell aperture base physical address
442 * @aperture_size: output returning doorbell aperture size in bytes
443 * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
444 *
445 * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
446 * takes doorbells required for its own rings and reports the setup to amdkfd.
447 * amdgpu reserved doorbells are at the start of the doorbell aperture.
448 */
449void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
450 phys_addr_t *aperture_base,
451 size_t *aperture_size,
452 size_t *start_offset)
453{
454 /*
455 * The first num_doorbells are used by amdgpu.
456 * amdkfd takes whatever's left in the aperture.
457 */
458 if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
459 *aperture_base = adev->doorbell.base;
460 *aperture_size = adev->doorbell.size;
461 *start_offset = adev->doorbell.num_doorbells * sizeof(u32);
462 } else {
463 *aperture_base = 0;
464 *aperture_size = 0;
465 *start_offset = 0;
466 }
467}
468
469/*
470 * amdgpu_wb_*()
Alex Xie455a7bc2017-05-08 21:36:03 -0400471 * Writeback is the method by which the GPU updates special pages in memory
Alex Xieea81a172017-05-08 13:41:11 -0400472 * with the status of certain GPU events (fences, ring pointers,etc.).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400473 */
474
475/**
476 * amdgpu_wb_fini - Disable Writeback and free memory
477 *
478 * @adev: amdgpu_device pointer
479 *
480 * Disables Writeback and frees the Writeback memory (all asics).
481 * Used at driver shutdown.
482 */
483static void amdgpu_wb_fini(struct amdgpu_device *adev)
484{
485 if (adev->wb.wb_obj) {
Alex Deuchera76ed482016-10-21 15:30:36 -0400486 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
487 &adev->wb.gpu_addr,
488 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400489 adev->wb.wb_obj = NULL;
490 }
491}
492
493/**
494 * amdgpu_wb_init- Init Writeback driver info and allocate memory
495 *
496 * @adev: amdgpu_device pointer
497 *
Alex Xie455a7bc2017-05-08 21:36:03 -0400498 * Initializes writeback and allocates writeback memory (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400499 * Used at driver startup.
500 * Returns 0 on success or an -error on failure.
501 */
502static int amdgpu_wb_init(struct amdgpu_device *adev)
503{
504 int r;
505
506 if (adev->wb.wb_obj == NULL) {
Alex Deucher97407b62017-07-28 12:14:15 -0400507 /* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */
508 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8,
Alex Deuchera76ed482016-10-21 15:30:36 -0400509 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
510 &adev->wb.wb_obj, &adev->wb.gpu_addr,
511 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400512 if (r) {
513 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
514 return r;
515 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400516
517 adev->wb.num_wb = AMDGPU_MAX_WB;
518 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
519
520 /* clear wb memory */
Huang Rui60a970a62017-03-15 10:13:32 +0800521 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400522 }
523
524 return 0;
525}
526
527/**
528 * amdgpu_wb_get - Allocate a wb entry
529 *
530 * @adev: amdgpu_device pointer
531 * @wb: wb index
532 *
533 * Allocate a wb slot for use by the driver (all asics).
534 * Returns 0 on success or -EINVAL on failure.
535 */
536int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb)
537{
538 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
Alex Deucher97407b62017-07-28 12:14:15 -0400539
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400540 if (offset < adev->wb.num_wb) {
541 __set_bit(offset, adev->wb.used);
Alex Deucher97407b62017-07-28 12:14:15 -0400542 *wb = offset * 8; /* convert to dw offset */
Monk Liu0915fdb2017-06-19 10:19:41 -0400543 return 0;
544 } else {
545 return -EINVAL;
546 }
547}
548
Ken Wang70142852016-03-18 15:08:49 +0800549/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400550 * amdgpu_wb_free - Free a wb entry
551 *
552 * @adev: amdgpu_device pointer
553 * @wb: wb index
554 *
555 * Free a wb slot allocated for use by the driver (all asics)
556 */
557void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb)
558{
559 if (wb < adev->wb.num_wb)
560 __clear_bit(wb, adev->wb.used);
561}
562
563/**
564 * amdgpu_vram_location - try to find VRAM location
565 * @adev: amdgpu device structure holding all necessary informations
566 * @mc: memory controller structure holding memory informations
567 * @base: base address at which to put VRAM
568 *
Alex Xie455a7bc2017-05-08 21:36:03 -0400569 * Function will try to place VRAM at base address provided
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400570 * as parameter (which is so far either PCI aperture address or
571 * for IGP TOM base address).
572 *
573 * If there is not enough space to fit the unvisible VRAM in the 32bits
574 * address space then we limit the VRAM size to the aperture.
575 *
576 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
577 * this shouldn't be a problem as we are using the PCI aperture as a reference.
578 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
579 * not IGP.
580 *
581 * Note: we use mc_vram_size as on some board we need to program the mc to
582 * cover the whole aperture even if VRAM size is inferior to aperture size
583 * Novell bug 204882 + along with lots of ubuntu ones
584 *
585 * Note: when limiting vram it's safe to overwritte real_vram_size because
586 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
587 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
588 * ones)
589 *
590 * Note: IGP TOM addr should be the same as the aperture addr, we don't
Alex Xie455a7bc2017-05-08 21:36:03 -0400591 * explicitly check for that though.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400592 *
593 * FIXME: when reducing VRAM size align new size on power of 2.
594 */
595void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base)
596{
597 uint64_t limit = (uint64_t)amdgpu_vram_limit << 20;
598
599 mc->vram_start = base;
600 if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) {
601 dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n");
602 mc->real_vram_size = mc->aper_size;
603 mc->mc_vram_size = mc->aper_size;
604 }
605 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
606 if (limit && limit < mc->real_vram_size)
607 mc->real_vram_size = limit;
608 dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
609 mc->mc_vram_size >> 20, mc->vram_start,
610 mc->vram_end, mc->real_vram_size >> 20);
611}
612
613/**
Christian König6f02a692017-07-07 11:56:59 +0200614 * amdgpu_gart_location - try to find GTT location
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400615 * @adev: amdgpu device structure holding all necessary informations
616 * @mc: memory controller structure holding memory informations
617 *
618 * Function will place try to place GTT before or after VRAM.
619 *
620 * If GTT size is bigger than space left then we ajust GTT size.
621 * Thus function will never fails.
622 *
623 * FIXME: when reducing GTT size align new size on power of 2.
624 */
Christian König6f02a692017-07-07 11:56:59 +0200625void amdgpu_gart_location(struct amdgpu_device *adev, struct amdgpu_mc *mc)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400626{
627 u64 size_af, size_bf;
628
Christian Königed21c042017-07-06 22:26:05 +0200629 size_af = adev->mc.mc_mask - mc->vram_end;
630 size_bf = mc->vram_start;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400631 if (size_bf > size_af) {
Christian König6f02a692017-07-07 11:56:59 +0200632 if (mc->gart_size > size_bf) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400633 dev_warn(adev->dev, "limiting GTT\n");
Christian König6f02a692017-07-07 11:56:59 +0200634 mc->gart_size = size_bf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400635 }
Christian König6f02a692017-07-07 11:56:59 +0200636 mc->gart_start = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400637 } else {
Christian König6f02a692017-07-07 11:56:59 +0200638 if (mc->gart_size > size_af) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400639 dev_warn(adev->dev, "limiting GTT\n");
Christian König6f02a692017-07-07 11:56:59 +0200640 mc->gart_size = size_af;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400641 }
Christian König6f02a692017-07-07 11:56:59 +0200642 mc->gart_start = mc->vram_end + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400643 }
Christian König6f02a692017-07-07 11:56:59 +0200644 mc->gart_end = mc->gart_start + mc->gart_size - 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400645 dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
Christian König6f02a692017-07-07 11:56:59 +0200646 mc->gart_size >> 20, mc->gart_start, mc->gart_end);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400647}
648
649/*
650 * GPU helpers function.
651 */
652/**
Jim Quc836fec2017-02-10 15:59:59 +0800653 * amdgpu_need_post - check if the hw need post or not
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400654 *
655 * @adev: amdgpu_device pointer
656 *
Jim Quc836fec2017-02-10 15:59:59 +0800657 * Check if the asic has been initialized (all asics) at driver startup
658 * or post is needed if hw reset is performed.
659 * Returns true if need or false if not.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400660 */
Jim Quc836fec2017-02-10 15:59:59 +0800661bool amdgpu_need_post(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400662{
663 uint32_t reg;
664
Jim Quc836fec2017-02-10 15:59:59 +0800665 if (adev->has_hw_reset) {
666 adev->has_hw_reset = false;
667 return true;
668 }
Alex Deucher70d17a22017-06-30 17:26:47 -0400669
670 /* bios scratch used on CIK+ */
671 if (adev->asic_type >= CHIP_BONAIRE)
672 return amdgpu_atombios_scratch_need_asic_init(adev);
673
674 /* check MEM_SIZE for older asics */
Alex Deucherbbf282d2017-03-03 17:26:10 -0500675 reg = amdgpu_asic_get_config_memsize(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400676
Alex Deucherf2713e82017-03-28 12:19:31 -0400677 if ((reg != 0) && (reg != 0xffffffff))
Jim Quc836fec2017-02-10 15:59:59 +0800678 return false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400679
Jim Quc836fec2017-02-10 15:59:59 +0800680 return true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400681
682}
683
Monk Liubec86372016-09-14 19:38:08 +0800684static bool amdgpu_vpost_needed(struct amdgpu_device *adev)
685{
686 if (amdgpu_sriov_vf(adev))
687 return false;
688
689 if (amdgpu_passthrough(adev)) {
Monk Liu1da2c322016-11-11 11:24:29 +0800690 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
691 * some old smc fw still need driver do vPost otherwise gpu hang, while
692 * those smc fw version above 22.15 doesn't have this flaw, so we force
693 * vpost executed for smc version below 22.15
Monk Liubec86372016-09-14 19:38:08 +0800694 */
695 if (adev->asic_type == CHIP_FIJI) {
696 int err;
697 uint32_t fw_ver;
698 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
699 /* force vPost if error occured */
700 if (err)
701 return true;
702
703 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
Monk Liu1da2c322016-11-11 11:24:29 +0800704 if (fw_ver < 0x00160e00)
705 return true;
Monk Liubec86372016-09-14 19:38:08 +0800706 }
Monk Liubec86372016-09-14 19:38:08 +0800707 }
Jim Quc836fec2017-02-10 15:59:59 +0800708 return amdgpu_need_post(adev);
Monk Liubec86372016-09-14 19:38:08 +0800709}
710
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400711/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400712 * amdgpu_dummy_page_init - init dummy page used by the driver
713 *
714 * @adev: amdgpu_device pointer
715 *
716 * Allocate the dummy page used by the driver (all asics).
717 * This dummy page is used by the driver as a filler for gart entries
718 * when pages are taken out of the GART
719 * Returns 0 on sucess, -ENOMEM on failure.
720 */
721int amdgpu_dummy_page_init(struct amdgpu_device *adev)
722{
723 if (adev->dummy_page.page)
724 return 0;
725 adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
726 if (adev->dummy_page.page == NULL)
727 return -ENOMEM;
728 adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page,
729 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
730 if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) {
731 dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n");
732 __free_page(adev->dummy_page.page);
733 adev->dummy_page.page = NULL;
734 return -ENOMEM;
735 }
736 return 0;
737}
738
739/**
740 * amdgpu_dummy_page_fini - free dummy page used by the driver
741 *
742 * @adev: amdgpu_device pointer
743 *
744 * Frees the dummy page used by the driver (all asics).
745 */
746void amdgpu_dummy_page_fini(struct amdgpu_device *adev)
747{
748 if (adev->dummy_page.page == NULL)
749 return;
750 pci_unmap_page(adev->pdev, adev->dummy_page.addr,
751 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
752 __free_page(adev->dummy_page.page);
753 adev->dummy_page.page = NULL;
754}
755
756
757/* ATOM accessor methods */
758/*
759 * ATOM is an interpreted byte code stored in tables in the vbios. The
760 * driver registers callbacks to access registers and the interpreter
761 * in the driver parses the tables and executes then to program specific
762 * actions (set display modes, asic init, etc.). See amdgpu_atombios.c,
763 * atombios.h, and atom.c
764 */
765
766/**
767 * cail_pll_read - read PLL register
768 *
769 * @info: atom card_info pointer
770 * @reg: PLL register offset
771 *
772 * Provides a PLL register accessor for the atom interpreter (r4xx+).
773 * Returns the value of the PLL register.
774 */
775static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
776{
777 return 0;
778}
779
780/**
781 * cail_pll_write - write PLL register
782 *
783 * @info: atom card_info pointer
784 * @reg: PLL register offset
785 * @val: value to write to the pll register
786 *
787 * Provides a PLL register accessor for the atom interpreter (r4xx+).
788 */
789static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
790{
791
792}
793
794/**
795 * cail_mc_read - read MC (Memory Controller) register
796 *
797 * @info: atom card_info pointer
798 * @reg: MC register offset
799 *
800 * Provides an MC register accessor for the atom interpreter (r4xx+).
801 * Returns the value of the MC register.
802 */
803static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
804{
805 return 0;
806}
807
808/**
809 * cail_mc_write - write MC (Memory Controller) register
810 *
811 * @info: atom card_info pointer
812 * @reg: MC register offset
813 * @val: value to write to the pll register
814 *
815 * Provides a MC register accessor for the atom interpreter (r4xx+).
816 */
817static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
818{
819
820}
821
822/**
823 * cail_reg_write - write MMIO register
824 *
825 * @info: atom card_info pointer
826 * @reg: MMIO register offset
827 * @val: value to write to the pll register
828 *
829 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
830 */
831static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
832{
833 struct amdgpu_device *adev = info->dev->dev_private;
834
835 WREG32(reg, val);
836}
837
838/**
839 * cail_reg_read - read MMIO register
840 *
841 * @info: atom card_info pointer
842 * @reg: MMIO register offset
843 *
844 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
845 * Returns the value of the MMIO register.
846 */
847static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
848{
849 struct amdgpu_device *adev = info->dev->dev_private;
850 uint32_t r;
851
852 r = RREG32(reg);
853 return r;
854}
855
856/**
857 * cail_ioreg_write - write IO register
858 *
859 * @info: atom card_info pointer
860 * @reg: IO register offset
861 * @val: value to write to the pll register
862 *
863 * Provides a IO register accessor for the atom interpreter (r4xx+).
864 */
865static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
866{
867 struct amdgpu_device *adev = info->dev->dev_private;
868
869 WREG32_IO(reg, val);
870}
871
872/**
873 * cail_ioreg_read - read IO register
874 *
875 * @info: atom card_info pointer
876 * @reg: IO register offset
877 *
878 * Provides an IO register accessor for the atom interpreter (r4xx+).
879 * Returns the value of the IO register.
880 */
881static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
882{
883 struct amdgpu_device *adev = info->dev->dev_private;
884 uint32_t r;
885
886 r = RREG32_IO(reg);
887 return r;
888}
889
890/**
891 * amdgpu_atombios_fini - free the driver info and callbacks for atombios
892 *
893 * @adev: amdgpu_device pointer
894 *
895 * Frees the driver info and register access callbacks for the ATOM
896 * interpreter (r4xx+).
897 * Called at driver shutdown.
898 */
899static void amdgpu_atombios_fini(struct amdgpu_device *adev)
900{
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800901 if (adev->mode_info.atom_context) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400902 kfree(adev->mode_info.atom_context->scratch);
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800903 kfree(adev->mode_info.atom_context->iio);
904 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400905 kfree(adev->mode_info.atom_context);
906 adev->mode_info.atom_context = NULL;
907 kfree(adev->mode_info.atom_card_info);
908 adev->mode_info.atom_card_info = NULL;
909}
910
911/**
912 * amdgpu_atombios_init - init the driver info and callbacks for atombios
913 *
914 * @adev: amdgpu_device pointer
915 *
916 * Initializes the driver info and register access callbacks for the
917 * ATOM interpreter (r4xx+).
918 * Returns 0 on sucess, -ENOMEM on failure.
919 * Called at driver startup.
920 */
921static int amdgpu_atombios_init(struct amdgpu_device *adev)
922{
923 struct card_info *atom_card_info =
924 kzalloc(sizeof(struct card_info), GFP_KERNEL);
925
926 if (!atom_card_info)
927 return -ENOMEM;
928
929 adev->mode_info.atom_card_info = atom_card_info;
930 atom_card_info->dev = adev->ddev;
931 atom_card_info->reg_read = cail_reg_read;
932 atom_card_info->reg_write = cail_reg_write;
933 /* needed for iio ops */
934 if (adev->rio_mem) {
935 atom_card_info->ioreg_read = cail_ioreg_read;
936 atom_card_info->ioreg_write = cail_ioreg_write;
937 } else {
Amber Linb64a18c2017-01-04 08:06:58 -0500938 DRM_INFO("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400939 atom_card_info->ioreg_read = cail_reg_read;
940 atom_card_info->ioreg_write = cail_reg_write;
941 }
942 atom_card_info->mc_read = cail_mc_read;
943 atom_card_info->mc_write = cail_mc_write;
944 atom_card_info->pll_read = cail_pll_read;
945 atom_card_info->pll_write = cail_pll_write;
946
947 adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
948 if (!adev->mode_info.atom_context) {
949 amdgpu_atombios_fini(adev);
950 return -ENOMEM;
951 }
952
953 mutex_init(&adev->mode_info.atom_context->mutex);
Alex Deuchera5bde2f2016-09-23 16:23:41 -0400954 if (adev->is_atom_fw) {
955 amdgpu_atomfirmware_scratch_regs_init(adev);
956 amdgpu_atomfirmware_allocate_fb_scratch(adev);
957 } else {
958 amdgpu_atombios_scratch_regs_init(adev);
959 amdgpu_atombios_allocate_fb_scratch(adev);
960 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400961 return 0;
962}
963
964/* if we get transitioned to only one device, take VGA back */
965/**
966 * amdgpu_vga_set_decode - enable/disable vga decode
967 *
968 * @cookie: amdgpu_device pointer
969 * @state: enable/disable vga decode
970 *
971 * Enable/disable vga decode (all asics).
972 * Returns VGA resource flags.
973 */
974static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
975{
976 struct amdgpu_device *adev = cookie;
977 amdgpu_asic_set_vga_state(adev, state);
978 if (state)
979 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
980 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
981 else
982 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
983}
984
Junwei Zhangbab4fee2017-04-05 13:54:56 +0800985static void amdgpu_check_block_size(struct amdgpu_device *adev)
Chunming Zhoua1adf8b2017-03-27 11:36:57 +0800986{
987 /* defines number of bits in page table versus page directory,
988 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
989 * page table and the remaining bits are in the page directory */
Junwei Zhangbab4fee2017-04-05 13:54:56 +0800990 if (amdgpu_vm_block_size == -1)
991 return;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +0800992
Junwei Zhangbab4fee2017-04-05 13:54:56 +0800993 if (amdgpu_vm_block_size < 9) {
Chunming Zhoua1adf8b2017-03-27 11:36:57 +0800994 dev_warn(adev->dev, "VM page table size (%d) too small\n",
995 amdgpu_vm_block_size);
Junwei Zhangbab4fee2017-04-05 13:54:56 +0800996 goto def_value;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +0800997 }
998
999 if (amdgpu_vm_block_size > 24 ||
1000 (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
1001 dev_warn(adev->dev, "VM page table size (%d) too large\n",
1002 amdgpu_vm_block_size);
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001003 goto def_value;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001004 }
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001005
1006 return;
1007
1008def_value:
1009 amdgpu_vm_block_size = -1;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001010}
1011
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001012static void amdgpu_check_vm_size(struct amdgpu_device *adev)
1013{
Alex Deucher64dab072017-06-15 18:20:09 -04001014 /* no need to check the default value */
1015 if (amdgpu_vm_size == -1)
1016 return;
1017
Alex Deucher76117502017-06-21 12:31:41 -04001018 if (!is_power_of_2(amdgpu_vm_size)) {
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001019 dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
1020 amdgpu_vm_size);
1021 goto def_value;
1022 }
1023
1024 if (amdgpu_vm_size < 1) {
1025 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1026 amdgpu_vm_size);
1027 goto def_value;
1028 }
1029
1030 /*
1031 * Max GPUVM size for Cayman, SI, CI VI are 40 bits.
1032 */
1033 if (amdgpu_vm_size > 1024) {
1034 dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
1035 amdgpu_vm_size);
1036 goto def_value;
1037 }
1038
1039 return;
1040
1041def_value:
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001042 amdgpu_vm_size = -1;
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001043}
1044
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001045/**
1046 * amdgpu_check_arguments - validate module params
1047 *
1048 * @adev: amdgpu_device pointer
1049 *
1050 * Validates certain module parameters and updates
1051 * the associated values used by the driver (all asics).
1052 */
1053static void amdgpu_check_arguments(struct amdgpu_device *adev)
1054{
Chunming Zhou5b011232015-12-10 17:34:33 +08001055 if (amdgpu_sched_jobs < 4) {
1056 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1057 amdgpu_sched_jobs);
1058 amdgpu_sched_jobs = 4;
Alex Deucher76117502017-06-21 12:31:41 -04001059 } else if (!is_power_of_2(amdgpu_sched_jobs)){
Chunming Zhou5b011232015-12-10 17:34:33 +08001060 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1061 amdgpu_sched_jobs);
1062 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1063 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001064
Christian Königf9321cc2017-07-07 13:44:05 +02001065 if (amdgpu_gart_size < 32) {
1066 /* gart size must be greater or equal to 32M */
1067 dev_warn(adev->dev, "gart size (%d) too small\n",
1068 amdgpu_gart_size);
1069 amdgpu_gart_size = 32;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001070 }
1071
Christian König36d38372017-07-07 13:17:45 +02001072 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001073 /* gtt size must be greater or equal to 32M */
Christian König36d38372017-07-07 13:17:45 +02001074 dev_warn(adev->dev, "gtt size (%d) too small\n",
1075 amdgpu_gtt_size);
1076 amdgpu_gtt_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001077 }
1078
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001079 amdgpu_check_vm_size(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001080
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001081 amdgpu_check_block_size(adev);
Christian König6a7f76e2016-08-24 15:51:49 +02001082
jimqu526bae32016-11-07 09:53:10 +08001083 if (amdgpu_vram_page_split != -1 && (amdgpu_vram_page_split < 16 ||
Alex Deucher76117502017-06-21 12:31:41 -04001084 !is_power_of_2(amdgpu_vram_page_split))) {
Christian König6a7f76e2016-08-24 15:51:49 +02001085 dev_warn(adev->dev, "invalid VRAM page split (%d)\n",
1086 amdgpu_vram_page_split);
1087 amdgpu_vram_page_split = 1024;
1088 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001089}
1090
1091/**
1092 * amdgpu_switcheroo_set_state - set switcheroo state
1093 *
1094 * @pdev: pci dev pointer
Lukas Wunner16944672015-09-05 11:17:35 +02001095 * @state: vga_switcheroo state
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001096 *
1097 * Callback for the switcheroo driver. Suspends or resumes the
1098 * the asics before or after it is powered up using ACPI methods.
1099 */
1100static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1101{
1102 struct drm_device *dev = pci_get_drvdata(pdev);
1103
1104 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1105 return;
1106
1107 if (state == VGA_SWITCHEROO_ON) {
Joe Perches7ca85292017-02-28 04:55:52 -08001108 pr_info("amdgpu: switched on\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001109 /* don't suspend or resume card normally */
1110 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1111
Alex Deucher810ddc32016-08-23 13:25:49 -04001112 amdgpu_device_resume(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001113
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001114 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1115 drm_kms_helper_poll_enable(dev);
1116 } else {
Joe Perches7ca85292017-02-28 04:55:52 -08001117 pr_info("amdgpu: switched off\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001118 drm_kms_helper_poll_disable(dev);
1119 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Alex Deucher810ddc32016-08-23 13:25:49 -04001120 amdgpu_device_suspend(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001121 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1122 }
1123}
1124
1125/**
1126 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1127 *
1128 * @pdev: pci dev pointer
1129 *
1130 * Callback for the switcheroo driver. Check of the switcheroo
1131 * state can be changed.
1132 * Returns true if the state can be changed, false if not.
1133 */
1134static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1135{
1136 struct drm_device *dev = pci_get_drvdata(pdev);
1137
1138 /*
1139 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1140 * locking inversion with the driver load path. And the access here is
1141 * completely racy anyway. So don't bother with locking for now.
1142 */
1143 return dev->open_count == 0;
1144}
1145
1146static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1147 .set_gpu_state = amdgpu_switcheroo_set_state,
1148 .reprobe = NULL,
1149 .can_switch = amdgpu_switcheroo_can_switch,
1150};
1151
1152int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001153 enum amd_ip_block_type block_type,
1154 enum amd_clockgating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001155{
1156 int i, r = 0;
1157
1158 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001159 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001160 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001161 if (adev->ip_blocks[i].version->type != block_type)
1162 continue;
1163 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1164 continue;
1165 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1166 (void *)adev, state);
1167 if (r)
1168 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1169 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001170 }
1171 return r;
1172}
1173
1174int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001175 enum amd_ip_block_type block_type,
1176 enum amd_powergating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001177{
1178 int i, r = 0;
1179
1180 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001181 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001182 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001183 if (adev->ip_blocks[i].version->type != block_type)
1184 continue;
1185 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1186 continue;
1187 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1188 (void *)adev, state);
1189 if (r)
1190 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1191 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001192 }
1193 return r;
1194}
1195
Huang Rui6cb2d4e2017-01-05 18:44:41 +08001196void amdgpu_get_clockgating_state(struct amdgpu_device *adev, u32 *flags)
1197{
1198 int i;
1199
1200 for (i = 0; i < adev->num_ip_blocks; i++) {
1201 if (!adev->ip_blocks[i].status.valid)
1202 continue;
1203 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1204 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1205 }
1206}
1207
Alex Deucher5dbbb602016-06-23 11:41:04 -04001208int amdgpu_wait_for_idle(struct amdgpu_device *adev,
1209 enum amd_ip_block_type block_type)
1210{
1211 int i, r;
1212
1213 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001214 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001215 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001216 if (adev->ip_blocks[i].version->type == block_type) {
1217 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001218 if (r)
1219 return r;
1220 break;
1221 }
1222 }
1223 return 0;
1224
1225}
1226
1227bool amdgpu_is_idle(struct amdgpu_device *adev,
1228 enum amd_ip_block_type block_type)
1229{
1230 int i;
1231
1232 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001233 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001234 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001235 if (adev->ip_blocks[i].version->type == block_type)
1236 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001237 }
1238 return true;
1239
1240}
1241
Alex Deuchera1255102016-10-13 17:41:13 -04001242struct amdgpu_ip_block * amdgpu_get_ip_block(struct amdgpu_device *adev,
1243 enum amd_ip_block_type type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001244{
1245 int i;
1246
1247 for (i = 0; i < adev->num_ip_blocks; i++)
Alex Deuchera1255102016-10-13 17:41:13 -04001248 if (adev->ip_blocks[i].version->type == type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001249 return &adev->ip_blocks[i];
1250
1251 return NULL;
1252}
1253
1254/**
1255 * amdgpu_ip_block_version_cmp
1256 *
1257 * @adev: amdgpu_device pointer
yanyang15fc3aee2015-05-22 14:39:35 -04001258 * @type: enum amd_ip_block_type
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001259 * @major: major version
1260 * @minor: minor version
1261 *
1262 * return 0 if equal or greater
1263 * return 1 if smaller or the ip_block doesn't exist
1264 */
1265int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001266 enum amd_ip_block_type type,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001267 u32 major, u32 minor)
1268{
Alex Deuchera1255102016-10-13 17:41:13 -04001269 struct amdgpu_ip_block *ip_block = amdgpu_get_ip_block(adev, type);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001270
Alex Deuchera1255102016-10-13 17:41:13 -04001271 if (ip_block && ((ip_block->version->major > major) ||
1272 ((ip_block->version->major == major) &&
1273 (ip_block->version->minor >= minor))))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001274 return 0;
1275
1276 return 1;
1277}
1278
Alex Deuchera1255102016-10-13 17:41:13 -04001279/**
1280 * amdgpu_ip_block_add
1281 *
1282 * @adev: amdgpu_device pointer
1283 * @ip_block_version: pointer to the IP to add
1284 *
1285 * Adds the IP block driver information to the collection of IPs
1286 * on the asic.
1287 */
1288int amdgpu_ip_block_add(struct amdgpu_device *adev,
1289 const struct amdgpu_ip_block_version *ip_block_version)
1290{
1291 if (!ip_block_version)
1292 return -EINVAL;
1293
Huang Ruia0bae352017-05-03 09:52:06 +08001294 DRM_DEBUG("add ip block number %d <%s>\n", adev->num_ip_blocks,
1295 ip_block_version->funcs->name);
1296
Alex Deuchera1255102016-10-13 17:41:13 -04001297 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1298
1299 return 0;
1300}
1301
Alex Deucher483ef982016-09-30 12:43:04 -04001302static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
Emily Deng9accf2f2016-08-10 16:01:25 +08001303{
1304 adev->enable_virtual_display = false;
1305
1306 if (amdgpu_virtual_display) {
1307 struct drm_device *ddev = adev->ddev;
1308 const char *pci_address_name = pci_name(ddev->pdev);
Emily Deng0f663562016-09-30 13:02:18 -04001309 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
Emily Deng9accf2f2016-08-10 16:01:25 +08001310
1311 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1312 pciaddstr_tmp = pciaddstr;
Emily Deng0f663562016-09-30 13:02:18 -04001313 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1314 pciaddname = strsep(&pciaddname_tmp, ",");
Yintian Tao967de2a2017-01-22 15:16:51 +08001315 if (!strcmp("all", pciaddname)
1316 || !strcmp(pci_address_name, pciaddname)) {
Emily Deng0f663562016-09-30 13:02:18 -04001317 long num_crtc;
1318 int res = -1;
1319
Emily Deng9accf2f2016-08-10 16:01:25 +08001320 adev->enable_virtual_display = true;
Emily Deng0f663562016-09-30 13:02:18 -04001321
1322 if (pciaddname_tmp)
1323 res = kstrtol(pciaddname_tmp, 10,
1324 &num_crtc);
1325
1326 if (!res) {
1327 if (num_crtc < 1)
1328 num_crtc = 1;
1329 if (num_crtc > 6)
1330 num_crtc = 6;
1331 adev->mode_info.num_crtc = num_crtc;
1332 } else {
1333 adev->mode_info.num_crtc = 1;
1334 }
Emily Deng9accf2f2016-08-10 16:01:25 +08001335 break;
1336 }
1337 }
1338
Emily Deng0f663562016-09-30 13:02:18 -04001339 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1340 amdgpu_virtual_display, pci_address_name,
1341 adev->enable_virtual_display, adev->mode_info.num_crtc);
Emily Deng9accf2f2016-08-10 16:01:25 +08001342
1343 kfree(pciaddstr);
1344 }
1345}
1346
Alex Deuchere2a75f82017-04-27 16:58:01 -04001347static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1348{
Alex Deuchere2a75f82017-04-27 16:58:01 -04001349 const char *chip_name;
1350 char fw_name[30];
1351 int err;
1352 const struct gpu_info_firmware_header_v1_0 *hdr;
1353
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001354 adev->firmware.gpu_info_fw = NULL;
1355
Alex Deuchere2a75f82017-04-27 16:58:01 -04001356 switch (adev->asic_type) {
1357 case CHIP_TOPAZ:
1358 case CHIP_TONGA:
1359 case CHIP_FIJI:
1360 case CHIP_POLARIS11:
1361 case CHIP_POLARIS10:
1362 case CHIP_POLARIS12:
1363 case CHIP_CARRIZO:
1364 case CHIP_STONEY:
1365#ifdef CONFIG_DRM_AMDGPU_SI
1366 case CHIP_VERDE:
1367 case CHIP_TAHITI:
1368 case CHIP_PITCAIRN:
1369 case CHIP_OLAND:
1370 case CHIP_HAINAN:
1371#endif
1372#ifdef CONFIG_DRM_AMDGPU_CIK
1373 case CHIP_BONAIRE:
1374 case CHIP_HAWAII:
1375 case CHIP_KAVERI:
1376 case CHIP_KABINI:
1377 case CHIP_MULLINS:
1378#endif
1379 default:
1380 return 0;
1381 case CHIP_VEGA10:
1382 chip_name = "vega10";
1383 break;
Alex Deucher2d2e5e72017-05-09 12:27:35 -04001384 case CHIP_RAVEN:
1385 chip_name = "raven";
1386 break;
Alex Deuchere2a75f82017-04-27 16:58:01 -04001387 }
1388
1389 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001390 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001391 if (err) {
1392 dev_err(adev->dev,
1393 "Failed to load gpu_info firmware \"%s\"\n",
1394 fw_name);
1395 goto out;
1396 }
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001397 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001398 if (err) {
1399 dev_err(adev->dev,
1400 "Failed to validate gpu_info firmware \"%s\"\n",
1401 fw_name);
1402 goto out;
1403 }
1404
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001405 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
Alex Deuchere2a75f82017-04-27 16:58:01 -04001406 amdgpu_ucode_print_gpu_info_hdr(&hdr->header);
1407
1408 switch (hdr->version_major) {
1409 case 1:
1410 {
1411 const struct gpu_info_firmware_v1_0 *gpu_info_fw =
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001412 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
Alex Deuchere2a75f82017-04-27 16:58:01 -04001413 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1414
Alex Deucherb5ab16b2017-05-11 19:09:49 -04001415 adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se);
1416 adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh);
1417 adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se);
1418 adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001419 adev->gfx.config.max_texture_channel_caches =
Alex Deucherb5ab16b2017-05-11 19:09:49 -04001420 le32_to_cpu(gpu_info_fw->gc_num_tccs);
1421 adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs);
1422 adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds);
1423 adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth);
1424 adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001425 adev->gfx.config.double_offchip_lds_buf =
Alex Deucherb5ab16b2017-05-11 19:09:49 -04001426 le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer);
1427 adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size);
Hawking Zhang51fd0372017-06-09 22:30:52 +08001428 adev->gfx.cu_info.max_waves_per_simd =
1429 le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd);
1430 adev->gfx.cu_info.max_scratch_slots_per_cu =
1431 le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu);
1432 adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001433 break;
1434 }
1435 default:
1436 dev_err(adev->dev,
1437 "Unsupported gpu_info table %d\n", hdr->header.ucode_version);
1438 err = -EINVAL;
1439 goto out;
1440 }
1441out:
Alex Deuchere2a75f82017-04-27 16:58:01 -04001442 return err;
1443}
1444
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001445static int amdgpu_early_init(struct amdgpu_device *adev)
1446{
Alex Deucheraaa36a92015-04-20 17:31:14 -04001447 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001448
Alex Deucher483ef982016-09-30 12:43:04 -04001449 amdgpu_device_enable_virtual_display(adev);
Emily Denga6be7572016-08-08 11:37:50 +08001450
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001451 switch (adev->asic_type) {
Alex Deucheraaa36a92015-04-20 17:31:14 -04001452 case CHIP_TOPAZ:
1453 case CHIP_TONGA:
David Zhang48299f92015-07-08 01:05:16 +08001454 case CHIP_FIJI:
Flora Cui2cc0c0b2016-03-14 18:33:29 -04001455 case CHIP_POLARIS11:
1456 case CHIP_POLARIS10:
Junwei Zhangc4642a42016-12-14 15:32:28 -05001457 case CHIP_POLARIS12:
Alex Deucheraaa36a92015-04-20 17:31:14 -04001458 case CHIP_CARRIZO:
Samuel Li39bb0c92015-10-08 16:31:43 -04001459 case CHIP_STONEY:
1460 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
Alex Deucheraaa36a92015-04-20 17:31:14 -04001461 adev->family = AMDGPU_FAMILY_CZ;
1462 else
1463 adev->family = AMDGPU_FAMILY_VI;
1464
1465 r = vi_set_ip_blocks(adev);
1466 if (r)
1467 return r;
1468 break;
Ken Wang33f34802016-01-21 17:29:41 +08001469#ifdef CONFIG_DRM_AMDGPU_SI
1470 case CHIP_VERDE:
1471 case CHIP_TAHITI:
1472 case CHIP_PITCAIRN:
1473 case CHIP_OLAND:
1474 case CHIP_HAINAN:
Ken Wang295d0da2016-05-24 21:02:53 +08001475 adev->family = AMDGPU_FAMILY_SI;
Ken Wang33f34802016-01-21 17:29:41 +08001476 r = si_set_ip_blocks(adev);
1477 if (r)
1478 return r;
1479 break;
1480#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -04001481#ifdef CONFIG_DRM_AMDGPU_CIK
1482 case CHIP_BONAIRE:
1483 case CHIP_HAWAII:
1484 case CHIP_KAVERI:
1485 case CHIP_KABINI:
1486 case CHIP_MULLINS:
1487 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1488 adev->family = AMDGPU_FAMILY_CI;
1489 else
1490 adev->family = AMDGPU_FAMILY_KV;
1491
1492 r = cik_set_ip_blocks(adev);
1493 if (r)
1494 return r;
1495 break;
1496#endif
Chunming Zhou2ca8a5d2016-12-07 17:31:19 +08001497 case CHIP_VEGA10:
1498 case CHIP_RAVEN:
1499 if (adev->asic_type == CHIP_RAVEN)
1500 adev->family = AMDGPU_FAMILY_RV;
1501 else
1502 adev->family = AMDGPU_FAMILY_AI;
Ken Wang460826e2017-03-06 14:53:16 -05001503
1504 r = soc15_set_ip_blocks(adev);
1505 if (r)
1506 return r;
1507 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001508 default:
1509 /* FIXME: not supported yet */
1510 return -EINVAL;
1511 }
1512
Alex Deuchere2a75f82017-04-27 16:58:01 -04001513 r = amdgpu_device_parse_gpu_info_fw(adev);
1514 if (r)
1515 return r;
1516
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001517 if (amdgpu_sriov_vf(adev)) {
1518 r = amdgpu_virt_request_full_gpu(adev, true);
1519 if (r)
1520 return r;
1521 }
1522
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001523 for (i = 0; i < adev->num_ip_blocks; i++) {
1524 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
Huang Ruied8cf002017-05-03 09:40:17 +08001525 DRM_ERROR("disabled ip block: %d <%s>\n",
1526 i, adev->ip_blocks[i].version->funcs->name);
Alex Deuchera1255102016-10-13 17:41:13 -04001527 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001528 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001529 if (adev->ip_blocks[i].version->funcs->early_init) {
1530 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001531 if (r == -ENOENT) {
Alex Deuchera1255102016-10-13 17:41:13 -04001532 adev->ip_blocks[i].status.valid = false;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001533 } else if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001534 DRM_ERROR("early_init of IP block <%s> failed %d\n",
1535 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001536 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001537 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001538 adev->ip_blocks[i].status.valid = true;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001539 }
Alex Deucher974e6b62015-07-10 13:59:44 -04001540 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001541 adev->ip_blocks[i].status.valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001542 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001543 }
1544 }
1545
Nicolai Hähnle395d1fb2016-06-02 12:32:07 +02001546 adev->cg_flags &= amdgpu_cg_mask;
1547 adev->pg_flags &= amdgpu_pg_mask;
1548
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001549 return 0;
1550}
1551
1552static int amdgpu_init(struct amdgpu_device *adev)
1553{
1554 int i, r;
1555
1556 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001557 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001558 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001559 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001560 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001561 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
1562 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001563 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001564 }
Alex Deuchera1255102016-10-13 17:41:13 -04001565 adev->ip_blocks[i].status.sw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001566 /* need to do gmc hw init early so we can allocate gpu mem */
Alex Deuchera1255102016-10-13 17:41:13 -04001567 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001568 r = amdgpu_vram_scratch_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001569 if (r) {
1570 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001571 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001572 }
Alex Deuchera1255102016-10-13 17:41:13 -04001573 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001574 if (r) {
1575 DRM_ERROR("hw_init %d failed %d\n", i, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001576 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001577 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001578 r = amdgpu_wb_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001579 if (r) {
1580 DRM_ERROR("amdgpu_wb_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001581 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001582 }
Alex Deuchera1255102016-10-13 17:41:13 -04001583 adev->ip_blocks[i].status.hw = true;
Monk Liu24936642017-01-09 15:54:32 +08001584
1585 /* right after GMC hw init, we create CSA */
1586 if (amdgpu_sriov_vf(adev)) {
1587 r = amdgpu_allocate_static_csa(adev);
1588 if (r) {
1589 DRM_ERROR("allocate CSA failed %d\n", r);
1590 return r;
1591 }
1592 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001593 }
1594 }
1595
1596 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001597 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001598 continue;
1599 /* gmc hw init is done early */
Alex Deuchera1255102016-10-13 17:41:13 -04001600 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001601 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001602 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001603 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001604 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1605 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001606 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001607 }
Alex Deuchera1255102016-10-13 17:41:13 -04001608 adev->ip_blocks[i].status.hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001609 }
1610
1611 return 0;
1612}
1613
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08001614static void amdgpu_fill_reset_magic(struct amdgpu_device *adev)
1615{
1616 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
1617}
1618
1619static bool amdgpu_check_vram_lost(struct amdgpu_device *adev)
1620{
1621 return !!memcmp(adev->gart.ptr, adev->reset_magic,
1622 AMDGPU_RESET_MAGIC_NUM);
1623}
1624
Shirish S2dc80b02017-05-25 10:05:25 +05301625static int amdgpu_late_set_cg_state(struct amdgpu_device *adev)
1626{
1627 int i = 0, r;
1628
1629 for (i = 0; i < adev->num_ip_blocks; i++) {
1630 if (!adev->ip_blocks[i].status.valid)
1631 continue;
1632 /* skip CG for VCE/UVD, it's handled specially */
1633 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1634 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
1635 /* enable clockgating to save power */
1636 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1637 AMD_CG_STATE_GATE);
1638 if (r) {
1639 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
1640 adev->ip_blocks[i].version->funcs->name, r);
1641 return r;
1642 }
1643 }
1644 }
1645 return 0;
1646}
1647
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001648static int amdgpu_late_init(struct amdgpu_device *adev)
1649{
1650 int i = 0, r;
1651
1652 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001653 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001654 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001655 if (adev->ip_blocks[i].version->funcs->late_init) {
1656 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001657 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001658 DRM_ERROR("late_init of IP block <%s> failed %d\n",
1659 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001660 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001661 }
Alex Deuchera1255102016-10-13 17:41:13 -04001662 adev->ip_blocks[i].status.late_initialized = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001663 }
1664 }
1665
Shirish S2dc80b02017-05-25 10:05:25 +05301666 mod_delayed_work(system_wq, &adev->late_init_work,
1667 msecs_to_jiffies(AMDGPU_RESUME_MS));
1668
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08001669 amdgpu_fill_reset_magic(adev);
1670
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001671 return 0;
1672}
1673
1674static int amdgpu_fini(struct amdgpu_device *adev)
1675{
1676 int i, r;
1677
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001678 /* need to disable SMC first */
1679 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001680 if (!adev->ip_blocks[i].status.hw)
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001681 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001682 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001683 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
Alex Deuchera1255102016-10-13 17:41:13 -04001684 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1685 AMD_CG_STATE_UNGATE);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001686 if (r) {
1687 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001688 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001689 return r;
1690 }
Alex Deuchera1255102016-10-13 17:41:13 -04001691 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001692 /* XXX handle errors */
1693 if (r) {
1694 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001695 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001696 }
Alex Deuchera1255102016-10-13 17:41:13 -04001697 adev->ip_blocks[i].status.hw = false;
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001698 break;
1699 }
1700 }
1701
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001702 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001703 if (!adev->ip_blocks[i].status.hw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001704 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001705 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001706 amdgpu_wb_fini(adev);
1707 amdgpu_vram_scratch_fini(adev);
1708 }
Rex Zhu8201a672016-11-24 21:44:44 +08001709
1710 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1711 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
1712 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
1713 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1714 AMD_CG_STATE_UNGATE);
1715 if (r) {
1716 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1717 adev->ip_blocks[i].version->funcs->name, r);
1718 return r;
1719 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001720 }
Rex Zhu8201a672016-11-24 21:44:44 +08001721
Alex Deuchera1255102016-10-13 17:41:13 -04001722 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001723 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001724 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001725 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1726 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001727 }
Rex Zhu8201a672016-11-24 21:44:44 +08001728
Alex Deuchera1255102016-10-13 17:41:13 -04001729 adev->ip_blocks[i].status.hw = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001730 }
1731
1732 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001733 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001734 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001735 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001736 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001737 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001738 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
1739 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001740 }
Alex Deuchera1255102016-10-13 17:41:13 -04001741 adev->ip_blocks[i].status.sw = false;
1742 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001743 }
1744
Monk Liua6dcfd92016-05-19 14:36:34 +08001745 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001746 if (!adev->ip_blocks[i].status.late_initialized)
Grazvydas Ignotas8a2eef12016-10-03 00:06:44 +03001747 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001748 if (adev->ip_blocks[i].version->funcs->late_fini)
1749 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
1750 adev->ip_blocks[i].status.late_initialized = false;
Monk Liua6dcfd92016-05-19 14:36:34 +08001751 }
1752
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001753 if (amdgpu_sriov_vf(adev)) {
Monk Liu24936642017-01-09 15:54:32 +08001754 amdgpu_bo_free_kernel(&adev->virt.csa_obj, &adev->virt.csa_vmid0_addr, NULL);
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001755 amdgpu_virt_release_full_gpu(adev, false);
1756 }
Monk Liu24936642017-01-09 15:54:32 +08001757
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001758 return 0;
1759}
1760
Shirish S2dc80b02017-05-25 10:05:25 +05301761static void amdgpu_late_init_func_handler(struct work_struct *work)
1762{
1763 struct amdgpu_device *adev =
1764 container_of(work, struct amdgpu_device, late_init_work.work);
1765 amdgpu_late_set_cg_state(adev);
1766}
1767
Alex Deucherfaefba92016-12-06 10:38:29 -05001768int amdgpu_suspend(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001769{
1770 int i, r;
1771
Xiangliang Yue941ea92017-01-18 12:47:55 +08001772 if (amdgpu_sriov_vf(adev))
1773 amdgpu_virt_request_full_gpu(adev, false);
1774
Flora Cuic5a93a22016-02-26 10:45:25 +08001775 /* ungate SMC block first */
1776 r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC,
1777 AMD_CG_STATE_UNGATE);
1778 if (r) {
1779 DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r);
1780 }
1781
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001782 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001783 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001784 continue;
1785 /* ungate blocks so that suspend can properly shut them down */
Flora Cuic5a93a22016-02-26 10:45:25 +08001786 if (i != AMD_IP_BLOCK_TYPE_SMC) {
Alex Deuchera1255102016-10-13 17:41:13 -04001787 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1788 AMD_CG_STATE_UNGATE);
Flora Cuic5a93a22016-02-26 10:45:25 +08001789 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001790 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1791 adev->ip_blocks[i].version->funcs->name, r);
Flora Cuic5a93a22016-02-26 10:45:25 +08001792 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001793 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001794 /* XXX handle errors */
Alex Deuchera1255102016-10-13 17:41:13 -04001795 r = adev->ip_blocks[i].version->funcs->suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001796 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001797 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001798 DRM_ERROR("suspend of IP block <%s> failed %d\n",
1799 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001800 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001801 }
1802
Xiangliang Yue941ea92017-01-18 12:47:55 +08001803 if (amdgpu_sriov_vf(adev))
1804 amdgpu_virt_release_full_gpu(adev, false);
1805
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001806 return 0;
1807}
1808
Monk Liue4f0fdc2017-02-09 11:55:49 +08001809static int amdgpu_sriov_reinit_early(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001810{
1811 int i, r;
1812
Monk Liu2cb681b2017-04-26 12:00:49 +08001813 static enum amd_ip_block_type ip_order[] = {
1814 AMD_IP_BLOCK_TYPE_GMC,
1815 AMD_IP_BLOCK_TYPE_COMMON,
Monk Liu2cb681b2017-04-26 12:00:49 +08001816 AMD_IP_BLOCK_TYPE_IH,
1817 };
Monk Liua90ad3c2017-01-23 14:22:08 +08001818
Monk Liu2cb681b2017-04-26 12:00:49 +08001819 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
1820 int j;
1821 struct amdgpu_ip_block *block;
Monk Liua90ad3c2017-01-23 14:22:08 +08001822
Monk Liu2cb681b2017-04-26 12:00:49 +08001823 for (j = 0; j < adev->num_ip_blocks; j++) {
1824 block = &adev->ip_blocks[j];
1825
1826 if (block->version->type != ip_order[i] ||
1827 !block->status.valid)
1828 continue;
1829
1830 r = block->version->funcs->hw_init(adev);
1831 DRM_INFO("RE-INIT: %s %s\n", block->version->funcs->name, r?"failed":"successed");
Monk Liua90ad3c2017-01-23 14:22:08 +08001832 }
1833 }
1834
1835 return 0;
1836}
1837
Monk Liue4f0fdc2017-02-09 11:55:49 +08001838static int amdgpu_sriov_reinit_late(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001839{
1840 int i, r;
1841
Monk Liu2cb681b2017-04-26 12:00:49 +08001842 static enum amd_ip_block_type ip_order[] = {
1843 AMD_IP_BLOCK_TYPE_SMC,
1844 AMD_IP_BLOCK_TYPE_DCE,
1845 AMD_IP_BLOCK_TYPE_GFX,
1846 AMD_IP_BLOCK_TYPE_SDMA,
Frank Min257deb82017-06-15 20:07:36 +08001847 AMD_IP_BLOCK_TYPE_UVD,
1848 AMD_IP_BLOCK_TYPE_VCE
Monk Liu2cb681b2017-04-26 12:00:49 +08001849 };
Monk Liua90ad3c2017-01-23 14:22:08 +08001850
Monk Liu2cb681b2017-04-26 12:00:49 +08001851 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
1852 int j;
1853 struct amdgpu_ip_block *block;
Monk Liua90ad3c2017-01-23 14:22:08 +08001854
Monk Liu2cb681b2017-04-26 12:00:49 +08001855 for (j = 0; j < adev->num_ip_blocks; j++) {
1856 block = &adev->ip_blocks[j];
1857
1858 if (block->version->type != ip_order[i] ||
1859 !block->status.valid)
1860 continue;
1861
1862 r = block->version->funcs->hw_init(adev);
1863 DRM_INFO("RE-INIT: %s %s\n", block->version->funcs->name, r?"failed":"successed");
Monk Liua90ad3c2017-01-23 14:22:08 +08001864 }
1865 }
1866
1867 return 0;
1868}
1869
Chunming Zhoufcf06492017-05-05 10:33:33 +08001870static int amdgpu_resume_phase1(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001871{
1872 int i, r;
1873
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001874 for (i = 0; i < adev->num_ip_blocks; i++) {
1875 if (!adev->ip_blocks[i].status.valid)
1876 continue;
Chunming Zhoufcf06492017-05-05 10:33:33 +08001877 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1878 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
1879 adev->ip_blocks[i].version->type ==
1880 AMD_IP_BLOCK_TYPE_IH) {
1881 r = adev->ip_blocks[i].version->funcs->resume(adev);
1882 if (r) {
1883 DRM_ERROR("resume of IP block <%s> failed %d\n",
1884 adev->ip_blocks[i].version->funcs->name, r);
1885 return r;
1886 }
1887 }
1888 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001889
Chunming Zhoufcf06492017-05-05 10:33:33 +08001890 return 0;
1891}
1892
1893static int amdgpu_resume_phase2(struct amdgpu_device *adev)
1894{
1895 int i, r;
1896
1897 for (i = 0; i < adev->num_ip_blocks; i++) {
1898 if (!adev->ip_blocks[i].status.valid)
1899 continue;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001900 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1901 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
1902 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH )
1903 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001904 r = adev->ip_blocks[i].version->funcs->resume(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001905 if (r) {
1906 DRM_ERROR("resume of IP block <%s> failed %d\n",
1907 adev->ip_blocks[i].version->funcs->name, r);
1908 return r;
1909 }
1910 }
1911
1912 return 0;
1913}
1914
1915static int amdgpu_resume(struct amdgpu_device *adev)
1916{
Chunming Zhoufcf06492017-05-05 10:33:33 +08001917 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001918
Chunming Zhoufcf06492017-05-05 10:33:33 +08001919 r = amdgpu_resume_phase1(adev);
1920 if (r)
1921 return r;
1922 r = amdgpu_resume_phase2(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001923
Chunming Zhoufcf06492017-05-05 10:33:33 +08001924 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001925}
1926
Monk Liu4e99a442016-03-31 13:26:59 +08001927static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
Andres Rodriguez048765a2016-06-11 02:51:32 -04001928{
Alex Deuchera5bde2f2016-09-23 16:23:41 -04001929 if (adev->is_atom_fw) {
1930 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
1931 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
1932 } else {
1933 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
1934 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
1935 }
Andres Rodriguez048765a2016-06-11 02:51:32 -04001936}
1937
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001938/**
1939 * amdgpu_device_init - initialize the driver
1940 *
1941 * @adev: amdgpu_device pointer
1942 * @pdev: drm dev pointer
1943 * @pdev: pci dev pointer
1944 * @flags: driver flags
1945 *
1946 * Initializes the driver info and hw (all asics).
1947 * Returns 0 for success or an error on failure.
1948 * Called at driver startup.
1949 */
1950int amdgpu_device_init(struct amdgpu_device *adev,
1951 struct drm_device *ddev,
1952 struct pci_dev *pdev,
1953 uint32_t flags)
1954{
1955 int r, i;
1956 bool runtime = false;
Marek Olšák95844d22016-08-17 23:49:27 +02001957 u32 max_MBps;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001958
1959 adev->shutdown = false;
1960 adev->dev = &pdev->dev;
1961 adev->ddev = ddev;
1962 adev->pdev = pdev;
1963 adev->flags = flags;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001964 adev->asic_type = flags & AMD_ASIC_MASK;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001965 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
Christian König6f02a692017-07-07 11:56:59 +02001966 adev->mc.gart_size = 512 * 1024 * 1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001967 adev->accel_working = false;
1968 adev->num_rings = 0;
1969 adev->mman.buffer_funcs = NULL;
1970 adev->mman.buffer_funcs_ring = NULL;
1971 adev->vm_manager.vm_pte_funcs = NULL;
Christian König2d55e452016-02-08 17:37:38 +01001972 adev->vm_manager.vm_pte_num_rings = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001973 adev->gart.gart_funcs = NULL;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001974 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001975
1976 adev->smc_rreg = &amdgpu_invalid_rreg;
1977 adev->smc_wreg = &amdgpu_invalid_wreg;
1978 adev->pcie_rreg = &amdgpu_invalid_rreg;
1979 adev->pcie_wreg = &amdgpu_invalid_wreg;
Huang Rui36b9a952016-08-31 13:23:25 +08001980 adev->pciep_rreg = &amdgpu_invalid_rreg;
1981 adev->pciep_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001982 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
1983 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
1984 adev->didt_rreg = &amdgpu_invalid_rreg;
1985 adev->didt_wreg = &amdgpu_invalid_wreg;
Rex Zhuccdbb202016-06-08 12:47:41 +08001986 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
1987 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001988 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
1989 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
1990
Rex Zhuccdbb202016-06-08 12:47:41 +08001991
Alex Deucher3e39ab92015-06-05 15:04:33 -04001992 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1993 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
1994 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001995
1996 /* mutex initialization are all done here so we
1997 * can recall function without having locking issues */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001998 atomic_set(&adev->irq.ih.lock, 0);
Huang Rui0e5ca0d2017-03-03 18:37:23 -05001999 mutex_init(&adev->firmware.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002000 mutex_init(&adev->pm.mutex);
2001 mutex_init(&adev->gfx.gpu_clock_mutex);
2002 mutex_init(&adev->srbm_mutex);
2003 mutex_init(&adev->grbm_idx_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002004 mutex_init(&adev->mn_lock);
2005 hash_init(adev->mn_hash);
2006
2007 amdgpu_check_arguments(adev);
2008
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002009 spin_lock_init(&adev->mmio_idx_lock);
2010 spin_lock_init(&adev->smc_idx_lock);
2011 spin_lock_init(&adev->pcie_idx_lock);
2012 spin_lock_init(&adev->uvd_ctx_idx_lock);
2013 spin_lock_init(&adev->didt_idx_lock);
Rex Zhuccdbb202016-06-08 12:47:41 +08002014 spin_lock_init(&adev->gc_cac_idx_lock);
Evan Quan16abb5d2017-07-04 09:21:50 +08002015 spin_lock_init(&adev->se_cac_idx_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002016 spin_lock_init(&adev->audio_endpt_idx_lock);
Marek Olšák95844d22016-08-17 23:49:27 +02002017 spin_lock_init(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002018
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +08002019 INIT_LIST_HEAD(&adev->shadow_list);
2020 mutex_init(&adev->shadow_list_lock);
2021
Chunming Zhou5c1354b2016-08-30 16:13:10 +08002022 INIT_LIST_HEAD(&adev->gtt_list);
2023 spin_lock_init(&adev->gtt_list_lock);
2024
Andres Rodriguez795f2812017-03-06 16:27:55 -05002025 INIT_LIST_HEAD(&adev->ring_lru_list);
2026 spin_lock_init(&adev->ring_lru_list_lock);
2027
Shirish S2dc80b02017-05-25 10:05:25 +05302028 INIT_DELAYED_WORK(&adev->late_init_work, amdgpu_late_init_func_handler);
2029
Alex Xie0fa49552017-06-08 14:58:05 -04002030 /* Registers mapping */
2031 /* TODO: block userspace mapping of io register */
Ken Wangda69c1612016-01-21 19:08:55 +08002032 if (adev->asic_type >= CHIP_BONAIRE) {
2033 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
2034 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
2035 } else {
2036 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
2037 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
2038 }
Chunming Zhou5c1354b2016-08-30 16:13:10 +08002039
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002040 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
2041 if (adev->rmmio == NULL) {
2042 return -ENOMEM;
2043 }
2044 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
2045 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
2046
Ken Wangda69c1612016-01-21 19:08:55 +08002047 if (adev->asic_type >= CHIP_BONAIRE)
2048 /* doorbell bar mapping */
2049 amdgpu_doorbell_init(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002050
2051 /* io port mapping */
2052 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
2053 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
2054 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
2055 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
2056 break;
2057 }
2058 }
2059 if (adev->rio_mem == NULL)
Amber Linb64a18c2017-01-04 08:06:58 -05002060 DRM_INFO("PCI I/O BAR is not found.\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002061
2062 /* early init functions */
2063 r = amdgpu_early_init(adev);
2064 if (r)
2065 return r;
2066
2067 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
2068 /* this will fail for cards that aren't VGA class devices, just
2069 * ignore it */
2070 vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
2071
2072 if (amdgpu_runtime_pm == 1)
2073 runtime = true;
Alex Deuchere9bef452016-04-25 13:12:18 -04002074 if (amdgpu_device_is_px(ddev))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002075 runtime = true;
Lukas Wunner84c8b222017-03-10 21:23:45 +01002076 if (!pci_is_thunderbolt_attached(adev->pdev))
2077 vga_switcheroo_register_client(adev->pdev,
2078 &amdgpu_switcheroo_ops, runtime);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002079 if (runtime)
2080 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
2081
2082 /* Read BIOS */
Alex Deucher83ba1262016-06-03 18:21:41 -04002083 if (!amdgpu_get_bios(adev)) {
2084 r = -EINVAL;
2085 goto failed;
2086 }
Nils Wallméniusf7e9e9f2016-12-14 21:52:45 +01002087
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002088 r = amdgpu_atombios_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002089 if (r) {
2090 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002091 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0);
Alex Deucher83ba1262016-06-03 18:21:41 -04002092 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002093 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002094
Monk Liu4e99a442016-03-31 13:26:59 +08002095 /* detect if we are with an SRIOV vbios */
2096 amdgpu_device_detect_sriov_bios(adev);
Andres Rodriguez048765a2016-06-11 02:51:32 -04002097
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002098 /* Post card if necessary */
Monk Liubec86372016-09-14 19:38:08 +08002099 if (amdgpu_vpost_needed(adev)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002100 if (!adev->bios) {
Monk Liubec86372016-09-14 19:38:08 +08002101 dev_err(adev->dev, "no vBIOS found\n");
Gavin Wan89041942017-06-23 13:55:15 -04002102 amdgpu_vf_error_put(AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
Alex Deucher83ba1262016-06-03 18:21:41 -04002103 r = -EINVAL;
2104 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002105 }
Monk Liubec86372016-09-14 19:38:08 +08002106 DRM_INFO("GPU posting now...\n");
Monk Liu4e99a442016-03-31 13:26:59 +08002107 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2108 if (r) {
2109 dev_err(adev->dev, "gpu post error!\n");
Gavin Wan89041942017-06-23 13:55:15 -04002110 amdgpu_vf_error_put(AMDGIM_ERROR_VF_GPU_POST_ERROR, 0, 0);
Monk Liu4e99a442016-03-31 13:26:59 +08002111 goto failed;
2112 }
2113 } else {
2114 DRM_INFO("GPU post is not needed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002115 }
2116
Alex Deucher88b64e92017-07-10 10:43:10 -04002117 if (adev->is_atom_fw) {
2118 /* Initialize clocks */
2119 r = amdgpu_atomfirmware_get_clock_info(adev);
2120 if (r) {
2121 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
2122 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2123 goto failed;
2124 }
2125 } else {
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002126 /* Initialize clocks */
2127 r = amdgpu_atombios_get_clock_info(adev);
2128 if (r) {
2129 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002130 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2131 goto failed;
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002132 }
2133 /* init i2c buses */
2134 amdgpu_atombios_i2c_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002135 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002136
2137 /* Fence driver */
2138 r = amdgpu_fence_driver_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002139 if (r) {
2140 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002141 amdgpu_vf_error_put(AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
Alex Deucher83ba1262016-06-03 18:21:41 -04002142 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002143 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002144
2145 /* init the mode config */
2146 drm_mode_config_init(adev->ddev);
2147
2148 r = amdgpu_init(adev);
2149 if (r) {
Alex Deucher2c1a2782015-12-07 17:02:53 -05002150 dev_err(adev->dev, "amdgpu_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002151 amdgpu_vf_error_put(AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002152 amdgpu_fini(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002153 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002154 }
2155
2156 adev->accel_working = true;
2157
Alex Xiee59c0202017-06-01 09:42:59 -04002158 amdgpu_vm_check_compute_bug(adev);
2159
Marek Olšák95844d22016-08-17 23:49:27 +02002160 /* Initialize the buffer migration limit. */
2161 if (amdgpu_moverate >= 0)
2162 max_MBps = amdgpu_moverate;
2163 else
2164 max_MBps = 8; /* Allow 8 MB/s. */
2165 /* Get a log2 for easy divisions. */
2166 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
2167
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002168 r = amdgpu_ib_pool_init(adev);
2169 if (r) {
2170 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
Gavin Wan89041942017-06-23 13:55:15 -04002171 amdgpu_vf_error_put(AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
Alex Deucher83ba1262016-06-03 18:21:41 -04002172 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002173 }
2174
2175 r = amdgpu_ib_ring_tests(adev);
2176 if (r)
2177 DRM_ERROR("ib ring test failed (%d).\n", r);
2178
Monk Liu9bc92b92017-02-08 17:38:13 +08002179 amdgpu_fbdev_init(adev);
2180
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002181 r = amdgpu_gem_debugfs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002182 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002183 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002184
2185 r = amdgpu_debugfs_regs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002186 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002187 DRM_ERROR("registering register debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002188
Huang Rui4f0955f2017-05-10 23:04:06 +08002189 r = amdgpu_debugfs_test_ib_ring_init(adev);
2190 if (r)
2191 DRM_ERROR("registering register test ib ring debugfs failed (%d).\n", r);
2192
Huang Rui50ab2532016-06-12 15:51:09 +08002193 r = amdgpu_debugfs_firmware_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002194 if (r)
Huang Rui50ab2532016-06-12 15:51:09 +08002195 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
Huang Rui50ab2532016-06-12 15:51:09 +08002196
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002197 if ((amdgpu_testing & 1)) {
2198 if (adev->accel_working)
2199 amdgpu_test_moves(adev);
2200 else
2201 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
2202 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002203 if (amdgpu_benchmarking) {
2204 if (adev->accel_working)
2205 amdgpu_benchmark(adev, amdgpu_benchmarking);
2206 else
2207 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
2208 }
2209
2210 /* enable clockgating, etc. after ib tests, etc. since some blocks require
2211 * explicit gating rather than handling it automatically.
2212 */
2213 r = amdgpu_late_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002214 if (r) {
2215 dev_err(adev->dev, "amdgpu_late_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002216 amdgpu_vf_error_put(AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
Alex Deucher83ba1262016-06-03 18:21:41 -04002217 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002218 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002219
2220 return 0;
Alex Deucher83ba1262016-06-03 18:21:41 -04002221
2222failed:
Gavin Wan89041942017-06-23 13:55:15 -04002223 amdgpu_vf_error_trans_all(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002224 if (runtime)
2225 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2226 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002227}
2228
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002229/**
2230 * amdgpu_device_fini - tear down the driver
2231 *
2232 * @adev: amdgpu_device pointer
2233 *
2234 * Tear down the driver info (all asics).
2235 * Called at driver shutdown.
2236 */
2237void amdgpu_device_fini(struct amdgpu_device *adev)
2238{
2239 int r;
2240
2241 DRM_INFO("amdgpu: finishing device.\n");
2242 adev->shutdown = true;
Pixel Dingdb2c2a92017-04-25 16:47:42 +08002243 if (adev->mode_info.mode_config_initialized)
2244 drm_crtc_force_disable_all(adev->ddev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002245 /* evict vram memory */
2246 amdgpu_bo_evict_vram(adev);
2247 amdgpu_ib_pool_fini(adev);
2248 amdgpu_fence_driver_fini(adev);
2249 amdgpu_fbdev_fini(adev);
2250 r = amdgpu_fini(adev);
Huang Ruiab4fe3e2017-06-05 22:11:59 +08002251 if (adev->firmware.gpu_info_fw) {
2252 release_firmware(adev->firmware.gpu_info_fw);
2253 adev->firmware.gpu_info_fw = NULL;
2254 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002255 adev->accel_working = false;
Shirish S2dc80b02017-05-25 10:05:25 +05302256 cancel_delayed_work_sync(&adev->late_init_work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002257 /* free i2c buses */
2258 amdgpu_i2c_fini(adev);
2259 amdgpu_atombios_fini(adev);
2260 kfree(adev->bios);
2261 adev->bios = NULL;
Lukas Wunner84c8b222017-03-10 21:23:45 +01002262 if (!pci_is_thunderbolt_attached(adev->pdev))
2263 vga_switcheroo_unregister_client(adev->pdev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002264 if (adev->flags & AMD_IS_PX)
2265 vga_switcheroo_fini_domain_pm_ops(adev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002266 vga_client_register(adev->pdev, NULL, NULL, NULL);
2267 if (adev->rio_mem)
2268 pci_iounmap(adev->pdev, adev->rio_mem);
2269 adev->rio_mem = NULL;
2270 iounmap(adev->rmmio);
2271 adev->rmmio = NULL;
Ken Wangda69c1612016-01-21 19:08:55 +08002272 if (adev->asic_type >= CHIP_BONAIRE)
2273 amdgpu_doorbell_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002274 amdgpu_debugfs_regs_cleanup(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002275}
2276
2277
2278/*
2279 * Suspend & resume.
2280 */
2281/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002282 * amdgpu_device_suspend - initiate device suspend
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002283 *
2284 * @pdev: drm dev pointer
2285 * @state: suspend state
2286 *
2287 * Puts the hw in the suspend state (all asics).
2288 * Returns 0 for success or an error on failure.
2289 * Called at driver suspend.
2290 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002291int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002292{
2293 struct amdgpu_device *adev;
2294 struct drm_crtc *crtc;
2295 struct drm_connector *connector;
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002296 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002297
2298 if (dev == NULL || dev->dev_private == NULL) {
2299 return -ENODEV;
2300 }
2301
2302 adev = dev->dev_private;
2303
2304 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2305 return 0;
2306
2307 drm_kms_helper_poll_disable(dev);
2308
2309 /* turn off display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002310 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002311 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2312 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
2313 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002314 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002315
Yong Zhaoba997702015-11-09 17:21:45 -05002316 amdgpu_amdkfd_suspend(adev);
2317
Alex Deucher756e6882015-10-08 00:03:36 -04002318 /* unpin the front buffers and cursors */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002319 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Alex Deucher756e6882015-10-08 00:03:36 -04002320 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002321 struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
2322 struct amdgpu_bo *robj;
2323
Alex Deucher756e6882015-10-08 00:03:36 -04002324 if (amdgpu_crtc->cursor_bo) {
2325 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
Alex Xie7a6901d2017-04-24 13:52:41 -04002326 r = amdgpu_bo_reserve(aobj, true);
Alex Deucher756e6882015-10-08 00:03:36 -04002327 if (r == 0) {
2328 amdgpu_bo_unpin(aobj);
2329 amdgpu_bo_unreserve(aobj);
2330 }
2331 }
2332
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002333 if (rfb == NULL || rfb->obj == NULL) {
2334 continue;
2335 }
2336 robj = gem_to_amdgpu_bo(rfb->obj);
2337 /* don't unpin kernel fb objects */
2338 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
Alex Xie7a6901d2017-04-24 13:52:41 -04002339 r = amdgpu_bo_reserve(robj, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002340 if (r == 0) {
2341 amdgpu_bo_unpin(robj);
2342 amdgpu_bo_unreserve(robj);
2343 }
2344 }
2345 }
2346 /* evict vram memory */
2347 amdgpu_bo_evict_vram(adev);
2348
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002349 amdgpu_fence_driver_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002350
2351 r = amdgpu_suspend(adev);
2352
Alex Deuchera0a71e42016-10-10 12:41:36 -04002353 /* evict remaining vram memory
2354 * This second call to evict vram is to evict the gart page table
2355 * using the CPU.
2356 */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002357 amdgpu_bo_evict_vram(adev);
2358
Alex Deucherd05da0e2017-06-30 17:08:45 -04002359 amdgpu_atombios_scratch_regs_save(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002360 pci_save_state(dev->pdev);
2361 if (suspend) {
2362 /* Shut down the device */
2363 pci_disable_device(dev->pdev);
2364 pci_set_power_state(dev->pdev, PCI_D3hot);
jimqu74b0b152016-09-07 17:09:12 +08002365 } else {
2366 r = amdgpu_asic_reset(adev);
2367 if (r)
2368 DRM_ERROR("amdgpu asic reset failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002369 }
2370
2371 if (fbcon) {
2372 console_lock();
2373 amdgpu_fbdev_set_suspend(adev, 1);
2374 console_unlock();
2375 }
2376 return 0;
2377}
2378
2379/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002380 * amdgpu_device_resume - initiate device resume
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002381 *
2382 * @pdev: drm dev pointer
2383 *
2384 * Bring the hw back to operating state (all asics).
2385 * Returns 0 for success or an error on failure.
2386 * Called at driver resume.
2387 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002388int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002389{
2390 struct drm_connector *connector;
2391 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher756e6882015-10-08 00:03:36 -04002392 struct drm_crtc *crtc;
Huang Rui03161a62017-04-13 16:12:26 +08002393 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002394
2395 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2396 return 0;
2397
jimqu74b0b152016-09-07 17:09:12 +08002398 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002399 console_lock();
jimqu74b0b152016-09-07 17:09:12 +08002400
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002401 if (resume) {
2402 pci_set_power_state(dev->pdev, PCI_D0);
2403 pci_restore_state(dev->pdev);
jimqu74b0b152016-09-07 17:09:12 +08002404 r = pci_enable_device(dev->pdev);
Huang Rui03161a62017-04-13 16:12:26 +08002405 if (r)
2406 goto unlock;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002407 }
Alex Deucherd05da0e2017-06-30 17:08:45 -04002408 amdgpu_atombios_scratch_regs_restore(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002409
2410 /* post card */
Jim Quc836fec2017-02-10 15:59:59 +08002411 if (amdgpu_need_post(adev)) {
jimqu74b0b152016-09-07 17:09:12 +08002412 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2413 if (r)
2414 DRM_ERROR("amdgpu asic init failed\n");
2415 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002416
2417 r = amdgpu_resume(adev);
Rex Zhue6707212017-03-30 13:21:01 +08002418 if (r) {
Flora Cuica198522016-02-04 15:10:08 +08002419 DRM_ERROR("amdgpu_resume failed (%d).\n", r);
Huang Rui03161a62017-04-13 16:12:26 +08002420 goto unlock;
Rex Zhue6707212017-03-30 13:21:01 +08002421 }
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002422 amdgpu_fence_driver_resume(adev);
2423
Flora Cuica198522016-02-04 15:10:08 +08002424 if (resume) {
2425 r = amdgpu_ib_ring_tests(adev);
2426 if (r)
2427 DRM_ERROR("ib ring test failed (%d).\n", r);
2428 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002429
2430 r = amdgpu_late_init(adev);
Huang Rui03161a62017-04-13 16:12:26 +08002431 if (r)
2432 goto unlock;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002433
Alex Deucher756e6882015-10-08 00:03:36 -04002434 /* pin cursors */
2435 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2436 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2437
2438 if (amdgpu_crtc->cursor_bo) {
2439 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
Alex Xie7a6901d2017-04-24 13:52:41 -04002440 r = amdgpu_bo_reserve(aobj, true);
Alex Deucher756e6882015-10-08 00:03:36 -04002441 if (r == 0) {
2442 r = amdgpu_bo_pin(aobj,
2443 AMDGPU_GEM_DOMAIN_VRAM,
2444 &amdgpu_crtc->cursor_addr);
2445 if (r != 0)
2446 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
2447 amdgpu_bo_unreserve(aobj);
2448 }
2449 }
2450 }
Yong Zhaoba997702015-11-09 17:21:45 -05002451 r = amdgpu_amdkfd_resume(adev);
2452 if (r)
2453 return r;
Alex Deucher756e6882015-10-08 00:03:36 -04002454
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002455 /* blat the mode back in */
2456 if (fbcon) {
2457 drm_helper_resume_force_mode(dev);
2458 /* turn on display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002459 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002460 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2461 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
2462 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002463 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002464 }
2465
2466 drm_kms_helper_poll_enable(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002467
2468 /*
2469 * Most of the connector probing functions try to acquire runtime pm
2470 * refs to ensure that the GPU is powered on when connector polling is
2471 * performed. Since we're calling this from a runtime PM callback,
2472 * trying to acquire rpm refs will cause us to deadlock.
2473 *
2474 * Since we're guaranteed to be holding the rpm lock, it's safe to
2475 * temporarily disable the rpm helpers so this doesn't deadlock us.
2476 */
2477#ifdef CONFIG_PM
2478 dev->dev->power.disable_depth++;
2479#endif
Alex Deucher54fb2a52015-11-24 14:30:56 -05002480 drm_helper_hpd_irq_event(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002481#ifdef CONFIG_PM
2482 dev->dev->power.disable_depth--;
2483#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002484
Huang Rui03161a62017-04-13 16:12:26 +08002485 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002486 amdgpu_fbdev_set_suspend(adev, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002487
Huang Rui03161a62017-04-13 16:12:26 +08002488unlock:
2489 if (fbcon)
2490 console_unlock();
2491
2492 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002493}
2494
Chunming Zhou63fbf422016-07-15 11:19:20 +08002495static bool amdgpu_check_soft_reset(struct amdgpu_device *adev)
2496{
2497 int i;
2498 bool asic_hang = false;
2499
2500 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002501 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou63fbf422016-07-15 11:19:20 +08002502 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002503 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
2504 adev->ip_blocks[i].status.hang =
2505 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
2506 if (adev->ip_blocks[i].status.hang) {
2507 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
Chunming Zhou63fbf422016-07-15 11:19:20 +08002508 asic_hang = true;
2509 }
2510 }
2511 return asic_hang;
2512}
2513
Baoyou Xie4d446652016-09-18 22:09:35 +08002514static int amdgpu_pre_soft_reset(struct amdgpu_device *adev)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002515{
2516 int i, r = 0;
2517
2518 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002519 if (!adev->ip_blocks[i].status.valid)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002520 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002521 if (adev->ip_blocks[i].status.hang &&
2522 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
2523 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
Chunming Zhoud31a5012016-07-18 10:04:34 +08002524 if (r)
2525 return r;
2526 }
2527 }
2528
2529 return 0;
2530}
2531
Chunming Zhou35d782f2016-07-15 15:57:13 +08002532static bool amdgpu_need_full_reset(struct amdgpu_device *adev)
2533{
Alex Deucherda146d32016-10-13 16:07:03 -04002534 int i;
2535
2536 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002537 if (!adev->ip_blocks[i].status.valid)
Alex Deucherda146d32016-10-13 16:07:03 -04002538 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002539 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
2540 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
2541 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
2542 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)) {
2543 if (adev->ip_blocks[i].status.hang) {
Alex Deucherda146d32016-10-13 16:07:03 -04002544 DRM_INFO("Some block need full reset!\n");
2545 return true;
2546 }
2547 }
Chunming Zhou35d782f2016-07-15 15:57:13 +08002548 }
2549 return false;
2550}
2551
2552static int amdgpu_soft_reset(struct amdgpu_device *adev)
2553{
2554 int i, r = 0;
2555
2556 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002557 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002558 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002559 if (adev->ip_blocks[i].status.hang &&
2560 adev->ip_blocks[i].version->funcs->soft_reset) {
2561 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002562 if (r)
2563 return r;
2564 }
2565 }
2566
2567 return 0;
2568}
2569
2570static int amdgpu_post_soft_reset(struct amdgpu_device *adev)
2571{
2572 int i, r = 0;
2573
2574 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002575 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002576 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002577 if (adev->ip_blocks[i].status.hang &&
2578 adev->ip_blocks[i].version->funcs->post_soft_reset)
2579 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002580 if (r)
2581 return r;
2582 }
2583
2584 return 0;
2585}
2586
Chunming Zhou3ad81f12016-08-05 17:30:17 +08002587bool amdgpu_need_backup(struct amdgpu_device *adev)
2588{
2589 if (adev->flags & AMD_IS_APU)
2590 return false;
2591
2592 return amdgpu_lockup_timeout > 0 ? true : false;
2593}
2594
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002595static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
2596 struct amdgpu_ring *ring,
2597 struct amdgpu_bo *bo,
Chris Wilsonf54d1862016-10-25 13:00:45 +01002598 struct dma_fence **fence)
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002599{
2600 uint32_t domain;
2601 int r;
2602
Roger.He23d2e502017-04-21 14:24:26 +08002603 if (!bo->shadow)
2604 return 0;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002605
Alex Xie1d284792017-04-24 13:53:04 -04002606 r = amdgpu_bo_reserve(bo, true);
Roger.He23d2e502017-04-21 14:24:26 +08002607 if (r)
2608 return r;
2609 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
2610 /* if bo has been evicted, then no need to recover */
2611 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
Roger.He82521312017-04-21 13:08:43 +08002612 r = amdgpu_bo_validate(bo->shadow);
2613 if (r) {
2614 DRM_ERROR("bo validate failed!\n");
2615 goto err;
2616 }
2617
2618 r = amdgpu_ttm_bind(&bo->shadow->tbo, &bo->shadow->tbo.mem);
2619 if (r) {
2620 DRM_ERROR("%p bind failed\n", bo->shadow);
2621 goto err;
2622 }
2623
Roger.He23d2e502017-04-21 14:24:26 +08002624 r = amdgpu_bo_restore_from_shadow(adev, ring, bo,
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002625 NULL, fence, true);
Roger.He23d2e502017-04-21 14:24:26 +08002626 if (r) {
2627 DRM_ERROR("recover page table failed!\n");
2628 goto err;
2629 }
2630 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002631err:
Roger.He23d2e502017-04-21 14:24:26 +08002632 amdgpu_bo_unreserve(bo);
2633 return r;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002634}
2635
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002636/**
Monk Liua90ad3c2017-01-23 14:22:08 +08002637 * amdgpu_sriov_gpu_reset - reset the asic
2638 *
2639 * @adev: amdgpu device pointer
Monk Liu7225f872017-04-26 14:51:54 +08002640 * @job: which job trigger hang
Monk Liua90ad3c2017-01-23 14:22:08 +08002641 *
2642 * Attempt the reset the GPU if it has hung (all asics).
2643 * for SRIOV case.
2644 * Returns 0 for success or an error on failure.
2645 */
Monk Liu7225f872017-04-26 14:51:54 +08002646int amdgpu_sriov_gpu_reset(struct amdgpu_device *adev, struct amdgpu_job *job)
Monk Liua90ad3c2017-01-23 14:22:08 +08002647{
Monk Liu65781c72017-05-11 13:36:44 +08002648 int i, j, r = 0;
Monk Liua90ad3c2017-01-23 14:22:08 +08002649 int resched;
2650 struct amdgpu_bo *bo, *tmp;
2651 struct amdgpu_ring *ring;
2652 struct dma_fence *fence = NULL, *next = NULL;
2653
Monk Liu147b5982017-01-25 15:48:01 +08002654 mutex_lock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002655 atomic_inc(&adev->gpu_reset_counter);
Monk Liu1fb37a32017-01-26 15:36:37 +08002656 adev->gfx.in_reset = true;
Monk Liua90ad3c2017-01-23 14:22:08 +08002657
2658 /* block TTM */
2659 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2660
Monk Liu65781c72017-05-11 13:36:44 +08002661 /* we start from the ring trigger GPU hang */
2662 j = job ? job->ring->idx : 0;
Monk Liua90ad3c2017-01-23 14:22:08 +08002663
Monk Liu65781c72017-05-11 13:36:44 +08002664 /* block scheduler */
2665 for (i = j; i < j + AMDGPU_MAX_RINGS; ++i) {
2666 ring = adev->rings[i % AMDGPU_MAX_RINGS];
Monk Liua90ad3c2017-01-23 14:22:08 +08002667 if (!ring || !ring->sched.thread)
2668 continue;
2669
2670 kthread_park(ring->sched.thread);
Monk Liua90ad3c2017-01-23 14:22:08 +08002671
Monk Liu65781c72017-05-11 13:36:44 +08002672 if (job && j != i)
2673 continue;
2674
Monk Liu4f059ec2017-05-11 13:59:15 +08002675 /* here give the last chance to check if job removed from mirror-list
Monk Liu65781c72017-05-11 13:36:44 +08002676 * since we already pay some time on kthread_park */
Monk Liu4f059ec2017-05-11 13:59:15 +08002677 if (job && list_empty(&job->base.node)) {
Monk Liu65781c72017-05-11 13:36:44 +08002678 kthread_unpark(ring->sched.thread);
2679 goto give_up_reset;
2680 }
2681
2682 if (amd_sched_invalidate_job(&job->base, amdgpu_job_hang_limit))
2683 amd_sched_job_kickout(&job->base);
2684
2685 /* only do job_reset on the hang ring if @job not NULL */
Monk Liua90ad3c2017-01-23 14:22:08 +08002686 amd_sched_hw_job_reset(&ring->sched);
Monk Liu65781c72017-05-11 13:36:44 +08002687
2688 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2689 amdgpu_fence_driver_force_completion_ring(ring);
Monk Liua90ad3c2017-01-23 14:22:08 +08002690 }
2691
Monk Liua90ad3c2017-01-23 14:22:08 +08002692 /* request to take full control of GPU before re-initialization */
Monk Liu7225f872017-04-26 14:51:54 +08002693 if (job)
Monk Liua90ad3c2017-01-23 14:22:08 +08002694 amdgpu_virt_reset_gpu(adev);
2695 else
2696 amdgpu_virt_request_full_gpu(adev, true);
2697
2698
2699 /* Resume IP prior to SMC */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002700 amdgpu_sriov_reinit_early(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002701
2702 /* we need recover gart prior to run SMC/CP/SDMA resume */
2703 amdgpu_ttm_recover_gart(adev);
2704
2705 /* now we are okay to resume SMC/CP/SDMA */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002706 amdgpu_sriov_reinit_late(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002707
2708 amdgpu_irq_gpu_reset_resume_helper(adev);
2709
2710 if (amdgpu_ib_ring_tests(adev))
2711 dev_err(adev->dev, "[GPU_RESET] ib ring test failed (%d).\n", r);
2712
2713 /* release full control of GPU after ib test */
2714 amdgpu_virt_release_full_gpu(adev, true);
2715
2716 DRM_INFO("recover vram bo from shadow\n");
2717
2718 ring = adev->mman.buffer_funcs_ring;
2719 mutex_lock(&adev->shadow_list_lock);
2720 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
Monk Liu236763d2017-05-01 16:15:31 +08002721 next = NULL;
Monk Liua90ad3c2017-01-23 14:22:08 +08002722 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2723 if (fence) {
2724 r = dma_fence_wait(fence, false);
2725 if (r) {
2726 WARN(r, "recovery from shadow isn't completed\n");
2727 break;
2728 }
2729 }
2730
2731 dma_fence_put(fence);
2732 fence = next;
2733 }
2734 mutex_unlock(&adev->shadow_list_lock);
2735
2736 if (fence) {
2737 r = dma_fence_wait(fence, false);
2738 if (r)
2739 WARN(r, "recovery from shadow isn't completed\n");
2740 }
2741 dma_fence_put(fence);
2742
Monk Liu65781c72017-05-11 13:36:44 +08002743 for (i = j; i < j + AMDGPU_MAX_RINGS; ++i) {
2744 ring = adev->rings[i % AMDGPU_MAX_RINGS];
Monk Liua90ad3c2017-01-23 14:22:08 +08002745 if (!ring || !ring->sched.thread)
2746 continue;
2747
Monk Liu65781c72017-05-11 13:36:44 +08002748 if (job && j != i) {
2749 kthread_unpark(ring->sched.thread);
2750 continue;
2751 }
2752
Monk Liua90ad3c2017-01-23 14:22:08 +08002753 amd_sched_job_recovery(&ring->sched);
2754 kthread_unpark(ring->sched.thread);
2755 }
2756
2757 drm_helper_resume_force_mode(adev->ddev);
Monk Liu65781c72017-05-11 13:36:44 +08002758give_up_reset:
Monk Liua90ad3c2017-01-23 14:22:08 +08002759 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
2760 if (r) {
2761 /* bad news, how to tell it to userspace ? */
2762 dev_info(adev->dev, "GPU reset failed\n");
Monk Liu65781c72017-05-11 13:36:44 +08002763 } else {
2764 dev_info(adev->dev, "GPU reset successed!\n");
Monk Liua90ad3c2017-01-23 14:22:08 +08002765 }
2766
Monk Liu1fb37a32017-01-26 15:36:37 +08002767 adev->gfx.in_reset = false;
Monk Liu147b5982017-01-25 15:48:01 +08002768 mutex_unlock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002769 return r;
2770}
2771
2772/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002773 * amdgpu_gpu_reset - reset the asic
2774 *
2775 * @adev: amdgpu device pointer
2776 *
2777 * Attempt the reset the GPU if it has hung (all asics).
2778 * Returns 0 for success or an error on failure.
2779 */
2780int amdgpu_gpu_reset(struct amdgpu_device *adev)
2781{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002782 int i, r;
2783 int resched;
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002784 bool need_full_reset, vram_lost = false;
Xiangliang Yufb140b22016-12-17 22:48:57 +08002785
Chunming Zhou63fbf422016-07-15 11:19:20 +08002786 if (!amdgpu_check_soft_reset(adev)) {
2787 DRM_INFO("No hardware hang detected. Did some blocks stall?\n");
2788 return 0;
2789 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002790
Marek Olšákd94aed52015-05-05 21:13:49 +02002791 atomic_inc(&adev->gpu_reset_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002792
Chunming Zhoua3c47d62016-06-30 16:44:41 +08002793 /* block TTM */
2794 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2795
Chunming Zhou0875dc92016-06-12 15:41:58 +08002796 /* block scheduler */
2797 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2798 struct amdgpu_ring *ring = adev->rings[i];
2799
Chunming Zhou51687752017-04-24 17:09:15 +08002800 if (!ring || !ring->sched.thread)
Chunming Zhou0875dc92016-06-12 15:41:58 +08002801 continue;
2802 kthread_park(ring->sched.thread);
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002803 amd_sched_hw_job_reset(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002804 }
Chunming Zhou2200eda2016-06-30 16:53:02 +08002805 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2806 amdgpu_fence_driver_force_completion(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002807
Chunming Zhou35d782f2016-07-15 15:57:13 +08002808 need_full_reset = amdgpu_need_full_reset(adev);
2809
2810 if (!need_full_reset) {
2811 amdgpu_pre_soft_reset(adev);
2812 r = amdgpu_soft_reset(adev);
2813 amdgpu_post_soft_reset(adev);
2814 if (r || amdgpu_check_soft_reset(adev)) {
2815 DRM_INFO("soft reset failed, will fallback to full reset!\n");
2816 need_full_reset = true;
2817 }
2818 }
2819
2820 if (need_full_reset) {
Chunming Zhou35d782f2016-07-15 15:57:13 +08002821 r = amdgpu_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002822
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002823retry:
Alex Deucherd05da0e2017-06-30 17:08:45 -04002824 amdgpu_atombios_scratch_regs_save(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002825 r = amdgpu_asic_reset(adev);
Alex Deucherd05da0e2017-06-30 17:08:45 -04002826 amdgpu_atombios_scratch_regs_restore(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002827 /* post card */
2828 amdgpu_atom_asic_init(adev->mode_info.atom_context);
Alex Deucherbfa99262016-01-15 11:59:48 -05002829
Chunming Zhou35d782f2016-07-15 15:57:13 +08002830 if (!r) {
2831 dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
Chunming Zhoufcf06492017-05-05 10:33:33 +08002832 r = amdgpu_resume_phase1(adev);
2833 if (r)
2834 goto out;
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002835 vram_lost = amdgpu_check_vram_lost(adev);
Chunming Zhouf1892132017-05-15 16:48:27 +08002836 if (vram_lost) {
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002837 DRM_ERROR("VRAM is lost!\n");
Chunming Zhouf1892132017-05-15 16:48:27 +08002838 atomic_inc(&adev->vram_lost_counter);
2839 }
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002840 r = amdgpu_ttm_recover_gart(adev);
2841 if (r)
Chunming Zhoufcf06492017-05-05 10:33:33 +08002842 goto out;
2843 r = amdgpu_resume_phase2(adev);
2844 if (r)
2845 goto out;
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002846 if (vram_lost)
2847 amdgpu_fill_reset_magic(adev);
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002848 }
Chunming Zhoufcf06492017-05-05 10:33:33 +08002849 }
2850out:
2851 if (!r) {
2852 amdgpu_irq_gpu_reset_resume_helper(adev);
Chunming Zhou1f465082016-06-30 15:02:26 +08002853 r = amdgpu_ib_ring_tests(adev);
2854 if (r) {
2855 dev_err(adev->dev, "ib ring test failed (%d).\n", r);
Chunming Zhou40019dc2016-06-29 16:01:49 +08002856 r = amdgpu_suspend(adev);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002857 need_full_reset = true;
Chunming Zhou40019dc2016-06-29 16:01:49 +08002858 goto retry;
Chunming Zhou1f465082016-06-30 15:02:26 +08002859 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002860 /**
2861 * recovery vm page tables, since we cannot depend on VRAM is
2862 * consistent after gpu full reset.
2863 */
2864 if (need_full_reset && amdgpu_need_backup(adev)) {
2865 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
2866 struct amdgpu_bo *bo, *tmp;
Chris Wilsonf54d1862016-10-25 13:00:45 +01002867 struct dma_fence *fence = NULL, *next = NULL;
Chunming Zhou1f465082016-06-30 15:02:26 +08002868
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002869 DRM_INFO("recover vram bo from shadow\n");
2870 mutex_lock(&adev->shadow_list_lock);
2871 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
Monk Liu236763d2017-05-01 16:15:31 +08002872 next = NULL;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002873 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2874 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002875 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002876 if (r) {
Monk Liu1d7b17b2017-01-22 18:52:56 +08002877 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002878 break;
2879 }
2880 }
2881
Chris Wilsonf54d1862016-10-25 13:00:45 +01002882 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002883 fence = next;
2884 }
2885 mutex_unlock(&adev->shadow_list_lock);
2886 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002887 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002888 if (r)
Monk Liu1d7b17b2017-01-22 18:52:56 +08002889 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002890 }
Chris Wilsonf54d1862016-10-25 13:00:45 +01002891 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002892 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002893 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2894 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhou51687752017-04-24 17:09:15 +08002895
2896 if (!ring || !ring->sched.thread)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002897 continue;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002898
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002899 amd_sched_job_recovery(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002900 kthread_unpark(ring->sched.thread);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002901 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002902 } else {
Chunming Zhou2200eda2016-06-30 16:53:02 +08002903 dev_err(adev->dev, "asic resume failed (%d).\n", r);
Gavin Wan89041942017-06-23 13:55:15 -04002904 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ASIC_RESUME_FAIL, 0, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002905 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
Chunming Zhou51687752017-04-24 17:09:15 +08002906 if (adev->rings[i] && adev->rings[i]->sched.thread) {
Chunming Zhou0875dc92016-06-12 15:41:58 +08002907 kthread_unpark(adev->rings[i]->sched.thread);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002908 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002909 }
2910 }
2911
2912 drm_helper_resume_force_mode(adev->ddev);
2913
2914 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
Gavin Wan89041942017-06-23 13:55:15 -04002915 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002916 /* bad news, how to tell it to userspace ? */
2917 dev_info(adev->dev, "GPU reset failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002918 amdgpu_vf_error_put(AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
2919 }
2920 else {
Chunming Zhou6643be62017-05-05 10:50:09 +08002921 dev_info(adev->dev, "GPU reset successed!\n");
Gavin Wan89041942017-06-23 13:55:15 -04002922 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002923
Gavin Wan89041942017-06-23 13:55:15 -04002924 amdgpu_vf_error_trans_all(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002925 return r;
2926}
2927
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002928void amdgpu_get_pcie_info(struct amdgpu_device *adev)
2929{
2930 u32 mask;
2931 int ret;
2932
Alex Deuchercd474ba2016-02-04 10:21:23 -05002933 if (amdgpu_pcie_gen_cap)
2934 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
2935
2936 if (amdgpu_pcie_lane_cap)
2937 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
2938
2939 /* covers APUs as well */
2940 if (pci_is_root_bus(adev->pdev->bus)) {
2941 if (adev->pm.pcie_gen_mask == 0)
2942 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2943 if (adev->pm.pcie_mlw_mask == 0)
2944 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002945 return;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002946 }
Alex Deuchercd474ba2016-02-04 10:21:23 -05002947
2948 if (adev->pm.pcie_gen_mask == 0) {
2949 ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
2950 if (!ret) {
2951 adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
2952 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
2953 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
2954
2955 if (mask & DRM_PCIE_SPEED_25)
2956 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
2957 if (mask & DRM_PCIE_SPEED_50)
2958 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
2959 if (mask & DRM_PCIE_SPEED_80)
2960 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
2961 } else {
2962 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2963 }
2964 }
2965 if (adev->pm.pcie_mlw_mask == 0) {
2966 ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
2967 if (!ret) {
2968 switch (mask) {
2969 case 32:
2970 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
2971 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2972 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2973 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2974 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2975 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2976 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2977 break;
2978 case 16:
2979 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2980 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2981 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2982 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2983 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2984 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2985 break;
2986 case 12:
2987 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2988 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2989 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2990 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2991 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2992 break;
2993 case 8:
2994 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2995 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2996 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2997 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2998 break;
2999 case 4:
3000 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3001 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3002 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3003 break;
3004 case 2:
3005 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3006 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3007 break;
3008 case 1:
3009 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
3010 break;
3011 default:
3012 break;
3013 }
3014 } else {
3015 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003016 }
3017 }
3018}
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003019
3020/*
3021 * Debugfs
3022 */
3023int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04003024 const struct drm_info_list *files,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003025 unsigned nfiles)
3026{
3027 unsigned i;
3028
3029 for (i = 0; i < adev->debugfs_count; i++) {
3030 if (adev->debugfs[i].files == files) {
3031 /* Already registered */
3032 return 0;
3033 }
3034 }
3035
3036 i = adev->debugfs_count + 1;
3037 if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
3038 DRM_ERROR("Reached maximum number of debugfs components.\n");
3039 DRM_ERROR("Report so we increase "
3040 "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
3041 return -EINVAL;
3042 }
3043 adev->debugfs[adev->debugfs_count].files = files;
3044 adev->debugfs[adev->debugfs_count].num_files = nfiles;
3045 adev->debugfs_count = i;
3046#if defined(CONFIG_DEBUG_FS)
3047 drm_debugfs_create_files(files, nfiles,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003048 adev->ddev->primary->debugfs_root,
3049 adev->ddev->primary);
3050#endif
3051 return 0;
3052}
3053
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003054#if defined(CONFIG_DEBUG_FS)
3055
3056static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
3057 size_t size, loff_t *pos)
3058{
Al Viro45063092016-12-04 18:24:56 -05003059 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003060 ssize_t result = 0;
3061 int r;
Tom St Denisbd122672016-07-28 09:39:22 -04003062 bool pm_pg_lock, use_bank;
Tom St Denis566281592016-06-27 11:55:07 -04003063 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003064
3065 if (size & 0x3 || *pos & 0x3)
3066 return -EINVAL;
3067
Tom St Denisbd122672016-07-28 09:39:22 -04003068 /* are we reading registers for which a PG lock is necessary? */
3069 pm_pg_lock = (*pos >> 23) & 1;
3070
Tom St Denis566281592016-06-27 11:55:07 -04003071 if (*pos & (1ULL << 62)) {
3072 se_bank = (*pos >> 24) & 0x3FF;
3073 sh_bank = (*pos >> 34) & 0x3FF;
3074 instance_bank = (*pos >> 44) & 0x3FF;
Tom St Denis32977f92016-10-09 07:41:26 -04003075
3076 if (se_bank == 0x3FF)
3077 se_bank = 0xFFFFFFFF;
3078 if (sh_bank == 0x3FF)
3079 sh_bank = 0xFFFFFFFF;
3080 if (instance_bank == 0x3FF)
3081 instance_bank = 0xFFFFFFFF;
Tom St Denis566281592016-06-27 11:55:07 -04003082 use_bank = 1;
Tom St Denis566281592016-06-27 11:55:07 -04003083 } else {
3084 use_bank = 0;
3085 }
3086
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04003087 *pos &= (1UL << 22) - 1;
Tom St Denisbd122672016-07-28 09:39:22 -04003088
Tom St Denis566281592016-06-27 11:55:07 -04003089 if (use_bank) {
Tom St Denis32977f92016-10-09 07:41:26 -04003090 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
3091 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
Tom St Denis566281592016-06-27 11:55:07 -04003092 return -EINVAL;
3093 mutex_lock(&adev->grbm_idx_mutex);
3094 amdgpu_gfx_select_se_sh(adev, se_bank,
3095 sh_bank, instance_bank);
3096 }
3097
Tom St Denisbd122672016-07-28 09:39:22 -04003098 if (pm_pg_lock)
3099 mutex_lock(&adev->pm.mutex);
3100
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003101 while (size) {
3102 uint32_t value;
3103
3104 if (*pos > adev->rmmio_size)
Tom St Denis566281592016-06-27 11:55:07 -04003105 goto end;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003106
3107 value = RREG32(*pos >> 2);
3108 r = put_user(value, (uint32_t *)buf);
Tom St Denis566281592016-06-27 11:55:07 -04003109 if (r) {
3110 result = r;
3111 goto end;
3112 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003113
3114 result += 4;
3115 buf += 4;
3116 *pos += 4;
3117 size -= 4;
3118 }
3119
Tom St Denis566281592016-06-27 11:55:07 -04003120end:
3121 if (use_bank) {
3122 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
3123 mutex_unlock(&adev->grbm_idx_mutex);
3124 }
3125
Tom St Denisbd122672016-07-28 09:39:22 -04003126 if (pm_pg_lock)
3127 mutex_unlock(&adev->pm.mutex);
3128
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003129 return result;
3130}
3131
3132static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
3133 size_t size, loff_t *pos)
3134{
Al Viro45063092016-12-04 18:24:56 -05003135 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003136 ssize_t result = 0;
3137 int r;
Tom St Denis394fdde2016-10-10 07:31:23 -04003138 bool pm_pg_lock, use_bank;
3139 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003140
3141 if (size & 0x3 || *pos & 0x3)
3142 return -EINVAL;
3143
Tom St Denis394fdde2016-10-10 07:31:23 -04003144 /* are we reading registers for which a PG lock is necessary? */
3145 pm_pg_lock = (*pos >> 23) & 1;
3146
3147 if (*pos & (1ULL << 62)) {
3148 se_bank = (*pos >> 24) & 0x3FF;
3149 sh_bank = (*pos >> 34) & 0x3FF;
3150 instance_bank = (*pos >> 44) & 0x3FF;
3151
3152 if (se_bank == 0x3FF)
3153 se_bank = 0xFFFFFFFF;
3154 if (sh_bank == 0x3FF)
3155 sh_bank = 0xFFFFFFFF;
3156 if (instance_bank == 0x3FF)
3157 instance_bank = 0xFFFFFFFF;
3158 use_bank = 1;
3159 } else {
3160 use_bank = 0;
3161 }
3162
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04003163 *pos &= (1UL << 22) - 1;
Tom St Denis394fdde2016-10-10 07:31:23 -04003164
3165 if (use_bank) {
3166 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
3167 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
3168 return -EINVAL;
3169 mutex_lock(&adev->grbm_idx_mutex);
3170 amdgpu_gfx_select_se_sh(adev, se_bank,
3171 sh_bank, instance_bank);
3172 }
3173
3174 if (pm_pg_lock)
3175 mutex_lock(&adev->pm.mutex);
3176
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003177 while (size) {
3178 uint32_t value;
3179
3180 if (*pos > adev->rmmio_size)
3181 return result;
3182
3183 r = get_user(value, (uint32_t *)buf);
3184 if (r)
3185 return r;
3186
3187 WREG32(*pos >> 2, value);
3188
3189 result += 4;
3190 buf += 4;
3191 *pos += 4;
3192 size -= 4;
3193 }
3194
Tom St Denis394fdde2016-10-10 07:31:23 -04003195 if (use_bank) {
3196 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
3197 mutex_unlock(&adev->grbm_idx_mutex);
3198 }
3199
3200 if (pm_pg_lock)
3201 mutex_unlock(&adev->pm.mutex);
3202
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003203 return result;
3204}
3205
Tom St Denisadcec282016-04-15 13:08:44 -04003206static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
3207 size_t size, loff_t *pos)
3208{
Al Viro45063092016-12-04 18:24:56 -05003209 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003210 ssize_t result = 0;
3211 int r;
3212
3213 if (size & 0x3 || *pos & 0x3)
3214 return -EINVAL;
3215
3216 while (size) {
3217 uint32_t value;
3218
3219 value = RREG32_PCIE(*pos >> 2);
3220 r = put_user(value, (uint32_t *)buf);
3221 if (r)
3222 return r;
3223
3224 result += 4;
3225 buf += 4;
3226 *pos += 4;
3227 size -= 4;
3228 }
3229
3230 return result;
3231}
3232
3233static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
3234 size_t size, loff_t *pos)
3235{
Al Viro45063092016-12-04 18:24:56 -05003236 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003237 ssize_t result = 0;
3238 int r;
3239
3240 if (size & 0x3 || *pos & 0x3)
3241 return -EINVAL;
3242
3243 while (size) {
3244 uint32_t value;
3245
3246 r = get_user(value, (uint32_t *)buf);
3247 if (r)
3248 return r;
3249
3250 WREG32_PCIE(*pos >> 2, value);
3251
3252 result += 4;
3253 buf += 4;
3254 *pos += 4;
3255 size -= 4;
3256 }
3257
3258 return result;
3259}
3260
3261static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
3262 size_t size, loff_t *pos)
3263{
Al Viro45063092016-12-04 18:24:56 -05003264 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003265 ssize_t result = 0;
3266 int r;
3267
3268 if (size & 0x3 || *pos & 0x3)
3269 return -EINVAL;
3270
3271 while (size) {
3272 uint32_t value;
3273
3274 value = RREG32_DIDT(*pos >> 2);
3275 r = put_user(value, (uint32_t *)buf);
3276 if (r)
3277 return r;
3278
3279 result += 4;
3280 buf += 4;
3281 *pos += 4;
3282 size -= 4;
3283 }
3284
3285 return result;
3286}
3287
3288static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
3289 size_t size, loff_t *pos)
3290{
Al Viro45063092016-12-04 18:24:56 -05003291 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003292 ssize_t result = 0;
3293 int r;
3294
3295 if (size & 0x3 || *pos & 0x3)
3296 return -EINVAL;
3297
3298 while (size) {
3299 uint32_t value;
3300
3301 r = get_user(value, (uint32_t *)buf);
3302 if (r)
3303 return r;
3304
3305 WREG32_DIDT(*pos >> 2, value);
3306
3307 result += 4;
3308 buf += 4;
3309 *pos += 4;
3310 size -= 4;
3311 }
3312
3313 return result;
3314}
3315
3316static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
3317 size_t size, loff_t *pos)
3318{
Al Viro45063092016-12-04 18:24:56 -05003319 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003320 ssize_t result = 0;
3321 int r;
3322
3323 if (size & 0x3 || *pos & 0x3)
3324 return -EINVAL;
3325
3326 while (size) {
3327 uint32_t value;
3328
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003329 value = RREG32_SMC(*pos);
Tom St Denisadcec282016-04-15 13:08:44 -04003330 r = put_user(value, (uint32_t *)buf);
3331 if (r)
3332 return r;
3333
3334 result += 4;
3335 buf += 4;
3336 *pos += 4;
3337 size -= 4;
3338 }
3339
3340 return result;
3341}
3342
3343static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
3344 size_t size, loff_t *pos)
3345{
Al Viro45063092016-12-04 18:24:56 -05003346 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003347 ssize_t result = 0;
3348 int r;
3349
3350 if (size & 0x3 || *pos & 0x3)
3351 return -EINVAL;
3352
3353 while (size) {
3354 uint32_t value;
3355
3356 r = get_user(value, (uint32_t *)buf);
3357 if (r)
3358 return r;
3359
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003360 WREG32_SMC(*pos, value);
Tom St Denisadcec282016-04-15 13:08:44 -04003361
3362 result += 4;
3363 buf += 4;
3364 *pos += 4;
3365 size -= 4;
3366 }
3367
3368 return result;
3369}
3370
Tom St Denis1e051412016-06-27 09:57:18 -04003371static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
3372 size_t size, loff_t *pos)
3373{
Al Viro45063092016-12-04 18:24:56 -05003374 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis1e051412016-06-27 09:57:18 -04003375 ssize_t result = 0;
3376 int r;
3377 uint32_t *config, no_regs = 0;
3378
3379 if (size & 0x3 || *pos & 0x3)
3380 return -EINVAL;
3381
Markus Elfringecab7662016-09-18 17:00:52 +02003382 config = kmalloc_array(256, sizeof(*config), GFP_KERNEL);
Tom St Denis1e051412016-06-27 09:57:18 -04003383 if (!config)
3384 return -ENOMEM;
3385
3386 /* version, increment each time something is added */
Tom St Denis9a999352017-01-18 13:01:25 -05003387 config[no_regs++] = 3;
Tom St Denis1e051412016-06-27 09:57:18 -04003388 config[no_regs++] = adev->gfx.config.max_shader_engines;
3389 config[no_regs++] = adev->gfx.config.max_tile_pipes;
3390 config[no_regs++] = adev->gfx.config.max_cu_per_sh;
3391 config[no_regs++] = adev->gfx.config.max_sh_per_se;
3392 config[no_regs++] = adev->gfx.config.max_backends_per_se;
3393 config[no_regs++] = adev->gfx.config.max_texture_channel_caches;
3394 config[no_regs++] = adev->gfx.config.max_gprs;
3395 config[no_regs++] = adev->gfx.config.max_gs_threads;
3396 config[no_regs++] = adev->gfx.config.max_hw_contexts;
3397 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend;
3398 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend;
3399 config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size;
3400 config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size;
3401 config[no_regs++] = adev->gfx.config.num_tile_pipes;
3402 config[no_regs++] = adev->gfx.config.backend_enable_mask;
3403 config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes;
3404 config[no_regs++] = adev->gfx.config.mem_row_size_in_kb;
3405 config[no_regs++] = adev->gfx.config.shader_engine_tile_size;
3406 config[no_regs++] = adev->gfx.config.num_gpus;
3407 config[no_regs++] = adev->gfx.config.multi_gpu_tile_size;
3408 config[no_regs++] = adev->gfx.config.mc_arb_ramcfg;
3409 config[no_regs++] = adev->gfx.config.gb_addr_config;
3410 config[no_regs++] = adev->gfx.config.num_rbs;
3411
Tom St Denis89a8f302016-08-12 15:14:31 -04003412 /* rev==1 */
3413 config[no_regs++] = adev->rev_id;
3414 config[no_regs++] = adev->pg_flags;
3415 config[no_regs++] = adev->cg_flags;
3416
Tom St Denise9f11dc2016-08-17 12:00:51 -04003417 /* rev==2 */
3418 config[no_regs++] = adev->family;
3419 config[no_regs++] = adev->external_rev_id;
3420
Tom St Denis9a999352017-01-18 13:01:25 -05003421 /* rev==3 */
3422 config[no_regs++] = adev->pdev->device;
3423 config[no_regs++] = adev->pdev->revision;
3424 config[no_regs++] = adev->pdev->subsystem_device;
3425 config[no_regs++] = adev->pdev->subsystem_vendor;
3426
Tom St Denis1e051412016-06-27 09:57:18 -04003427 while (size && (*pos < no_regs * 4)) {
3428 uint32_t value;
3429
3430 value = config[*pos >> 2];
3431 r = put_user(value, (uint32_t *)buf);
3432 if (r) {
3433 kfree(config);
3434 return r;
3435 }
3436
3437 result += 4;
3438 buf += 4;
3439 *pos += 4;
3440 size -= 4;
3441 }
3442
3443 kfree(config);
3444 return result;
3445}
3446
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003447static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf,
3448 size_t size, loff_t *pos)
3449{
Al Viro45063092016-12-04 18:24:56 -05003450 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003451 int idx, x, outsize, r, valuesize;
3452 uint32_t values[16];
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003453
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003454 if (size & 3 || *pos & 0x3)
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003455 return -EINVAL;
3456
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003457 if (amdgpu_dpm == 0)
3458 return -EINVAL;
3459
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003460 /* convert offset to sensor number */
3461 idx = *pos >> 2;
3462
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003463 valuesize = sizeof(values);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003464 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003465 r = adev->powerplay.pp_funcs->read_sensor(adev->powerplay.pp_handle, idx, &values[0], &valuesize);
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003466 else if (adev->pm.funcs && adev->pm.funcs->read_sensor)
3467 r = adev->pm.funcs->read_sensor(adev, idx, &values[0],
3468 &valuesize);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003469 else
3470 return -EINVAL;
3471
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003472 if (size > valuesize)
3473 return -EINVAL;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003474
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003475 outsize = 0;
3476 x = 0;
3477 if (!r) {
3478 while (size) {
3479 r = put_user(values[x++], (int32_t *)buf);
3480 buf += 4;
3481 size -= 4;
3482 outsize += 4;
3483 }
3484 }
3485
3486 return !r ? outsize : r;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003487}
Tom St Denis1e051412016-06-27 09:57:18 -04003488
Tom St Denis273d7aa2016-10-11 14:48:55 -04003489static ssize_t amdgpu_debugfs_wave_read(struct file *f, char __user *buf,
3490 size_t size, loff_t *pos)
3491{
3492 struct amdgpu_device *adev = f->f_inode->i_private;
3493 int r, x;
3494 ssize_t result=0;
Tom St Denis472259f2016-10-14 09:49:09 -04003495 uint32_t offset, se, sh, cu, wave, simd, data[32];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003496
3497 if (size & 3 || *pos & 3)
3498 return -EINVAL;
3499
3500 /* decode offset */
3501 offset = (*pos & 0x7F);
3502 se = ((*pos >> 7) & 0xFF);
3503 sh = ((*pos >> 15) & 0xFF);
3504 cu = ((*pos >> 23) & 0xFF);
3505 wave = ((*pos >> 31) & 0xFF);
3506 simd = ((*pos >> 37) & 0xFF);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003507
3508 /* switch to the specific se/sh/cu */
3509 mutex_lock(&adev->grbm_idx_mutex);
3510 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3511
3512 x = 0;
Tom St Denis472259f2016-10-14 09:49:09 -04003513 if (adev->gfx.funcs->read_wave_data)
3514 adev->gfx.funcs->read_wave_data(adev, simd, wave, data, &x);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003515
3516 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3517 mutex_unlock(&adev->grbm_idx_mutex);
3518
Tom St Denis5ecfb3b2016-10-13 12:15:03 -04003519 if (!x)
3520 return -EINVAL;
3521
Tom St Denis472259f2016-10-14 09:49:09 -04003522 while (size && (offset < x * 4)) {
Tom St Denis273d7aa2016-10-11 14:48:55 -04003523 uint32_t value;
3524
Tom St Denis472259f2016-10-14 09:49:09 -04003525 value = data[offset >> 2];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003526 r = put_user(value, (uint32_t *)buf);
3527 if (r)
3528 return r;
3529
3530 result += 4;
3531 buf += 4;
Tom St Denis472259f2016-10-14 09:49:09 -04003532 offset += 4;
Tom St Denis273d7aa2016-10-11 14:48:55 -04003533 size -= 4;
3534 }
3535
3536 return result;
3537}
3538
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003539static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
3540 size_t size, loff_t *pos)
3541{
3542 struct amdgpu_device *adev = f->f_inode->i_private;
3543 int r;
3544 ssize_t result = 0;
3545 uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data;
3546
3547 if (size & 3 || *pos & 3)
3548 return -EINVAL;
3549
3550 /* decode offset */
3551 offset = (*pos & 0xFFF); /* in dwords */
3552 se = ((*pos >> 12) & 0xFF);
3553 sh = ((*pos >> 20) & 0xFF);
3554 cu = ((*pos >> 28) & 0xFF);
3555 wave = ((*pos >> 36) & 0xFF);
3556 simd = ((*pos >> 44) & 0xFF);
3557 thread = ((*pos >> 52) & 0xFF);
3558 bank = ((*pos >> 60) & 1);
3559
3560 data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
3561 if (!data)
3562 return -ENOMEM;
3563
3564 /* switch to the specific se/sh/cu */
3565 mutex_lock(&adev->grbm_idx_mutex);
3566 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3567
3568 if (bank == 0) {
3569 if (adev->gfx.funcs->read_wave_vgprs)
3570 adev->gfx.funcs->read_wave_vgprs(adev, simd, wave, thread, offset, size>>2, data);
3571 } else {
3572 if (adev->gfx.funcs->read_wave_sgprs)
3573 adev->gfx.funcs->read_wave_sgprs(adev, simd, wave, offset, size>>2, data);
3574 }
3575
3576 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3577 mutex_unlock(&adev->grbm_idx_mutex);
3578
3579 while (size) {
3580 uint32_t value;
3581
3582 value = data[offset++];
3583 r = put_user(value, (uint32_t *)buf);
3584 if (r) {
3585 result = r;
3586 goto err;
3587 }
3588
3589 result += 4;
3590 buf += 4;
3591 size -= 4;
3592 }
3593
3594err:
3595 kfree(data);
3596 return result;
3597}
3598
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003599static const struct file_operations amdgpu_debugfs_regs_fops = {
3600 .owner = THIS_MODULE,
3601 .read = amdgpu_debugfs_regs_read,
3602 .write = amdgpu_debugfs_regs_write,
3603 .llseek = default_llseek
3604};
Tom St Denisadcec282016-04-15 13:08:44 -04003605static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
3606 .owner = THIS_MODULE,
3607 .read = amdgpu_debugfs_regs_didt_read,
3608 .write = amdgpu_debugfs_regs_didt_write,
3609 .llseek = default_llseek
3610};
3611static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
3612 .owner = THIS_MODULE,
3613 .read = amdgpu_debugfs_regs_pcie_read,
3614 .write = amdgpu_debugfs_regs_pcie_write,
3615 .llseek = default_llseek
3616};
3617static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
3618 .owner = THIS_MODULE,
3619 .read = amdgpu_debugfs_regs_smc_read,
3620 .write = amdgpu_debugfs_regs_smc_write,
3621 .llseek = default_llseek
3622};
3623
Tom St Denis1e051412016-06-27 09:57:18 -04003624static const struct file_operations amdgpu_debugfs_gca_config_fops = {
3625 .owner = THIS_MODULE,
3626 .read = amdgpu_debugfs_gca_config_read,
3627 .llseek = default_llseek
3628};
3629
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003630static const struct file_operations amdgpu_debugfs_sensors_fops = {
3631 .owner = THIS_MODULE,
3632 .read = amdgpu_debugfs_sensor_read,
3633 .llseek = default_llseek
3634};
3635
Tom St Denis273d7aa2016-10-11 14:48:55 -04003636static const struct file_operations amdgpu_debugfs_wave_fops = {
3637 .owner = THIS_MODULE,
3638 .read = amdgpu_debugfs_wave_read,
3639 .llseek = default_llseek
3640};
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003641static const struct file_operations amdgpu_debugfs_gpr_fops = {
3642 .owner = THIS_MODULE,
3643 .read = amdgpu_debugfs_gpr_read,
3644 .llseek = default_llseek
3645};
Tom St Denis273d7aa2016-10-11 14:48:55 -04003646
Tom St Denisadcec282016-04-15 13:08:44 -04003647static const struct file_operations *debugfs_regs[] = {
3648 &amdgpu_debugfs_regs_fops,
3649 &amdgpu_debugfs_regs_didt_fops,
3650 &amdgpu_debugfs_regs_pcie_fops,
3651 &amdgpu_debugfs_regs_smc_fops,
Tom St Denis1e051412016-06-27 09:57:18 -04003652 &amdgpu_debugfs_gca_config_fops,
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003653 &amdgpu_debugfs_sensors_fops,
Tom St Denis273d7aa2016-10-11 14:48:55 -04003654 &amdgpu_debugfs_wave_fops,
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003655 &amdgpu_debugfs_gpr_fops,
Tom St Denisadcec282016-04-15 13:08:44 -04003656};
3657
3658static const char *debugfs_regs_names[] = {
3659 "amdgpu_regs",
3660 "amdgpu_regs_didt",
3661 "amdgpu_regs_pcie",
3662 "amdgpu_regs_smc",
Tom St Denis1e051412016-06-27 09:57:18 -04003663 "amdgpu_gca_config",
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003664 "amdgpu_sensors",
Tom St Denis273d7aa2016-10-11 14:48:55 -04003665 "amdgpu_wave",
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003666 "amdgpu_gpr",
Tom St Denisadcec282016-04-15 13:08:44 -04003667};
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003668
3669static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3670{
3671 struct drm_minor *minor = adev->ddev->primary;
3672 struct dentry *ent, *root = minor->debugfs_root;
Tom St Denisadcec282016-04-15 13:08:44 -04003673 unsigned i, j;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003674
Tom St Denisadcec282016-04-15 13:08:44 -04003675 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3676 ent = debugfs_create_file(debugfs_regs_names[i],
3677 S_IFREG | S_IRUGO, root,
3678 adev, debugfs_regs[i]);
3679 if (IS_ERR(ent)) {
3680 for (j = 0; j < i; j++) {
3681 debugfs_remove(adev->debugfs_regs[i]);
3682 adev->debugfs_regs[i] = NULL;
3683 }
3684 return PTR_ERR(ent);
3685 }
3686
3687 if (!i)
3688 i_size_write(ent->d_inode, adev->rmmio_size);
3689 adev->debugfs_regs[i] = ent;
3690 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003691
3692 return 0;
3693}
3694
3695static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
3696{
Tom St Denisadcec282016-04-15 13:08:44 -04003697 unsigned i;
3698
3699 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3700 if (adev->debugfs_regs[i]) {
3701 debugfs_remove(adev->debugfs_regs[i]);
3702 adev->debugfs_regs[i] = NULL;
3703 }
3704 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003705}
3706
Huang Rui4f0955f2017-05-10 23:04:06 +08003707static int amdgpu_debugfs_test_ib(struct seq_file *m, void *data)
3708{
3709 struct drm_info_node *node = (struct drm_info_node *) m->private;
3710 struct drm_device *dev = node->minor->dev;
3711 struct amdgpu_device *adev = dev->dev_private;
3712 int r = 0, i;
3713
3714 /* hold on the scheduler */
3715 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3716 struct amdgpu_ring *ring = adev->rings[i];
3717
3718 if (!ring || !ring->sched.thread)
3719 continue;
3720 kthread_park(ring->sched.thread);
3721 }
3722
3723 seq_printf(m, "run ib test:\n");
3724 r = amdgpu_ib_ring_tests(adev);
3725 if (r)
3726 seq_printf(m, "ib ring tests failed (%d).\n", r);
3727 else
3728 seq_printf(m, "ib ring tests passed.\n");
3729
3730 /* go on the scheduler */
3731 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3732 struct amdgpu_ring *ring = adev->rings[i];
3733
3734 if (!ring || !ring->sched.thread)
3735 continue;
3736 kthread_unpark(ring->sched.thread);
3737 }
3738
3739 return 0;
3740}
3741
3742static const struct drm_info_list amdgpu_debugfs_test_ib_ring_list[] = {
3743 {"amdgpu_test_ib", &amdgpu_debugfs_test_ib}
3744};
3745
3746static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev)
3747{
3748 return amdgpu_debugfs_add_files(adev,
3749 amdgpu_debugfs_test_ib_ring_list, 1);
3750}
3751
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003752int amdgpu_debugfs_init(struct drm_minor *minor)
3753{
3754 return 0;
3755}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003756#else
Arnd Bergmann27bad5b2017-06-21 23:51:02 +02003757static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev)
Huang Rui4f0955f2017-05-10 23:04:06 +08003758{
3759 return 0;
3760}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003761static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3762{
3763 return 0;
3764}
3765static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003766#endif