blob: 15f55865fcfbec077369035e897473838830e691 [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"
59
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{
339 int r;
340
341 if (adev->vram_scratch.robj == NULL) {
342 r = amdgpu_bo_create(adev, AMDGPU_GPU_PAGE_SIZE,
Alex Deucher857d9132015-08-27 00:14:16 -0400343 PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_VRAM,
Christian König03f48dd2016-08-15 17:00:22 +0200344 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
345 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS,
Christian König72d76682015-09-03 17:34:59 +0200346 NULL, NULL, &adev->vram_scratch.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400347 if (r) {
348 return r;
349 }
350 }
351
352 r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
353 if (unlikely(r != 0))
354 return r;
355 r = amdgpu_bo_pin(adev->vram_scratch.robj,
356 AMDGPU_GEM_DOMAIN_VRAM, &adev->vram_scratch.gpu_addr);
357 if (r) {
358 amdgpu_bo_unreserve(adev->vram_scratch.robj);
359 return r;
360 }
361 r = amdgpu_bo_kmap(adev->vram_scratch.robj,
362 (void **)&adev->vram_scratch.ptr);
363 if (r)
364 amdgpu_bo_unpin(adev->vram_scratch.robj);
365 amdgpu_bo_unreserve(adev->vram_scratch.robj);
366
367 return r;
368}
369
370static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev)
371{
372 int r;
373
374 if (adev->vram_scratch.robj == NULL) {
375 return;
376 }
Alex Xie8ab25b42017-04-24 13:30:43 -0400377 r = amdgpu_bo_reserve(adev->vram_scratch.robj, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400378 if (likely(r == 0)) {
379 amdgpu_bo_kunmap(adev->vram_scratch.robj);
380 amdgpu_bo_unpin(adev->vram_scratch.robj);
381 amdgpu_bo_unreserve(adev->vram_scratch.robj);
382 }
383 amdgpu_bo_unref(&adev->vram_scratch.robj);
384}
385
386/**
387 * amdgpu_program_register_sequence - program an array of registers.
388 *
389 * @adev: amdgpu_device pointer
390 * @registers: pointer to the register array
391 * @array_size: size of the register array
392 *
393 * Programs an array or registers with and and or masks.
394 * This is a helper for setting golden registers.
395 */
396void amdgpu_program_register_sequence(struct amdgpu_device *adev,
397 const u32 *registers,
398 const u32 array_size)
399{
400 u32 tmp, reg, and_mask, or_mask;
401 int i;
402
403 if (array_size % 3)
404 return;
405
406 for (i = 0; i < array_size; i +=3) {
407 reg = registers[i + 0];
408 and_mask = registers[i + 1];
409 or_mask = registers[i + 2];
410
411 if (and_mask == 0xffffffff) {
412 tmp = or_mask;
413 } else {
414 tmp = RREG32(reg);
415 tmp &= ~and_mask;
416 tmp |= or_mask;
417 }
418 WREG32(reg, tmp);
419 }
420}
421
422void amdgpu_pci_config_reset(struct amdgpu_device *adev)
423{
424 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
425}
426
427/*
428 * GPU doorbell aperture helpers function.
429 */
430/**
431 * amdgpu_doorbell_init - Init doorbell driver information.
432 *
433 * @adev: amdgpu_device pointer
434 *
435 * Init doorbell driver information (CIK)
436 * Returns 0 on success, error on failure.
437 */
438static int amdgpu_doorbell_init(struct amdgpu_device *adev)
439{
440 /* doorbell bar mapping */
441 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
442 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
443
Christian Königedf600d2016-05-03 15:54:54 +0200444 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400445 AMDGPU_DOORBELL_MAX_ASSIGNMENT+1);
446 if (adev->doorbell.num_doorbells == 0)
447 return -EINVAL;
448
Christian König8972e5d2017-03-06 13:34:57 +0100449 adev->doorbell.ptr = ioremap(adev->doorbell.base,
450 adev->doorbell.num_doorbells *
451 sizeof(u32));
452 if (adev->doorbell.ptr == NULL)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400453 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400454
455 return 0;
456}
457
458/**
459 * amdgpu_doorbell_fini - Tear down doorbell driver information.
460 *
461 * @adev: amdgpu_device pointer
462 *
463 * Tear down doorbell driver information (CIK)
464 */
465static void amdgpu_doorbell_fini(struct amdgpu_device *adev)
466{
467 iounmap(adev->doorbell.ptr);
468 adev->doorbell.ptr = NULL;
469}
470
471/**
472 * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
473 * setup amdkfd
474 *
475 * @adev: amdgpu_device pointer
476 * @aperture_base: output returning doorbell aperture base physical address
477 * @aperture_size: output returning doorbell aperture size in bytes
478 * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
479 *
480 * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
481 * takes doorbells required for its own rings and reports the setup to amdkfd.
482 * amdgpu reserved doorbells are at the start of the doorbell aperture.
483 */
484void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
485 phys_addr_t *aperture_base,
486 size_t *aperture_size,
487 size_t *start_offset)
488{
489 /*
490 * The first num_doorbells are used by amdgpu.
491 * amdkfd takes whatever's left in the aperture.
492 */
493 if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
494 *aperture_base = adev->doorbell.base;
495 *aperture_size = adev->doorbell.size;
496 *start_offset = adev->doorbell.num_doorbells * sizeof(u32);
497 } else {
498 *aperture_base = 0;
499 *aperture_size = 0;
500 *start_offset = 0;
501 }
502}
503
504/*
505 * amdgpu_wb_*()
Alex Xie455a7bc2017-05-08 21:36:03 -0400506 * Writeback is the method by which the GPU updates special pages in memory
Alex Xieea81a172017-05-08 13:41:11 -0400507 * with the status of certain GPU events (fences, ring pointers,etc.).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400508 */
509
510/**
511 * amdgpu_wb_fini - Disable Writeback and free memory
512 *
513 * @adev: amdgpu_device pointer
514 *
515 * Disables Writeback and frees the Writeback memory (all asics).
516 * Used at driver shutdown.
517 */
518static void amdgpu_wb_fini(struct amdgpu_device *adev)
519{
520 if (adev->wb.wb_obj) {
Alex Deuchera76ed482016-10-21 15:30:36 -0400521 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
522 &adev->wb.gpu_addr,
523 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400524 adev->wb.wb_obj = NULL;
525 }
526}
527
528/**
529 * amdgpu_wb_init- Init Writeback driver info and allocate memory
530 *
531 * @adev: amdgpu_device pointer
532 *
Alex Xie455a7bc2017-05-08 21:36:03 -0400533 * Initializes writeback and allocates writeback memory (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400534 * Used at driver startup.
535 * Returns 0 on success or an -error on failure.
536 */
537static int amdgpu_wb_init(struct amdgpu_device *adev)
538{
539 int r;
540
541 if (adev->wb.wb_obj == NULL) {
Huang Rui60a970a62017-03-15 10:13:32 +0800542 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t),
Alex Deuchera76ed482016-10-21 15:30:36 -0400543 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
544 &adev->wb.wb_obj, &adev->wb.gpu_addr,
545 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400546 if (r) {
547 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
548 return r;
549 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400550
551 adev->wb.num_wb = AMDGPU_MAX_WB;
552 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
553
554 /* clear wb memory */
Huang Rui60a970a62017-03-15 10:13:32 +0800555 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400556 }
557
558 return 0;
559}
560
561/**
562 * amdgpu_wb_get - Allocate a wb entry
563 *
564 * @adev: amdgpu_device pointer
565 * @wb: wb index
566 *
567 * Allocate a wb slot for use by the driver (all asics).
568 * Returns 0 on success or -EINVAL on failure.
569 */
570int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb)
571{
572 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
573 if (offset < adev->wb.num_wb) {
574 __set_bit(offset, adev->wb.used);
575 *wb = offset;
576 return 0;
577 } else {
578 return -EINVAL;
579 }
580}
581
582/**
Ken Wang70142852016-03-18 15:08:49 +0800583 * amdgpu_wb_get_64bit - Allocate a wb entry
584 *
585 * @adev: amdgpu_device pointer
586 * @wb: wb index
587 *
588 * Allocate a wb slot for use by the driver (all asics).
589 * Returns 0 on success or -EINVAL on failure.
590 */
591int amdgpu_wb_get_64bit(struct amdgpu_device *adev, u32 *wb)
592{
593 unsigned long offset = bitmap_find_next_zero_area_off(adev->wb.used,
594 adev->wb.num_wb, 0, 2, 7, 0);
595 if ((offset + 1) < adev->wb.num_wb) {
596 __set_bit(offset, adev->wb.used);
597 __set_bit(offset + 1, adev->wb.used);
598 *wb = offset;
599 return 0;
600 } else {
601 return -EINVAL;
602 }
603}
604
Monk Liu0915fdb2017-06-19 10:19:41 -0400605int amdgpu_wb_get_256Bit(struct amdgpu_device *adev, u32 *wb)
606{
607 int i = 0;
608 unsigned long offset = bitmap_find_next_zero_area_off(adev->wb.used,
609 adev->wb.num_wb, 0, 8, 63, 0);
610 if ((offset + 7) < adev->wb.num_wb) {
611 for (i = 0; i < 8; i++)
612 __set_bit(offset + i, adev->wb.used);
613 *wb = offset;
614 return 0;
615 } else {
616 return -EINVAL;
617 }
618}
619
Ken Wang70142852016-03-18 15:08:49 +0800620/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400621 * amdgpu_wb_free - Free a wb entry
622 *
623 * @adev: amdgpu_device pointer
624 * @wb: wb index
625 *
626 * Free a wb slot allocated for use by the driver (all asics)
627 */
628void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb)
629{
630 if (wb < adev->wb.num_wb)
631 __clear_bit(wb, adev->wb.used);
632}
633
634/**
Ken Wang70142852016-03-18 15:08:49 +0800635 * amdgpu_wb_free_64bit - Free a wb entry
636 *
637 * @adev: amdgpu_device pointer
638 * @wb: wb index
639 *
640 * Free a wb slot allocated for use by the driver (all asics)
641 */
642void amdgpu_wb_free_64bit(struct amdgpu_device *adev, u32 wb)
643{
644 if ((wb + 1) < adev->wb.num_wb) {
645 __clear_bit(wb, adev->wb.used);
646 __clear_bit(wb + 1, adev->wb.used);
647 }
648}
649
650/**
Monk Liu0915fdb2017-06-19 10:19:41 -0400651 * amdgpu_wb_free_256bit - Free a wb entry
652 *
653 * @adev: amdgpu_device pointer
654 * @wb: wb index
655 *
656 * Free a wb slot allocated for use by the driver (all asics)
657 */
658void amdgpu_wb_free_256bit(struct amdgpu_device *adev, u32 wb)
659{
660 int i = 0;
661
662 if ((wb + 7) < adev->wb.num_wb)
663 for (i = 0; i < 8; i++)
664 __clear_bit(wb + i, adev->wb.used);
665}
666
667/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400668 * amdgpu_vram_location - try to find VRAM location
669 * @adev: amdgpu device structure holding all necessary informations
670 * @mc: memory controller structure holding memory informations
671 * @base: base address at which to put VRAM
672 *
Alex Xie455a7bc2017-05-08 21:36:03 -0400673 * Function will try to place VRAM at base address provided
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400674 * as parameter (which is so far either PCI aperture address or
675 * for IGP TOM base address).
676 *
677 * If there is not enough space to fit the unvisible VRAM in the 32bits
678 * address space then we limit the VRAM size to the aperture.
679 *
680 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
681 * this shouldn't be a problem as we are using the PCI aperture as a reference.
682 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
683 * not IGP.
684 *
685 * Note: we use mc_vram_size as on some board we need to program the mc to
686 * cover the whole aperture even if VRAM size is inferior to aperture size
687 * Novell bug 204882 + along with lots of ubuntu ones
688 *
689 * Note: when limiting vram it's safe to overwritte real_vram_size because
690 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
691 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
692 * ones)
693 *
694 * Note: IGP TOM addr should be the same as the aperture addr, we don't
Alex Xie455a7bc2017-05-08 21:36:03 -0400695 * explicitly check for that though.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400696 *
697 * FIXME: when reducing VRAM size align new size on power of 2.
698 */
699void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base)
700{
701 uint64_t limit = (uint64_t)amdgpu_vram_limit << 20;
702
703 mc->vram_start = base;
704 if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) {
705 dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n");
706 mc->real_vram_size = mc->aper_size;
707 mc->mc_vram_size = mc->aper_size;
708 }
709 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
710 if (limit && limit < mc->real_vram_size)
711 mc->real_vram_size = limit;
712 dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
713 mc->mc_vram_size >> 20, mc->vram_start,
714 mc->vram_end, mc->real_vram_size >> 20);
715}
716
717/**
Christian König6f02a692017-07-07 11:56:59 +0200718 * amdgpu_gart_location - try to find GTT location
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400719 * @adev: amdgpu device structure holding all necessary informations
720 * @mc: memory controller structure holding memory informations
721 *
722 * Function will place try to place GTT before or after VRAM.
723 *
724 * If GTT size is bigger than space left then we ajust GTT size.
725 * Thus function will never fails.
726 *
727 * FIXME: when reducing GTT size align new size on power of 2.
728 */
Christian König6f02a692017-07-07 11:56:59 +0200729void amdgpu_gart_location(struct amdgpu_device *adev, struct amdgpu_mc *mc)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730{
731 u64 size_af, size_bf;
732
Christian Königed21c042017-07-06 22:26:05 +0200733 size_af = adev->mc.mc_mask - mc->vram_end;
734 size_bf = mc->vram_start;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400735 if (size_bf > size_af) {
Christian König6f02a692017-07-07 11:56:59 +0200736 if (mc->gart_size > size_bf) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400737 dev_warn(adev->dev, "limiting GTT\n");
Christian König6f02a692017-07-07 11:56:59 +0200738 mc->gart_size = size_bf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400739 }
Christian König6f02a692017-07-07 11:56:59 +0200740 mc->gart_start = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400741 } else {
Christian König6f02a692017-07-07 11:56:59 +0200742 if (mc->gart_size > size_af) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400743 dev_warn(adev->dev, "limiting GTT\n");
Christian König6f02a692017-07-07 11:56:59 +0200744 mc->gart_size = size_af;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400745 }
Christian König6f02a692017-07-07 11:56:59 +0200746 mc->gart_start = mc->vram_end + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400747 }
Christian König6f02a692017-07-07 11:56:59 +0200748 mc->gart_end = mc->gart_start + mc->gart_size - 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400749 dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
Christian König6f02a692017-07-07 11:56:59 +0200750 mc->gart_size >> 20, mc->gart_start, mc->gart_end);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400751}
752
753/*
754 * GPU helpers function.
755 */
756/**
Jim Quc836fec2017-02-10 15:59:59 +0800757 * amdgpu_need_post - check if the hw need post or not
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400758 *
759 * @adev: amdgpu_device pointer
760 *
Jim Quc836fec2017-02-10 15:59:59 +0800761 * Check if the asic has been initialized (all asics) at driver startup
762 * or post is needed if hw reset is performed.
763 * Returns true if need or false if not.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400764 */
Jim Quc836fec2017-02-10 15:59:59 +0800765bool amdgpu_need_post(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400766{
767 uint32_t reg;
768
Jim Quc836fec2017-02-10 15:59:59 +0800769 if (adev->has_hw_reset) {
770 adev->has_hw_reset = false;
771 return true;
772 }
Alex Deucher70d17a22017-06-30 17:26:47 -0400773
774 /* bios scratch used on CIK+ */
775 if (adev->asic_type >= CHIP_BONAIRE)
776 return amdgpu_atombios_scratch_need_asic_init(adev);
777
778 /* check MEM_SIZE for older asics */
Alex Deucherbbf282d2017-03-03 17:26:10 -0500779 reg = amdgpu_asic_get_config_memsize(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400780
Alex Deucherf2713e82017-03-28 12:19:31 -0400781 if ((reg != 0) && (reg != 0xffffffff))
Jim Quc836fec2017-02-10 15:59:59 +0800782 return false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400783
Jim Quc836fec2017-02-10 15:59:59 +0800784 return true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400785
786}
787
Monk Liubec86372016-09-14 19:38:08 +0800788static bool amdgpu_vpost_needed(struct amdgpu_device *adev)
789{
790 if (amdgpu_sriov_vf(adev))
791 return false;
792
793 if (amdgpu_passthrough(adev)) {
Monk Liu1da2c322016-11-11 11:24:29 +0800794 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
795 * some old smc fw still need driver do vPost otherwise gpu hang, while
796 * those smc fw version above 22.15 doesn't have this flaw, so we force
797 * vpost executed for smc version below 22.15
Monk Liubec86372016-09-14 19:38:08 +0800798 */
799 if (adev->asic_type == CHIP_FIJI) {
800 int err;
801 uint32_t fw_ver;
802 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
803 /* force vPost if error occured */
804 if (err)
805 return true;
806
807 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
Monk Liu1da2c322016-11-11 11:24:29 +0800808 if (fw_ver < 0x00160e00)
809 return true;
Monk Liubec86372016-09-14 19:38:08 +0800810 }
Monk Liubec86372016-09-14 19:38:08 +0800811 }
Jim Quc836fec2017-02-10 15:59:59 +0800812 return amdgpu_need_post(adev);
Monk Liubec86372016-09-14 19:38:08 +0800813}
814
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400815/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400816 * amdgpu_dummy_page_init - init dummy page used by the driver
817 *
818 * @adev: amdgpu_device pointer
819 *
820 * Allocate the dummy page used by the driver (all asics).
821 * This dummy page is used by the driver as a filler for gart entries
822 * when pages are taken out of the GART
823 * Returns 0 on sucess, -ENOMEM on failure.
824 */
825int amdgpu_dummy_page_init(struct amdgpu_device *adev)
826{
827 if (adev->dummy_page.page)
828 return 0;
829 adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
830 if (adev->dummy_page.page == NULL)
831 return -ENOMEM;
832 adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page,
833 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
834 if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) {
835 dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n");
836 __free_page(adev->dummy_page.page);
837 adev->dummy_page.page = NULL;
838 return -ENOMEM;
839 }
840 return 0;
841}
842
843/**
844 * amdgpu_dummy_page_fini - free dummy page used by the driver
845 *
846 * @adev: amdgpu_device pointer
847 *
848 * Frees the dummy page used by the driver (all asics).
849 */
850void amdgpu_dummy_page_fini(struct amdgpu_device *adev)
851{
852 if (adev->dummy_page.page == NULL)
853 return;
854 pci_unmap_page(adev->pdev, adev->dummy_page.addr,
855 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
856 __free_page(adev->dummy_page.page);
857 adev->dummy_page.page = NULL;
858}
859
860
861/* ATOM accessor methods */
862/*
863 * ATOM is an interpreted byte code stored in tables in the vbios. The
864 * driver registers callbacks to access registers and the interpreter
865 * in the driver parses the tables and executes then to program specific
866 * actions (set display modes, asic init, etc.). See amdgpu_atombios.c,
867 * atombios.h, and atom.c
868 */
869
870/**
871 * cail_pll_read - read PLL register
872 *
873 * @info: atom card_info pointer
874 * @reg: PLL register offset
875 *
876 * Provides a PLL register accessor for the atom interpreter (r4xx+).
877 * Returns the value of the PLL register.
878 */
879static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
880{
881 return 0;
882}
883
884/**
885 * cail_pll_write - write PLL register
886 *
887 * @info: atom card_info pointer
888 * @reg: PLL register offset
889 * @val: value to write to the pll register
890 *
891 * Provides a PLL register accessor for the atom interpreter (r4xx+).
892 */
893static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
894{
895
896}
897
898/**
899 * cail_mc_read - read MC (Memory Controller) register
900 *
901 * @info: atom card_info pointer
902 * @reg: MC register offset
903 *
904 * Provides an MC register accessor for the atom interpreter (r4xx+).
905 * Returns the value of the MC register.
906 */
907static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
908{
909 return 0;
910}
911
912/**
913 * cail_mc_write - write MC (Memory Controller) register
914 *
915 * @info: atom card_info pointer
916 * @reg: MC register offset
917 * @val: value to write to the pll register
918 *
919 * Provides a MC register accessor for the atom interpreter (r4xx+).
920 */
921static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
922{
923
924}
925
926/**
927 * cail_reg_write - write MMIO register
928 *
929 * @info: atom card_info pointer
930 * @reg: MMIO register offset
931 * @val: value to write to the pll register
932 *
933 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
934 */
935static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
936{
937 struct amdgpu_device *adev = info->dev->dev_private;
938
939 WREG32(reg, val);
940}
941
942/**
943 * cail_reg_read - read MMIO register
944 *
945 * @info: atom card_info pointer
946 * @reg: MMIO register offset
947 *
948 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
949 * Returns the value of the MMIO register.
950 */
951static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
952{
953 struct amdgpu_device *adev = info->dev->dev_private;
954 uint32_t r;
955
956 r = RREG32(reg);
957 return r;
958}
959
960/**
961 * cail_ioreg_write - write IO register
962 *
963 * @info: atom card_info pointer
964 * @reg: IO register offset
965 * @val: value to write to the pll register
966 *
967 * Provides a IO register accessor for the atom interpreter (r4xx+).
968 */
969static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
970{
971 struct amdgpu_device *adev = info->dev->dev_private;
972
973 WREG32_IO(reg, val);
974}
975
976/**
977 * cail_ioreg_read - read IO register
978 *
979 * @info: atom card_info pointer
980 * @reg: IO register offset
981 *
982 * Provides an IO register accessor for the atom interpreter (r4xx+).
983 * Returns the value of the IO register.
984 */
985static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
986{
987 struct amdgpu_device *adev = info->dev->dev_private;
988 uint32_t r;
989
990 r = RREG32_IO(reg);
991 return r;
992}
993
994/**
995 * amdgpu_atombios_fini - free the driver info and callbacks for atombios
996 *
997 * @adev: amdgpu_device pointer
998 *
999 * Frees the driver info and register access callbacks for the ATOM
1000 * interpreter (r4xx+).
1001 * Called at driver shutdown.
1002 */
1003static void amdgpu_atombios_fini(struct amdgpu_device *adev)
1004{
Monk Liu89e0ec9f2016-05-27 19:34:11 +08001005 if (adev->mode_info.atom_context) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001006 kfree(adev->mode_info.atom_context->scratch);
Monk Liu89e0ec9f2016-05-27 19:34:11 +08001007 kfree(adev->mode_info.atom_context->iio);
1008 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001009 kfree(adev->mode_info.atom_context);
1010 adev->mode_info.atom_context = NULL;
1011 kfree(adev->mode_info.atom_card_info);
1012 adev->mode_info.atom_card_info = NULL;
1013}
1014
1015/**
1016 * amdgpu_atombios_init - init the driver info and callbacks for atombios
1017 *
1018 * @adev: amdgpu_device pointer
1019 *
1020 * Initializes the driver info and register access callbacks for the
1021 * ATOM interpreter (r4xx+).
1022 * Returns 0 on sucess, -ENOMEM on failure.
1023 * Called at driver startup.
1024 */
1025static int amdgpu_atombios_init(struct amdgpu_device *adev)
1026{
1027 struct card_info *atom_card_info =
1028 kzalloc(sizeof(struct card_info), GFP_KERNEL);
1029
1030 if (!atom_card_info)
1031 return -ENOMEM;
1032
1033 adev->mode_info.atom_card_info = atom_card_info;
1034 atom_card_info->dev = adev->ddev;
1035 atom_card_info->reg_read = cail_reg_read;
1036 atom_card_info->reg_write = cail_reg_write;
1037 /* needed for iio ops */
1038 if (adev->rio_mem) {
1039 atom_card_info->ioreg_read = cail_ioreg_read;
1040 atom_card_info->ioreg_write = cail_ioreg_write;
1041 } else {
Amber Linb64a18c2017-01-04 08:06:58 -05001042 DRM_INFO("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001043 atom_card_info->ioreg_read = cail_reg_read;
1044 atom_card_info->ioreg_write = cail_reg_write;
1045 }
1046 atom_card_info->mc_read = cail_mc_read;
1047 atom_card_info->mc_write = cail_mc_write;
1048 atom_card_info->pll_read = cail_pll_read;
1049 atom_card_info->pll_write = cail_pll_write;
1050
1051 adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
1052 if (!adev->mode_info.atom_context) {
1053 amdgpu_atombios_fini(adev);
1054 return -ENOMEM;
1055 }
1056
1057 mutex_init(&adev->mode_info.atom_context->mutex);
Alex Deuchera5bde2f2016-09-23 16:23:41 -04001058 if (adev->is_atom_fw) {
1059 amdgpu_atomfirmware_scratch_regs_init(adev);
1060 amdgpu_atomfirmware_allocate_fb_scratch(adev);
1061 } else {
1062 amdgpu_atombios_scratch_regs_init(adev);
1063 amdgpu_atombios_allocate_fb_scratch(adev);
1064 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001065 return 0;
1066}
1067
1068/* if we get transitioned to only one device, take VGA back */
1069/**
1070 * amdgpu_vga_set_decode - enable/disable vga decode
1071 *
1072 * @cookie: amdgpu_device pointer
1073 * @state: enable/disable vga decode
1074 *
1075 * Enable/disable vga decode (all asics).
1076 * Returns VGA resource flags.
1077 */
1078static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
1079{
1080 struct amdgpu_device *adev = cookie;
1081 amdgpu_asic_set_vga_state(adev, state);
1082 if (state)
1083 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1084 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1085 else
1086 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1087}
1088
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001089static void amdgpu_check_block_size(struct amdgpu_device *adev)
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001090{
1091 /* defines number of bits in page table versus page directory,
1092 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1093 * page table and the remaining bits are in the page directory */
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001094 if (amdgpu_vm_block_size == -1)
1095 return;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001096
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001097 if (amdgpu_vm_block_size < 9) {
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001098 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1099 amdgpu_vm_block_size);
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001100 goto def_value;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001101 }
1102
1103 if (amdgpu_vm_block_size > 24 ||
1104 (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
1105 dev_warn(adev->dev, "VM page table size (%d) too large\n",
1106 amdgpu_vm_block_size);
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001107 goto def_value;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001108 }
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001109
1110 return;
1111
1112def_value:
1113 amdgpu_vm_block_size = -1;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001114}
1115
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001116static void amdgpu_check_vm_size(struct amdgpu_device *adev)
1117{
Alex Deucher64dab072017-06-15 18:20:09 -04001118 /* no need to check the default value */
1119 if (amdgpu_vm_size == -1)
1120 return;
1121
Alex Deucher76117502017-06-21 12:31:41 -04001122 if (!is_power_of_2(amdgpu_vm_size)) {
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001123 dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
1124 amdgpu_vm_size);
1125 goto def_value;
1126 }
1127
1128 if (amdgpu_vm_size < 1) {
1129 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1130 amdgpu_vm_size);
1131 goto def_value;
1132 }
1133
1134 /*
1135 * Max GPUVM size for Cayman, SI, CI VI are 40 bits.
1136 */
1137 if (amdgpu_vm_size > 1024) {
1138 dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
1139 amdgpu_vm_size);
1140 goto def_value;
1141 }
1142
1143 return;
1144
1145def_value:
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001146 amdgpu_vm_size = -1;
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001147}
1148
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001149/**
1150 * amdgpu_check_arguments - validate module params
1151 *
1152 * @adev: amdgpu_device pointer
1153 *
1154 * Validates certain module parameters and updates
1155 * the associated values used by the driver (all asics).
1156 */
1157static void amdgpu_check_arguments(struct amdgpu_device *adev)
1158{
Chunming Zhou5b011232015-12-10 17:34:33 +08001159 if (amdgpu_sched_jobs < 4) {
1160 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1161 amdgpu_sched_jobs);
1162 amdgpu_sched_jobs = 4;
Alex Deucher76117502017-06-21 12:31:41 -04001163 } else if (!is_power_of_2(amdgpu_sched_jobs)){
Chunming Zhou5b011232015-12-10 17:34:33 +08001164 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1165 amdgpu_sched_jobs);
1166 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1167 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001168
Christian Königf9321cc2017-07-07 13:44:05 +02001169 if (amdgpu_gart_size < 32) {
1170 /* gart size must be greater or equal to 32M */
1171 dev_warn(adev->dev, "gart size (%d) too small\n",
1172 amdgpu_gart_size);
1173 amdgpu_gart_size = 32;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001174 }
1175
Christian König36d38372017-07-07 13:17:45 +02001176 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
1177 /* gtt size must be greater or equal to 32M */
1178 dev_warn(adev->dev, "gtt size (%d) too small\n",
1179 amdgpu_gtt_size);
1180 amdgpu_gtt_size = -1;
1181 }
1182
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001183 amdgpu_check_vm_size(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001184
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001185 amdgpu_check_block_size(adev);
Christian König6a7f76e2016-08-24 15:51:49 +02001186
jimqu526bae32016-11-07 09:53:10 +08001187 if (amdgpu_vram_page_split != -1 && (amdgpu_vram_page_split < 16 ||
Alex Deucher76117502017-06-21 12:31:41 -04001188 !is_power_of_2(amdgpu_vram_page_split))) {
Christian König6a7f76e2016-08-24 15:51:49 +02001189 dev_warn(adev->dev, "invalid VRAM page split (%d)\n",
1190 amdgpu_vram_page_split);
1191 amdgpu_vram_page_split = 1024;
1192 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001193}
1194
1195/**
1196 * amdgpu_switcheroo_set_state - set switcheroo state
1197 *
1198 * @pdev: pci dev pointer
Lukas Wunner16944672015-09-05 11:17:35 +02001199 * @state: vga_switcheroo state
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001200 *
1201 * Callback for the switcheroo driver. Suspends or resumes the
1202 * the asics before or after it is powered up using ACPI methods.
1203 */
1204static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1205{
1206 struct drm_device *dev = pci_get_drvdata(pdev);
1207
1208 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1209 return;
1210
1211 if (state == VGA_SWITCHEROO_ON) {
1212 unsigned d3_delay = dev->pdev->d3_delay;
1213
Joe Perches7ca85292017-02-28 04:55:52 -08001214 pr_info("amdgpu: switched on\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001215 /* don't suspend or resume card normally */
1216 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1217
Alex Deucher810ddc32016-08-23 13:25:49 -04001218 amdgpu_device_resume(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001219
1220 dev->pdev->d3_delay = d3_delay;
1221
1222 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1223 drm_kms_helper_poll_enable(dev);
1224 } else {
Joe Perches7ca85292017-02-28 04:55:52 -08001225 pr_info("amdgpu: switched off\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001226 drm_kms_helper_poll_disable(dev);
1227 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Alex Deucher810ddc32016-08-23 13:25:49 -04001228 amdgpu_device_suspend(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001229 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1230 }
1231}
1232
1233/**
1234 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1235 *
1236 * @pdev: pci dev pointer
1237 *
1238 * Callback for the switcheroo driver. Check of the switcheroo
1239 * state can be changed.
1240 * Returns true if the state can be changed, false if not.
1241 */
1242static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1243{
1244 struct drm_device *dev = pci_get_drvdata(pdev);
1245
1246 /*
1247 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1248 * locking inversion with the driver load path. And the access here is
1249 * completely racy anyway. So don't bother with locking for now.
1250 */
1251 return dev->open_count == 0;
1252}
1253
1254static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1255 .set_gpu_state = amdgpu_switcheroo_set_state,
1256 .reprobe = NULL,
1257 .can_switch = amdgpu_switcheroo_can_switch,
1258};
1259
1260int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001261 enum amd_ip_block_type block_type,
1262 enum amd_clockgating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001263{
1264 int i, r = 0;
1265
1266 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001267 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001268 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001269 if (adev->ip_blocks[i].version->type != block_type)
1270 continue;
1271 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1272 continue;
1273 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1274 (void *)adev, state);
1275 if (r)
1276 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1277 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001278 }
1279 return r;
1280}
1281
1282int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001283 enum amd_ip_block_type block_type,
1284 enum amd_powergating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001285{
1286 int i, r = 0;
1287
1288 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001289 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001290 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001291 if (adev->ip_blocks[i].version->type != block_type)
1292 continue;
1293 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1294 continue;
1295 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1296 (void *)adev, state);
1297 if (r)
1298 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1299 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001300 }
1301 return r;
1302}
1303
Huang Rui6cb2d4e2017-01-05 18:44:41 +08001304void amdgpu_get_clockgating_state(struct amdgpu_device *adev, u32 *flags)
1305{
1306 int i;
1307
1308 for (i = 0; i < adev->num_ip_blocks; i++) {
1309 if (!adev->ip_blocks[i].status.valid)
1310 continue;
1311 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1312 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1313 }
1314}
1315
Alex Deucher5dbbb602016-06-23 11:41:04 -04001316int amdgpu_wait_for_idle(struct amdgpu_device *adev,
1317 enum amd_ip_block_type block_type)
1318{
1319 int i, r;
1320
1321 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001322 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001323 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001324 if (adev->ip_blocks[i].version->type == block_type) {
1325 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001326 if (r)
1327 return r;
1328 break;
1329 }
1330 }
1331 return 0;
1332
1333}
1334
1335bool amdgpu_is_idle(struct amdgpu_device *adev,
1336 enum amd_ip_block_type block_type)
1337{
1338 int i;
1339
1340 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001341 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001342 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001343 if (adev->ip_blocks[i].version->type == block_type)
1344 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001345 }
1346 return true;
1347
1348}
1349
Alex Deuchera1255102016-10-13 17:41:13 -04001350struct amdgpu_ip_block * amdgpu_get_ip_block(struct amdgpu_device *adev,
1351 enum amd_ip_block_type type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001352{
1353 int i;
1354
1355 for (i = 0; i < adev->num_ip_blocks; i++)
Alex Deuchera1255102016-10-13 17:41:13 -04001356 if (adev->ip_blocks[i].version->type == type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001357 return &adev->ip_blocks[i];
1358
1359 return NULL;
1360}
1361
1362/**
1363 * amdgpu_ip_block_version_cmp
1364 *
1365 * @adev: amdgpu_device pointer
yanyang15fc3aee2015-05-22 14:39:35 -04001366 * @type: enum amd_ip_block_type
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001367 * @major: major version
1368 * @minor: minor version
1369 *
1370 * return 0 if equal or greater
1371 * return 1 if smaller or the ip_block doesn't exist
1372 */
1373int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001374 enum amd_ip_block_type type,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001375 u32 major, u32 minor)
1376{
Alex Deuchera1255102016-10-13 17:41:13 -04001377 struct amdgpu_ip_block *ip_block = amdgpu_get_ip_block(adev, type);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001378
Alex Deuchera1255102016-10-13 17:41:13 -04001379 if (ip_block && ((ip_block->version->major > major) ||
1380 ((ip_block->version->major == major) &&
1381 (ip_block->version->minor >= minor))))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001382 return 0;
1383
1384 return 1;
1385}
1386
Alex Deuchera1255102016-10-13 17:41:13 -04001387/**
1388 * amdgpu_ip_block_add
1389 *
1390 * @adev: amdgpu_device pointer
1391 * @ip_block_version: pointer to the IP to add
1392 *
1393 * Adds the IP block driver information to the collection of IPs
1394 * on the asic.
1395 */
1396int amdgpu_ip_block_add(struct amdgpu_device *adev,
1397 const struct amdgpu_ip_block_version *ip_block_version)
1398{
1399 if (!ip_block_version)
1400 return -EINVAL;
1401
Huang Ruia0bae352017-05-03 09:52:06 +08001402 DRM_DEBUG("add ip block number %d <%s>\n", adev->num_ip_blocks,
1403 ip_block_version->funcs->name);
1404
Alex Deuchera1255102016-10-13 17:41:13 -04001405 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1406
1407 return 0;
1408}
1409
Alex Deucher483ef982016-09-30 12:43:04 -04001410static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
Emily Deng9accf2f2016-08-10 16:01:25 +08001411{
1412 adev->enable_virtual_display = false;
1413
1414 if (amdgpu_virtual_display) {
1415 struct drm_device *ddev = adev->ddev;
1416 const char *pci_address_name = pci_name(ddev->pdev);
Emily Deng0f663562016-09-30 13:02:18 -04001417 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
Emily Deng9accf2f2016-08-10 16:01:25 +08001418
1419 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1420 pciaddstr_tmp = pciaddstr;
Emily Deng0f663562016-09-30 13:02:18 -04001421 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1422 pciaddname = strsep(&pciaddname_tmp, ",");
Yintian Tao967de2a2017-01-22 15:16:51 +08001423 if (!strcmp("all", pciaddname)
1424 || !strcmp(pci_address_name, pciaddname)) {
Emily Deng0f663562016-09-30 13:02:18 -04001425 long num_crtc;
1426 int res = -1;
1427
Emily Deng9accf2f2016-08-10 16:01:25 +08001428 adev->enable_virtual_display = true;
Emily Deng0f663562016-09-30 13:02:18 -04001429
1430 if (pciaddname_tmp)
1431 res = kstrtol(pciaddname_tmp, 10,
1432 &num_crtc);
1433
1434 if (!res) {
1435 if (num_crtc < 1)
1436 num_crtc = 1;
1437 if (num_crtc > 6)
1438 num_crtc = 6;
1439 adev->mode_info.num_crtc = num_crtc;
1440 } else {
1441 adev->mode_info.num_crtc = 1;
1442 }
Emily Deng9accf2f2016-08-10 16:01:25 +08001443 break;
1444 }
1445 }
1446
Emily Deng0f663562016-09-30 13:02:18 -04001447 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1448 amdgpu_virtual_display, pci_address_name,
1449 adev->enable_virtual_display, adev->mode_info.num_crtc);
Emily Deng9accf2f2016-08-10 16:01:25 +08001450
1451 kfree(pciaddstr);
1452 }
1453}
1454
Alex Deuchere2a75f82017-04-27 16:58:01 -04001455static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
1456{
Alex Deuchere2a75f82017-04-27 16:58:01 -04001457 const char *chip_name;
1458 char fw_name[30];
1459 int err;
1460 const struct gpu_info_firmware_header_v1_0 *hdr;
1461
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001462 adev->firmware.gpu_info_fw = NULL;
1463
Alex Deuchere2a75f82017-04-27 16:58:01 -04001464 switch (adev->asic_type) {
1465 case CHIP_TOPAZ:
1466 case CHIP_TONGA:
1467 case CHIP_FIJI:
1468 case CHIP_POLARIS11:
1469 case CHIP_POLARIS10:
1470 case CHIP_POLARIS12:
1471 case CHIP_CARRIZO:
1472 case CHIP_STONEY:
1473#ifdef CONFIG_DRM_AMDGPU_SI
1474 case CHIP_VERDE:
1475 case CHIP_TAHITI:
1476 case CHIP_PITCAIRN:
1477 case CHIP_OLAND:
1478 case CHIP_HAINAN:
1479#endif
1480#ifdef CONFIG_DRM_AMDGPU_CIK
1481 case CHIP_BONAIRE:
1482 case CHIP_HAWAII:
1483 case CHIP_KAVERI:
1484 case CHIP_KABINI:
1485 case CHIP_MULLINS:
1486#endif
1487 default:
1488 return 0;
1489 case CHIP_VEGA10:
1490 chip_name = "vega10";
1491 break;
Alex Deucher2d2e5e72017-05-09 12:27:35 -04001492 case CHIP_RAVEN:
1493 chip_name = "raven";
1494 break;
Alex Deuchere2a75f82017-04-27 16:58:01 -04001495 }
1496
1497 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001498 err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001499 if (err) {
1500 dev_err(adev->dev,
1501 "Failed to load gpu_info firmware \"%s\"\n",
1502 fw_name);
1503 goto out;
1504 }
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001505 err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001506 if (err) {
1507 dev_err(adev->dev,
1508 "Failed to validate gpu_info firmware \"%s\"\n",
1509 fw_name);
1510 goto out;
1511 }
1512
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001513 hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data;
Alex Deuchere2a75f82017-04-27 16:58:01 -04001514 amdgpu_ucode_print_gpu_info_hdr(&hdr->header);
1515
1516 switch (hdr->version_major) {
1517 case 1:
1518 {
1519 const struct gpu_info_firmware_v1_0 *gpu_info_fw =
Huang Ruiab4fe3e2017-06-05 22:11:59 +08001520 (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data +
Alex Deuchere2a75f82017-04-27 16:58:01 -04001521 le32_to_cpu(hdr->header.ucode_array_offset_bytes));
1522
Alex Deucherb5ab16b2017-05-11 19:09:49 -04001523 adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se);
1524 adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh);
1525 adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se);
1526 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 -04001527 adev->gfx.config.max_texture_channel_caches =
Alex Deucherb5ab16b2017-05-11 19:09:49 -04001528 le32_to_cpu(gpu_info_fw->gc_num_tccs);
1529 adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs);
1530 adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds);
1531 adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth);
1532 adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001533 adev->gfx.config.double_offchip_lds_buf =
Alex Deucherb5ab16b2017-05-11 19:09:49 -04001534 le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer);
1535 adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size);
Hawking Zhang51fd0372017-06-09 22:30:52 +08001536 adev->gfx.cu_info.max_waves_per_simd =
1537 le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd);
1538 adev->gfx.cu_info.max_scratch_slots_per_cu =
1539 le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu);
1540 adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size);
Alex Deuchere2a75f82017-04-27 16:58:01 -04001541 break;
1542 }
1543 default:
1544 dev_err(adev->dev,
1545 "Unsupported gpu_info table %d\n", hdr->header.ucode_version);
1546 err = -EINVAL;
1547 goto out;
1548 }
1549out:
Alex Deuchere2a75f82017-04-27 16:58:01 -04001550 return err;
1551}
1552
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001553static int amdgpu_early_init(struct amdgpu_device *adev)
1554{
Alex Deucheraaa36a92015-04-20 17:31:14 -04001555 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001556
Alex Deucher483ef982016-09-30 12:43:04 -04001557 amdgpu_device_enable_virtual_display(adev);
Emily Denga6be7572016-08-08 11:37:50 +08001558
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001559 switch (adev->asic_type) {
Alex Deucheraaa36a92015-04-20 17:31:14 -04001560 case CHIP_TOPAZ:
1561 case CHIP_TONGA:
David Zhang48299f92015-07-08 01:05:16 +08001562 case CHIP_FIJI:
Flora Cui2cc0c0b2016-03-14 18:33:29 -04001563 case CHIP_POLARIS11:
1564 case CHIP_POLARIS10:
Junwei Zhangc4642a42016-12-14 15:32:28 -05001565 case CHIP_POLARIS12:
Alex Deucheraaa36a92015-04-20 17:31:14 -04001566 case CHIP_CARRIZO:
Samuel Li39bb0c92015-10-08 16:31:43 -04001567 case CHIP_STONEY:
1568 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
Alex Deucheraaa36a92015-04-20 17:31:14 -04001569 adev->family = AMDGPU_FAMILY_CZ;
1570 else
1571 adev->family = AMDGPU_FAMILY_VI;
1572
1573 r = vi_set_ip_blocks(adev);
1574 if (r)
1575 return r;
1576 break;
Ken Wang33f34802016-01-21 17:29:41 +08001577#ifdef CONFIG_DRM_AMDGPU_SI
1578 case CHIP_VERDE:
1579 case CHIP_TAHITI:
1580 case CHIP_PITCAIRN:
1581 case CHIP_OLAND:
1582 case CHIP_HAINAN:
Ken Wang295d0da2016-05-24 21:02:53 +08001583 adev->family = AMDGPU_FAMILY_SI;
Ken Wang33f34802016-01-21 17:29:41 +08001584 r = si_set_ip_blocks(adev);
1585 if (r)
1586 return r;
1587 break;
1588#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -04001589#ifdef CONFIG_DRM_AMDGPU_CIK
1590 case CHIP_BONAIRE:
1591 case CHIP_HAWAII:
1592 case CHIP_KAVERI:
1593 case CHIP_KABINI:
1594 case CHIP_MULLINS:
1595 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1596 adev->family = AMDGPU_FAMILY_CI;
1597 else
1598 adev->family = AMDGPU_FAMILY_KV;
1599
1600 r = cik_set_ip_blocks(adev);
1601 if (r)
1602 return r;
1603 break;
1604#endif
Chunming Zhou2ca8a5d2016-12-07 17:31:19 +08001605 case CHIP_VEGA10:
1606 case CHIP_RAVEN:
1607 if (adev->asic_type == CHIP_RAVEN)
1608 adev->family = AMDGPU_FAMILY_RV;
1609 else
1610 adev->family = AMDGPU_FAMILY_AI;
Ken Wang460826e2017-03-06 14:53:16 -05001611
1612 r = soc15_set_ip_blocks(adev);
1613 if (r)
1614 return r;
1615 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001616 default:
1617 /* FIXME: not supported yet */
1618 return -EINVAL;
1619 }
1620
Alex Deuchere2a75f82017-04-27 16:58:01 -04001621 r = amdgpu_device_parse_gpu_info_fw(adev);
1622 if (r)
1623 return r;
1624
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001625 if (amdgpu_sriov_vf(adev)) {
1626 r = amdgpu_virt_request_full_gpu(adev, true);
1627 if (r)
1628 return r;
1629 }
1630
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001631 for (i = 0; i < adev->num_ip_blocks; i++) {
1632 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
Huang Ruied8cf002017-05-03 09:40:17 +08001633 DRM_ERROR("disabled ip block: %d <%s>\n",
1634 i, adev->ip_blocks[i].version->funcs->name);
Alex Deuchera1255102016-10-13 17:41:13 -04001635 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001636 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001637 if (adev->ip_blocks[i].version->funcs->early_init) {
1638 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001639 if (r == -ENOENT) {
Alex Deuchera1255102016-10-13 17:41:13 -04001640 adev->ip_blocks[i].status.valid = false;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001641 } else if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001642 DRM_ERROR("early_init of IP block <%s> failed %d\n",
1643 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001644 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001645 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001646 adev->ip_blocks[i].status.valid = true;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001647 }
Alex Deucher974e6b62015-07-10 13:59:44 -04001648 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001649 adev->ip_blocks[i].status.valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001650 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001651 }
1652 }
1653
Nicolai Hähnle395d1fb2016-06-02 12:32:07 +02001654 adev->cg_flags &= amdgpu_cg_mask;
1655 adev->pg_flags &= amdgpu_pg_mask;
1656
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001657 return 0;
1658}
1659
1660static int amdgpu_init(struct amdgpu_device *adev)
1661{
1662 int i, r;
1663
1664 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001665 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001666 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001667 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001668 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001669 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
1670 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001671 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001672 }
Alex Deuchera1255102016-10-13 17:41:13 -04001673 adev->ip_blocks[i].status.sw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001674 /* need to do gmc hw init early so we can allocate gpu mem */
Alex Deuchera1255102016-10-13 17:41:13 -04001675 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001676 r = amdgpu_vram_scratch_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001677 if (r) {
1678 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001679 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001680 }
Alex Deuchera1255102016-10-13 17:41:13 -04001681 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001682 if (r) {
1683 DRM_ERROR("hw_init %d failed %d\n", i, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001684 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001685 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001686 r = amdgpu_wb_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001687 if (r) {
1688 DRM_ERROR("amdgpu_wb_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001689 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001690 }
Alex Deuchera1255102016-10-13 17:41:13 -04001691 adev->ip_blocks[i].status.hw = true;
Monk Liu24936642017-01-09 15:54:32 +08001692
1693 /* right after GMC hw init, we create CSA */
1694 if (amdgpu_sriov_vf(adev)) {
1695 r = amdgpu_allocate_static_csa(adev);
1696 if (r) {
1697 DRM_ERROR("allocate CSA failed %d\n", r);
1698 return r;
1699 }
1700 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001701 }
1702 }
1703
1704 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001705 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001706 continue;
1707 /* gmc hw init is done early */
Alex Deuchera1255102016-10-13 17:41:13 -04001708 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001709 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001710 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001711 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001712 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1713 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001714 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001715 }
Alex Deuchera1255102016-10-13 17:41:13 -04001716 adev->ip_blocks[i].status.hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001717 }
1718
1719 return 0;
1720}
1721
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08001722static void amdgpu_fill_reset_magic(struct amdgpu_device *adev)
1723{
1724 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM);
1725}
1726
1727static bool amdgpu_check_vram_lost(struct amdgpu_device *adev)
1728{
1729 return !!memcmp(adev->gart.ptr, adev->reset_magic,
1730 AMDGPU_RESET_MAGIC_NUM);
1731}
1732
Shirish S2dc80b02017-05-25 10:05:25 +05301733static int amdgpu_late_set_cg_state(struct amdgpu_device *adev)
1734{
1735 int i = 0, r;
1736
1737 for (i = 0; i < adev->num_ip_blocks; i++) {
1738 if (!adev->ip_blocks[i].status.valid)
1739 continue;
1740 /* skip CG for VCE/UVD, it's handled specially */
1741 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1742 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
1743 /* enable clockgating to save power */
1744 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1745 AMD_CG_STATE_GATE);
1746 if (r) {
1747 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
1748 adev->ip_blocks[i].version->funcs->name, r);
1749 return r;
1750 }
1751 }
1752 }
1753 return 0;
1754}
1755
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001756static int amdgpu_late_init(struct amdgpu_device *adev)
1757{
1758 int i = 0, r;
1759
1760 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001761 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001762 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001763 if (adev->ip_blocks[i].version->funcs->late_init) {
1764 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001765 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001766 DRM_ERROR("late_init of IP block <%s> failed %d\n",
1767 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001768 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001769 }
Alex Deuchera1255102016-10-13 17:41:13 -04001770 adev->ip_blocks[i].status.late_initialized = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001771 }
1772 }
1773
Shirish S2dc80b02017-05-25 10:05:25 +05301774 mod_delayed_work(system_wq, &adev->late_init_work,
1775 msecs_to_jiffies(AMDGPU_RESUME_MS));
1776
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08001777 amdgpu_fill_reset_magic(adev);
1778
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001779 return 0;
1780}
1781
1782static int amdgpu_fini(struct amdgpu_device *adev)
1783{
1784 int i, r;
1785
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001786 /* need to disable SMC first */
1787 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001788 if (!adev->ip_blocks[i].status.hw)
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001789 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001790 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001791 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
Alex Deuchera1255102016-10-13 17:41:13 -04001792 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1793 AMD_CG_STATE_UNGATE);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001794 if (r) {
1795 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001796 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001797 return r;
1798 }
Alex Deuchera1255102016-10-13 17:41:13 -04001799 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001800 /* XXX handle errors */
1801 if (r) {
1802 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001803 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001804 }
Alex Deuchera1255102016-10-13 17:41:13 -04001805 adev->ip_blocks[i].status.hw = false;
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001806 break;
1807 }
1808 }
1809
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001810 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001811 if (!adev->ip_blocks[i].status.hw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001812 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001813 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001814 amdgpu_wb_fini(adev);
1815 amdgpu_vram_scratch_fini(adev);
1816 }
Rex Zhu8201a672016-11-24 21:44:44 +08001817
1818 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1819 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
1820 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
1821 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1822 AMD_CG_STATE_UNGATE);
1823 if (r) {
1824 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1825 adev->ip_blocks[i].version->funcs->name, r);
1826 return r;
1827 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001828 }
Rex Zhu8201a672016-11-24 21:44:44 +08001829
Alex Deuchera1255102016-10-13 17:41:13 -04001830 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001831 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001832 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001833 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1834 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001835 }
Rex Zhu8201a672016-11-24 21:44:44 +08001836
Alex Deuchera1255102016-10-13 17:41:13 -04001837 adev->ip_blocks[i].status.hw = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001838 }
1839
1840 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001841 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001842 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001843 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001844 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001845 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001846 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
1847 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001848 }
Alex Deuchera1255102016-10-13 17:41:13 -04001849 adev->ip_blocks[i].status.sw = false;
1850 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001851 }
1852
Monk Liua6dcfd92016-05-19 14:36:34 +08001853 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001854 if (!adev->ip_blocks[i].status.late_initialized)
Grazvydas Ignotas8a2eef12016-10-03 00:06:44 +03001855 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001856 if (adev->ip_blocks[i].version->funcs->late_fini)
1857 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
1858 adev->ip_blocks[i].status.late_initialized = false;
Monk Liua6dcfd92016-05-19 14:36:34 +08001859 }
1860
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001861 if (amdgpu_sriov_vf(adev)) {
Monk Liu24936642017-01-09 15:54:32 +08001862 amdgpu_bo_free_kernel(&adev->virt.csa_obj, &adev->virt.csa_vmid0_addr, NULL);
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001863 amdgpu_virt_release_full_gpu(adev, false);
1864 }
Monk Liu24936642017-01-09 15:54:32 +08001865
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001866 return 0;
1867}
1868
Shirish S2dc80b02017-05-25 10:05:25 +05301869static void amdgpu_late_init_func_handler(struct work_struct *work)
1870{
1871 struct amdgpu_device *adev =
1872 container_of(work, struct amdgpu_device, late_init_work.work);
1873 amdgpu_late_set_cg_state(adev);
1874}
1875
Alex Deucherfaefba92016-12-06 10:38:29 -05001876int amdgpu_suspend(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001877{
1878 int i, r;
1879
Xiangliang Yue941ea92017-01-18 12:47:55 +08001880 if (amdgpu_sriov_vf(adev))
1881 amdgpu_virt_request_full_gpu(adev, false);
1882
Flora Cuic5a93a22016-02-26 10:45:25 +08001883 /* ungate SMC block first */
1884 r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC,
1885 AMD_CG_STATE_UNGATE);
1886 if (r) {
1887 DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r);
1888 }
1889
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001890 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001891 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001892 continue;
1893 /* ungate blocks so that suspend can properly shut them down */
Flora Cuic5a93a22016-02-26 10:45:25 +08001894 if (i != AMD_IP_BLOCK_TYPE_SMC) {
Alex Deuchera1255102016-10-13 17:41:13 -04001895 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1896 AMD_CG_STATE_UNGATE);
Flora Cuic5a93a22016-02-26 10:45:25 +08001897 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001898 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1899 adev->ip_blocks[i].version->funcs->name, r);
Flora Cuic5a93a22016-02-26 10:45:25 +08001900 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001901 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001902 /* XXX handle errors */
Alex Deuchera1255102016-10-13 17:41:13 -04001903 r = adev->ip_blocks[i].version->funcs->suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001904 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001905 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001906 DRM_ERROR("suspend of IP block <%s> failed %d\n",
1907 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001908 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001909 }
1910
Xiangliang Yue941ea92017-01-18 12:47:55 +08001911 if (amdgpu_sriov_vf(adev))
1912 amdgpu_virt_release_full_gpu(adev, false);
1913
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001914 return 0;
1915}
1916
Monk Liue4f0fdc2017-02-09 11:55:49 +08001917static int amdgpu_sriov_reinit_early(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001918{
1919 int i, r;
1920
Monk Liu2cb681b2017-04-26 12:00:49 +08001921 static enum amd_ip_block_type ip_order[] = {
1922 AMD_IP_BLOCK_TYPE_GMC,
1923 AMD_IP_BLOCK_TYPE_COMMON,
Monk Liu2cb681b2017-04-26 12:00:49 +08001924 AMD_IP_BLOCK_TYPE_IH,
1925 };
Monk Liua90ad3c2017-01-23 14:22:08 +08001926
Monk Liu2cb681b2017-04-26 12:00:49 +08001927 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
1928 int j;
1929 struct amdgpu_ip_block *block;
Monk Liua90ad3c2017-01-23 14:22:08 +08001930
Monk Liu2cb681b2017-04-26 12:00:49 +08001931 for (j = 0; j < adev->num_ip_blocks; j++) {
1932 block = &adev->ip_blocks[j];
1933
1934 if (block->version->type != ip_order[i] ||
1935 !block->status.valid)
1936 continue;
1937
1938 r = block->version->funcs->hw_init(adev);
1939 DRM_INFO("RE-INIT: %s %s\n", block->version->funcs->name, r?"failed":"successed");
Monk Liua90ad3c2017-01-23 14:22:08 +08001940 }
1941 }
1942
1943 return 0;
1944}
1945
Monk Liue4f0fdc2017-02-09 11:55:49 +08001946static int amdgpu_sriov_reinit_late(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001947{
1948 int i, r;
1949
Monk Liu2cb681b2017-04-26 12:00:49 +08001950 static enum amd_ip_block_type ip_order[] = {
1951 AMD_IP_BLOCK_TYPE_SMC,
1952 AMD_IP_BLOCK_TYPE_DCE,
1953 AMD_IP_BLOCK_TYPE_GFX,
1954 AMD_IP_BLOCK_TYPE_SDMA,
1955 AMD_IP_BLOCK_TYPE_VCE,
1956 };
Monk Liua90ad3c2017-01-23 14:22:08 +08001957
Monk Liu2cb681b2017-04-26 12:00:49 +08001958 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
1959 int j;
1960 struct amdgpu_ip_block *block;
Monk Liua90ad3c2017-01-23 14:22:08 +08001961
Monk Liu2cb681b2017-04-26 12:00:49 +08001962 for (j = 0; j < adev->num_ip_blocks; j++) {
1963 block = &adev->ip_blocks[j];
1964
1965 if (block->version->type != ip_order[i] ||
1966 !block->status.valid)
1967 continue;
1968
1969 r = block->version->funcs->hw_init(adev);
1970 DRM_INFO("RE-INIT: %s %s\n", block->version->funcs->name, r?"failed":"successed");
Monk Liua90ad3c2017-01-23 14:22:08 +08001971 }
1972 }
1973
1974 return 0;
1975}
1976
Chunming Zhoufcf06492017-05-05 10:33:33 +08001977static int amdgpu_resume_phase1(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001978{
1979 int i, r;
1980
1981 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001982 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001983 continue;
Chunming Zhoufcf06492017-05-05 10:33:33 +08001984 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1985 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
1986 adev->ip_blocks[i].version->type ==
1987 AMD_IP_BLOCK_TYPE_IH) {
1988 r = adev->ip_blocks[i].version->funcs->resume(adev);
1989 if (r) {
1990 DRM_ERROR("resume of IP block <%s> failed %d\n",
1991 adev->ip_blocks[i].version->funcs->name, r);
1992 return r;
1993 }
1994 }
1995 }
1996
1997 return 0;
1998}
1999
2000static int amdgpu_resume_phase2(struct amdgpu_device *adev)
2001{
2002 int i, r;
2003
2004 for (i = 0; i < adev->num_ip_blocks; i++) {
2005 if (!adev->ip_blocks[i].status.valid)
2006 continue;
2007 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
2008 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
2009 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH )
2010 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002011 r = adev->ip_blocks[i].version->funcs->resume(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002012 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04002013 DRM_ERROR("resume of IP block <%s> failed %d\n",
2014 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002015 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002016 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002017 }
2018
2019 return 0;
2020}
2021
Chunming Zhoufcf06492017-05-05 10:33:33 +08002022static int amdgpu_resume(struct amdgpu_device *adev)
2023{
2024 int r;
2025
2026 r = amdgpu_resume_phase1(adev);
2027 if (r)
2028 return r;
2029 r = amdgpu_resume_phase2(adev);
2030
2031 return r;
2032}
2033
Monk Liu4e99a442016-03-31 13:26:59 +08002034static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
Andres Rodriguez048765a2016-06-11 02:51:32 -04002035{
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002036 if (adev->is_atom_fw) {
2037 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
2038 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2039 } else {
2040 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
2041 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2042 }
Andres Rodriguez048765a2016-06-11 02:51:32 -04002043}
2044
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002045/**
2046 * amdgpu_device_init - initialize the driver
2047 *
2048 * @adev: amdgpu_device pointer
2049 * @pdev: drm dev pointer
2050 * @pdev: pci dev pointer
2051 * @flags: driver flags
2052 *
2053 * Initializes the driver info and hw (all asics).
2054 * Returns 0 for success or an error on failure.
2055 * Called at driver startup.
2056 */
2057int amdgpu_device_init(struct amdgpu_device *adev,
2058 struct drm_device *ddev,
2059 struct pci_dev *pdev,
2060 uint32_t flags)
2061{
2062 int r, i;
2063 bool runtime = false;
Marek Olšák95844d22016-08-17 23:49:27 +02002064 u32 max_MBps;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002065
2066 adev->shutdown = false;
2067 adev->dev = &pdev->dev;
2068 adev->ddev = ddev;
2069 adev->pdev = pdev;
2070 adev->flags = flags;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08002071 adev->asic_type = flags & AMD_ASIC_MASK;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002072 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
Christian König6f02a692017-07-07 11:56:59 +02002073 adev->mc.gart_size = 512 * 1024 * 1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002074 adev->accel_working = false;
2075 adev->num_rings = 0;
2076 adev->mman.buffer_funcs = NULL;
2077 adev->mman.buffer_funcs_ring = NULL;
2078 adev->vm_manager.vm_pte_funcs = NULL;
Christian König2d55e452016-02-08 17:37:38 +01002079 adev->vm_manager.vm_pte_num_rings = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002080 adev->gart.gart_funcs = NULL;
Chris Wilsonf54d1862016-10-25 13:00:45 +01002081 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002082
2083 adev->smc_rreg = &amdgpu_invalid_rreg;
2084 adev->smc_wreg = &amdgpu_invalid_wreg;
2085 adev->pcie_rreg = &amdgpu_invalid_rreg;
2086 adev->pcie_wreg = &amdgpu_invalid_wreg;
Huang Rui36b9a952016-08-31 13:23:25 +08002087 adev->pciep_rreg = &amdgpu_invalid_rreg;
2088 adev->pciep_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002089 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
2090 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
2091 adev->didt_rreg = &amdgpu_invalid_rreg;
2092 adev->didt_wreg = &amdgpu_invalid_wreg;
Rex Zhuccdbb202016-06-08 12:47:41 +08002093 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
2094 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002095 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
2096 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
2097
Rex Zhuccdbb202016-06-08 12:47:41 +08002098
Alex Deucher3e39ab92015-06-05 15:04:33 -04002099 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
2100 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
2101 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002102
2103 /* mutex initialization are all done here so we
2104 * can recall function without having locking issues */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002105 atomic_set(&adev->irq.ih.lock, 0);
Huang Rui0e5ca0d2017-03-03 18:37:23 -05002106 mutex_init(&adev->firmware.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002107 mutex_init(&adev->pm.mutex);
2108 mutex_init(&adev->gfx.gpu_clock_mutex);
2109 mutex_init(&adev->srbm_mutex);
2110 mutex_init(&adev->grbm_idx_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002111 mutex_init(&adev->mn_lock);
2112 hash_init(adev->mn_hash);
2113
2114 amdgpu_check_arguments(adev);
2115
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002116 spin_lock_init(&adev->mmio_idx_lock);
2117 spin_lock_init(&adev->smc_idx_lock);
2118 spin_lock_init(&adev->pcie_idx_lock);
2119 spin_lock_init(&adev->uvd_ctx_idx_lock);
2120 spin_lock_init(&adev->didt_idx_lock);
Rex Zhuccdbb202016-06-08 12:47:41 +08002121 spin_lock_init(&adev->gc_cac_idx_lock);
Evan Quan16abb5d2017-07-04 09:21:50 +08002122 spin_lock_init(&adev->se_cac_idx_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002123 spin_lock_init(&adev->audio_endpt_idx_lock);
Marek Olšák95844d22016-08-17 23:49:27 +02002124 spin_lock_init(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002125
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +08002126 INIT_LIST_HEAD(&adev->shadow_list);
2127 mutex_init(&adev->shadow_list_lock);
2128
Chunming Zhou5c1354b2016-08-30 16:13:10 +08002129 INIT_LIST_HEAD(&adev->gtt_list);
2130 spin_lock_init(&adev->gtt_list_lock);
2131
Andres Rodriguez795f2812017-03-06 16:27:55 -05002132 INIT_LIST_HEAD(&adev->ring_lru_list);
2133 spin_lock_init(&adev->ring_lru_list_lock);
2134
Shirish S2dc80b02017-05-25 10:05:25 +05302135 INIT_DELAYED_WORK(&adev->late_init_work, amdgpu_late_init_func_handler);
2136
Alex Xie0fa49552017-06-08 14:58:05 -04002137 /* Registers mapping */
2138 /* TODO: block userspace mapping of io register */
Ken Wangda69c1612016-01-21 19:08:55 +08002139 if (adev->asic_type >= CHIP_BONAIRE) {
2140 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
2141 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
2142 } else {
2143 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
2144 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
2145 }
Chunming Zhou5c1354b2016-08-30 16:13:10 +08002146
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002147 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
2148 if (adev->rmmio == NULL) {
2149 return -ENOMEM;
2150 }
2151 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
2152 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
2153
Ken Wangda69c1612016-01-21 19:08:55 +08002154 if (adev->asic_type >= CHIP_BONAIRE)
2155 /* doorbell bar mapping */
2156 amdgpu_doorbell_init(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002157
2158 /* io port mapping */
2159 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
2160 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
2161 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
2162 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
2163 break;
2164 }
2165 }
2166 if (adev->rio_mem == NULL)
Amber Linb64a18c2017-01-04 08:06:58 -05002167 DRM_INFO("PCI I/O BAR is not found.\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002168
2169 /* early init functions */
2170 r = amdgpu_early_init(adev);
2171 if (r)
2172 return r;
2173
2174 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
2175 /* this will fail for cards that aren't VGA class devices, just
2176 * ignore it */
2177 vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
2178
2179 if (amdgpu_runtime_pm == 1)
2180 runtime = true;
Alex Deuchere9bef452016-04-25 13:12:18 -04002181 if (amdgpu_device_is_px(ddev))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002182 runtime = true;
Lukas Wunner84c8b222017-03-10 21:23:45 +01002183 if (!pci_is_thunderbolt_attached(adev->pdev))
2184 vga_switcheroo_register_client(adev->pdev,
2185 &amdgpu_switcheroo_ops, runtime);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002186 if (runtime)
2187 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
2188
2189 /* Read BIOS */
Alex Deucher83ba1262016-06-03 18:21:41 -04002190 if (!amdgpu_get_bios(adev)) {
2191 r = -EINVAL;
2192 goto failed;
2193 }
Nils Wallméniusf7e9e9f2016-12-14 21:52:45 +01002194
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002195 r = amdgpu_atombios_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002196 if (r) {
2197 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002198 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0);
Alex Deucher83ba1262016-06-03 18:21:41 -04002199 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002200 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002201
Monk Liu4e99a442016-03-31 13:26:59 +08002202 /* detect if we are with an SRIOV vbios */
2203 amdgpu_device_detect_sriov_bios(adev);
Andres Rodriguez048765a2016-06-11 02:51:32 -04002204
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002205 /* Post card if necessary */
Monk Liubec86372016-09-14 19:38:08 +08002206 if (amdgpu_vpost_needed(adev)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002207 if (!adev->bios) {
Monk Liubec86372016-09-14 19:38:08 +08002208 dev_err(adev->dev, "no vBIOS found\n");
Gavin Wan89041942017-06-23 13:55:15 -04002209 amdgpu_vf_error_put(AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
Alex Deucher83ba1262016-06-03 18:21:41 -04002210 r = -EINVAL;
2211 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002212 }
Monk Liubec86372016-09-14 19:38:08 +08002213 DRM_INFO("GPU posting now...\n");
Monk Liu4e99a442016-03-31 13:26:59 +08002214 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2215 if (r) {
2216 dev_err(adev->dev, "gpu post error!\n");
Gavin Wan89041942017-06-23 13:55:15 -04002217 amdgpu_vf_error_put(AMDGIM_ERROR_VF_GPU_POST_ERROR, 0, 0);
Monk Liu4e99a442016-03-31 13:26:59 +08002218 goto failed;
2219 }
2220 } else {
2221 DRM_INFO("GPU post is not needed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002222 }
2223
Alex Deucher88b64e92017-07-10 10:43:10 -04002224 if (adev->is_atom_fw) {
2225 /* Initialize clocks */
2226 r = amdgpu_atomfirmware_get_clock_info(adev);
2227 if (r) {
2228 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
2229 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2230 goto failed;
2231 }
2232 } else {
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002233 /* Initialize clocks */
2234 r = amdgpu_atombios_get_clock_info(adev);
2235 if (r) {
2236 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002237 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
2238 goto failed;
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002239 }
2240 /* init i2c buses */
2241 amdgpu_atombios_i2c_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002242 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002243
2244 /* Fence driver */
2245 r = amdgpu_fence_driver_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002246 if (r) {
2247 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002248 amdgpu_vf_error_put(AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
Alex Deucher83ba1262016-06-03 18:21:41 -04002249 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002250 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002251
2252 /* init the mode config */
2253 drm_mode_config_init(adev->ddev);
2254
2255 r = amdgpu_init(adev);
2256 if (r) {
Alex Deucher2c1a2782015-12-07 17:02:53 -05002257 dev_err(adev->dev, "amdgpu_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002258 amdgpu_vf_error_put(AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002259 amdgpu_fini(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002260 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002261 }
2262
2263 adev->accel_working = true;
2264
Alex Xiee59c0202017-06-01 09:42:59 -04002265 amdgpu_vm_check_compute_bug(adev);
2266
Marek Olšák95844d22016-08-17 23:49:27 +02002267 /* Initialize the buffer migration limit. */
2268 if (amdgpu_moverate >= 0)
2269 max_MBps = amdgpu_moverate;
2270 else
2271 max_MBps = 8; /* Allow 8 MB/s. */
2272 /* Get a log2 for easy divisions. */
2273 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
2274
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002275 r = amdgpu_ib_pool_init(adev);
2276 if (r) {
2277 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
Gavin Wan89041942017-06-23 13:55:15 -04002278 amdgpu_vf_error_put(AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
Alex Deucher83ba1262016-06-03 18:21:41 -04002279 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002280 }
2281
2282 r = amdgpu_ib_ring_tests(adev);
2283 if (r)
2284 DRM_ERROR("ib ring test failed (%d).\n", r);
2285
Monk Liu9bc92b92017-02-08 17:38:13 +08002286 amdgpu_fbdev_init(adev);
2287
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002288 r = amdgpu_gem_debugfs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002289 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002290 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002291
2292 r = amdgpu_debugfs_regs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002293 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002294 DRM_ERROR("registering register debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002295
Huang Rui4f0955f2017-05-10 23:04:06 +08002296 r = amdgpu_debugfs_test_ib_ring_init(adev);
2297 if (r)
2298 DRM_ERROR("registering register test ib ring debugfs failed (%d).\n", r);
2299
Huang Rui50ab2532016-06-12 15:51:09 +08002300 r = amdgpu_debugfs_firmware_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002301 if (r)
Huang Rui50ab2532016-06-12 15:51:09 +08002302 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
Huang Rui50ab2532016-06-12 15:51:09 +08002303
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002304 if ((amdgpu_testing & 1)) {
2305 if (adev->accel_working)
2306 amdgpu_test_moves(adev);
2307 else
2308 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
2309 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002310 if (amdgpu_benchmarking) {
2311 if (adev->accel_working)
2312 amdgpu_benchmark(adev, amdgpu_benchmarking);
2313 else
2314 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
2315 }
2316
2317 /* enable clockgating, etc. after ib tests, etc. since some blocks require
2318 * explicit gating rather than handling it automatically.
2319 */
2320 r = amdgpu_late_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002321 if (r) {
2322 dev_err(adev->dev, "amdgpu_late_init failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04002323 amdgpu_vf_error_put(AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
Alex Deucher83ba1262016-06-03 18:21:41 -04002324 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002325 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002326
2327 return 0;
Alex Deucher83ba1262016-06-03 18:21:41 -04002328
2329failed:
Gavin Wan89041942017-06-23 13:55:15 -04002330 amdgpu_vf_error_trans_all(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002331 if (runtime)
2332 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2333 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002334}
2335
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002336/**
2337 * amdgpu_device_fini - tear down the driver
2338 *
2339 * @adev: amdgpu_device pointer
2340 *
2341 * Tear down the driver info (all asics).
2342 * Called at driver shutdown.
2343 */
2344void amdgpu_device_fini(struct amdgpu_device *adev)
2345{
2346 int r;
2347
2348 DRM_INFO("amdgpu: finishing device.\n");
2349 adev->shutdown = true;
Pixel Dingdb2c2a92017-04-25 16:47:42 +08002350 if (adev->mode_info.mode_config_initialized)
2351 drm_crtc_force_disable_all(adev->ddev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002352 /* evict vram memory */
2353 amdgpu_bo_evict_vram(adev);
2354 amdgpu_ib_pool_fini(adev);
2355 amdgpu_fence_driver_fini(adev);
2356 amdgpu_fbdev_fini(adev);
2357 r = amdgpu_fini(adev);
Huang Ruiab4fe3e2017-06-05 22:11:59 +08002358 if (adev->firmware.gpu_info_fw) {
2359 release_firmware(adev->firmware.gpu_info_fw);
2360 adev->firmware.gpu_info_fw = NULL;
2361 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002362 adev->accel_working = false;
Shirish S2dc80b02017-05-25 10:05:25 +05302363 cancel_delayed_work_sync(&adev->late_init_work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002364 /* free i2c buses */
2365 amdgpu_i2c_fini(adev);
2366 amdgpu_atombios_fini(adev);
2367 kfree(adev->bios);
2368 adev->bios = NULL;
Lukas Wunner84c8b222017-03-10 21:23:45 +01002369 if (!pci_is_thunderbolt_attached(adev->pdev))
2370 vga_switcheroo_unregister_client(adev->pdev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002371 if (adev->flags & AMD_IS_PX)
2372 vga_switcheroo_fini_domain_pm_ops(adev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002373 vga_client_register(adev->pdev, NULL, NULL, NULL);
2374 if (adev->rio_mem)
2375 pci_iounmap(adev->pdev, adev->rio_mem);
2376 adev->rio_mem = NULL;
2377 iounmap(adev->rmmio);
2378 adev->rmmio = NULL;
Ken Wangda69c1612016-01-21 19:08:55 +08002379 if (adev->asic_type >= CHIP_BONAIRE)
2380 amdgpu_doorbell_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002381 amdgpu_debugfs_regs_cleanup(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002382}
2383
2384
2385/*
2386 * Suspend & resume.
2387 */
2388/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002389 * amdgpu_device_suspend - initiate device suspend
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002390 *
2391 * @pdev: drm dev pointer
2392 * @state: suspend state
2393 *
2394 * Puts the hw in the suspend state (all asics).
2395 * Returns 0 for success or an error on failure.
2396 * Called at driver suspend.
2397 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002398int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002399{
2400 struct amdgpu_device *adev;
2401 struct drm_crtc *crtc;
2402 struct drm_connector *connector;
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002403 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002404
2405 if (dev == NULL || dev->dev_private == NULL) {
2406 return -ENODEV;
2407 }
2408
2409 adev = dev->dev_private;
2410
2411 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2412 return 0;
2413
2414 drm_kms_helper_poll_disable(dev);
2415
2416 /* turn off display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002417 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002418 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2419 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
2420 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002421 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002422
Yong Zhaoba997702015-11-09 17:21:45 -05002423 amdgpu_amdkfd_suspend(adev);
2424
Alex Deucher756e6882015-10-08 00:03:36 -04002425 /* unpin the front buffers and cursors */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002426 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Alex Deucher756e6882015-10-08 00:03:36 -04002427 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002428 struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
2429 struct amdgpu_bo *robj;
2430
Alex Deucher756e6882015-10-08 00:03:36 -04002431 if (amdgpu_crtc->cursor_bo) {
2432 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
Alex Xie7a6901d2017-04-24 13:52:41 -04002433 r = amdgpu_bo_reserve(aobj, true);
Alex Deucher756e6882015-10-08 00:03:36 -04002434 if (r == 0) {
2435 amdgpu_bo_unpin(aobj);
2436 amdgpu_bo_unreserve(aobj);
2437 }
2438 }
2439
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002440 if (rfb == NULL || rfb->obj == NULL) {
2441 continue;
2442 }
2443 robj = gem_to_amdgpu_bo(rfb->obj);
2444 /* don't unpin kernel fb objects */
2445 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
Alex Xie7a6901d2017-04-24 13:52:41 -04002446 r = amdgpu_bo_reserve(robj, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002447 if (r == 0) {
2448 amdgpu_bo_unpin(robj);
2449 amdgpu_bo_unreserve(robj);
2450 }
2451 }
2452 }
2453 /* evict vram memory */
2454 amdgpu_bo_evict_vram(adev);
2455
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002456 amdgpu_fence_driver_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002457
2458 r = amdgpu_suspend(adev);
2459
Alex Deuchera0a71e42016-10-10 12:41:36 -04002460 /* evict remaining vram memory
2461 * This second call to evict vram is to evict the gart page table
2462 * using the CPU.
2463 */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002464 amdgpu_bo_evict_vram(adev);
2465
Alex Deucherd05da0e2017-06-30 17:08:45 -04002466 amdgpu_atombios_scratch_regs_save(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002467 pci_save_state(dev->pdev);
2468 if (suspend) {
2469 /* Shut down the device */
2470 pci_disable_device(dev->pdev);
2471 pci_set_power_state(dev->pdev, PCI_D3hot);
jimqu74b0b152016-09-07 17:09:12 +08002472 } else {
2473 r = amdgpu_asic_reset(adev);
2474 if (r)
2475 DRM_ERROR("amdgpu asic reset failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002476 }
2477
2478 if (fbcon) {
2479 console_lock();
2480 amdgpu_fbdev_set_suspend(adev, 1);
2481 console_unlock();
2482 }
2483 return 0;
2484}
2485
2486/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002487 * amdgpu_device_resume - initiate device resume
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002488 *
2489 * @pdev: drm dev pointer
2490 *
2491 * Bring the hw back to operating state (all asics).
2492 * Returns 0 for success or an error on failure.
2493 * Called at driver resume.
2494 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002495int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002496{
2497 struct drm_connector *connector;
2498 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher756e6882015-10-08 00:03:36 -04002499 struct drm_crtc *crtc;
Huang Rui03161a62017-04-13 16:12:26 +08002500 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002501
2502 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2503 return 0;
2504
jimqu74b0b152016-09-07 17:09:12 +08002505 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002506 console_lock();
jimqu74b0b152016-09-07 17:09:12 +08002507
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002508 if (resume) {
2509 pci_set_power_state(dev->pdev, PCI_D0);
2510 pci_restore_state(dev->pdev);
jimqu74b0b152016-09-07 17:09:12 +08002511 r = pci_enable_device(dev->pdev);
Huang Rui03161a62017-04-13 16:12:26 +08002512 if (r)
2513 goto unlock;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002514 }
Alex Deucherd05da0e2017-06-30 17:08:45 -04002515 amdgpu_atombios_scratch_regs_restore(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002516
2517 /* post card */
Jim Quc836fec2017-02-10 15:59:59 +08002518 if (amdgpu_need_post(adev)) {
jimqu74b0b152016-09-07 17:09:12 +08002519 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2520 if (r)
2521 DRM_ERROR("amdgpu asic init failed\n");
2522 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002523
2524 r = amdgpu_resume(adev);
Rex Zhue6707212017-03-30 13:21:01 +08002525 if (r) {
Flora Cuica198522016-02-04 15:10:08 +08002526 DRM_ERROR("amdgpu_resume failed (%d).\n", r);
Huang Rui03161a62017-04-13 16:12:26 +08002527 goto unlock;
Rex Zhue6707212017-03-30 13:21:01 +08002528 }
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002529 amdgpu_fence_driver_resume(adev);
2530
Flora Cuica198522016-02-04 15:10:08 +08002531 if (resume) {
2532 r = amdgpu_ib_ring_tests(adev);
2533 if (r)
2534 DRM_ERROR("ib ring test failed (%d).\n", r);
2535 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002536
2537 r = amdgpu_late_init(adev);
Huang Rui03161a62017-04-13 16:12:26 +08002538 if (r)
2539 goto unlock;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002540
Alex Deucher756e6882015-10-08 00:03:36 -04002541 /* pin cursors */
2542 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2543 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2544
2545 if (amdgpu_crtc->cursor_bo) {
2546 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
Alex Xie7a6901d2017-04-24 13:52:41 -04002547 r = amdgpu_bo_reserve(aobj, true);
Alex Deucher756e6882015-10-08 00:03:36 -04002548 if (r == 0) {
2549 r = amdgpu_bo_pin(aobj,
2550 AMDGPU_GEM_DOMAIN_VRAM,
2551 &amdgpu_crtc->cursor_addr);
2552 if (r != 0)
2553 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
2554 amdgpu_bo_unreserve(aobj);
2555 }
2556 }
2557 }
Yong Zhaoba997702015-11-09 17:21:45 -05002558 r = amdgpu_amdkfd_resume(adev);
2559 if (r)
2560 return r;
Alex Deucher756e6882015-10-08 00:03:36 -04002561
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002562 /* blat the mode back in */
2563 if (fbcon) {
2564 drm_helper_resume_force_mode(dev);
2565 /* turn on display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002566 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002567 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2568 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
2569 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002570 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002571 }
2572
2573 drm_kms_helper_poll_enable(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002574
2575 /*
2576 * Most of the connector probing functions try to acquire runtime pm
2577 * refs to ensure that the GPU is powered on when connector polling is
2578 * performed. Since we're calling this from a runtime PM callback,
2579 * trying to acquire rpm refs will cause us to deadlock.
2580 *
2581 * Since we're guaranteed to be holding the rpm lock, it's safe to
2582 * temporarily disable the rpm helpers so this doesn't deadlock us.
2583 */
2584#ifdef CONFIG_PM
2585 dev->dev->power.disable_depth++;
2586#endif
Alex Deucher54fb2a52015-11-24 14:30:56 -05002587 drm_helper_hpd_irq_event(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002588#ifdef CONFIG_PM
2589 dev->dev->power.disable_depth--;
2590#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002591
Huang Rui03161a62017-04-13 16:12:26 +08002592 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002593 amdgpu_fbdev_set_suspend(adev, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002594
Huang Rui03161a62017-04-13 16:12:26 +08002595unlock:
2596 if (fbcon)
2597 console_unlock();
2598
2599 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002600}
2601
Chunming Zhou63fbf422016-07-15 11:19:20 +08002602static bool amdgpu_check_soft_reset(struct amdgpu_device *adev)
2603{
2604 int i;
2605 bool asic_hang = false;
2606
2607 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002608 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou63fbf422016-07-15 11:19:20 +08002609 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002610 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
2611 adev->ip_blocks[i].status.hang =
2612 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
2613 if (adev->ip_blocks[i].status.hang) {
2614 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
Chunming Zhou63fbf422016-07-15 11:19:20 +08002615 asic_hang = true;
2616 }
2617 }
2618 return asic_hang;
2619}
2620
Baoyou Xie4d446652016-09-18 22:09:35 +08002621static int amdgpu_pre_soft_reset(struct amdgpu_device *adev)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002622{
2623 int i, r = 0;
2624
2625 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002626 if (!adev->ip_blocks[i].status.valid)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002627 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002628 if (adev->ip_blocks[i].status.hang &&
2629 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
2630 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
Chunming Zhoud31a5012016-07-18 10:04:34 +08002631 if (r)
2632 return r;
2633 }
2634 }
2635
2636 return 0;
2637}
2638
Chunming Zhou35d782f2016-07-15 15:57:13 +08002639static bool amdgpu_need_full_reset(struct amdgpu_device *adev)
2640{
Alex Deucherda146d32016-10-13 16:07:03 -04002641 int i;
2642
2643 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002644 if (!adev->ip_blocks[i].status.valid)
Alex Deucherda146d32016-10-13 16:07:03 -04002645 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002646 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
2647 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
2648 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
2649 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)) {
2650 if (adev->ip_blocks[i].status.hang) {
Alex Deucherda146d32016-10-13 16:07:03 -04002651 DRM_INFO("Some block need full reset!\n");
2652 return true;
2653 }
2654 }
Chunming Zhou35d782f2016-07-15 15:57:13 +08002655 }
2656 return false;
2657}
2658
2659static int amdgpu_soft_reset(struct amdgpu_device *adev)
2660{
2661 int i, r = 0;
2662
2663 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002664 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002665 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002666 if (adev->ip_blocks[i].status.hang &&
2667 adev->ip_blocks[i].version->funcs->soft_reset) {
2668 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002669 if (r)
2670 return r;
2671 }
2672 }
2673
2674 return 0;
2675}
2676
2677static int amdgpu_post_soft_reset(struct amdgpu_device *adev)
2678{
2679 int i, r = 0;
2680
2681 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002682 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002683 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002684 if (adev->ip_blocks[i].status.hang &&
2685 adev->ip_blocks[i].version->funcs->post_soft_reset)
2686 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002687 if (r)
2688 return r;
2689 }
2690
2691 return 0;
2692}
2693
Chunming Zhou3ad81f12016-08-05 17:30:17 +08002694bool amdgpu_need_backup(struct amdgpu_device *adev)
2695{
2696 if (adev->flags & AMD_IS_APU)
2697 return false;
2698
2699 return amdgpu_lockup_timeout > 0 ? true : false;
2700}
2701
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002702static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
2703 struct amdgpu_ring *ring,
2704 struct amdgpu_bo *bo,
Chris Wilsonf54d1862016-10-25 13:00:45 +01002705 struct dma_fence **fence)
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002706{
2707 uint32_t domain;
2708 int r;
2709
Roger.He23d2e502017-04-21 14:24:26 +08002710 if (!bo->shadow)
2711 return 0;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002712
Alex Xie1d284792017-04-24 13:53:04 -04002713 r = amdgpu_bo_reserve(bo, true);
Roger.He23d2e502017-04-21 14:24:26 +08002714 if (r)
2715 return r;
2716 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
2717 /* if bo has been evicted, then no need to recover */
2718 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
Roger.He82521312017-04-21 13:08:43 +08002719 r = amdgpu_bo_validate(bo->shadow);
2720 if (r) {
2721 DRM_ERROR("bo validate failed!\n");
2722 goto err;
2723 }
2724
2725 r = amdgpu_ttm_bind(&bo->shadow->tbo, &bo->shadow->tbo.mem);
2726 if (r) {
2727 DRM_ERROR("%p bind failed\n", bo->shadow);
2728 goto err;
2729 }
2730
Roger.He23d2e502017-04-21 14:24:26 +08002731 r = amdgpu_bo_restore_from_shadow(adev, ring, bo,
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002732 NULL, fence, true);
Roger.He23d2e502017-04-21 14:24:26 +08002733 if (r) {
2734 DRM_ERROR("recover page table failed!\n");
2735 goto err;
2736 }
2737 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002738err:
Roger.He23d2e502017-04-21 14:24:26 +08002739 amdgpu_bo_unreserve(bo);
2740 return r;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002741}
2742
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002743/**
Monk Liua90ad3c2017-01-23 14:22:08 +08002744 * amdgpu_sriov_gpu_reset - reset the asic
2745 *
2746 * @adev: amdgpu device pointer
Monk Liu7225f872017-04-26 14:51:54 +08002747 * @job: which job trigger hang
Monk Liua90ad3c2017-01-23 14:22:08 +08002748 *
2749 * Attempt the reset the GPU if it has hung (all asics).
2750 * for SRIOV case.
2751 * Returns 0 for success or an error on failure.
2752 */
Monk Liu7225f872017-04-26 14:51:54 +08002753int amdgpu_sriov_gpu_reset(struct amdgpu_device *adev, struct amdgpu_job *job)
Monk Liua90ad3c2017-01-23 14:22:08 +08002754{
Monk Liu65781c72017-05-11 13:36:44 +08002755 int i, j, r = 0;
Monk Liua90ad3c2017-01-23 14:22:08 +08002756 int resched;
2757 struct amdgpu_bo *bo, *tmp;
2758 struct amdgpu_ring *ring;
2759 struct dma_fence *fence = NULL, *next = NULL;
2760
Monk Liu147b5982017-01-25 15:48:01 +08002761 mutex_lock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002762 atomic_inc(&adev->gpu_reset_counter);
Monk Liu1fb37a32017-01-26 15:36:37 +08002763 adev->gfx.in_reset = true;
Monk Liua90ad3c2017-01-23 14:22:08 +08002764
2765 /* block TTM */
2766 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2767
Monk Liu65781c72017-05-11 13:36:44 +08002768 /* we start from the ring trigger GPU hang */
2769 j = job ? job->ring->idx : 0;
Monk Liua90ad3c2017-01-23 14:22:08 +08002770
Monk Liu65781c72017-05-11 13:36:44 +08002771 /* block scheduler */
2772 for (i = j; i < j + AMDGPU_MAX_RINGS; ++i) {
2773 ring = adev->rings[i % AMDGPU_MAX_RINGS];
Monk Liua90ad3c2017-01-23 14:22:08 +08002774 if (!ring || !ring->sched.thread)
2775 continue;
2776
2777 kthread_park(ring->sched.thread);
Monk Liua90ad3c2017-01-23 14:22:08 +08002778
Monk Liu65781c72017-05-11 13:36:44 +08002779 if (job && j != i)
2780 continue;
2781
Monk Liu4f059ec2017-05-11 13:59:15 +08002782 /* here give the last chance to check if job removed from mirror-list
Monk Liu65781c72017-05-11 13:36:44 +08002783 * since we already pay some time on kthread_park */
Monk Liu4f059ec2017-05-11 13:59:15 +08002784 if (job && list_empty(&job->base.node)) {
Monk Liu65781c72017-05-11 13:36:44 +08002785 kthread_unpark(ring->sched.thread);
2786 goto give_up_reset;
2787 }
2788
2789 if (amd_sched_invalidate_job(&job->base, amdgpu_job_hang_limit))
2790 amd_sched_job_kickout(&job->base);
2791
2792 /* only do job_reset on the hang ring if @job not NULL */
2793 amd_sched_hw_job_reset(&ring->sched);
2794
2795 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2796 amdgpu_fence_driver_force_completion_ring(ring);
2797 }
Monk Liua90ad3c2017-01-23 14:22:08 +08002798
2799 /* request to take full control of GPU before re-initialization */
Monk Liu7225f872017-04-26 14:51:54 +08002800 if (job)
Monk Liua90ad3c2017-01-23 14:22:08 +08002801 amdgpu_virt_reset_gpu(adev);
2802 else
2803 amdgpu_virt_request_full_gpu(adev, true);
2804
2805
2806 /* Resume IP prior to SMC */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002807 amdgpu_sriov_reinit_early(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002808
2809 /* we need recover gart prior to run SMC/CP/SDMA resume */
2810 amdgpu_ttm_recover_gart(adev);
2811
2812 /* now we are okay to resume SMC/CP/SDMA */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002813 amdgpu_sriov_reinit_late(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002814
2815 amdgpu_irq_gpu_reset_resume_helper(adev);
2816
2817 if (amdgpu_ib_ring_tests(adev))
2818 dev_err(adev->dev, "[GPU_RESET] ib ring test failed (%d).\n", r);
2819
2820 /* release full control of GPU after ib test */
2821 amdgpu_virt_release_full_gpu(adev, true);
2822
2823 DRM_INFO("recover vram bo from shadow\n");
2824
2825 ring = adev->mman.buffer_funcs_ring;
2826 mutex_lock(&adev->shadow_list_lock);
2827 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
Monk Liu236763d2017-05-01 16:15:31 +08002828 next = NULL;
Monk Liua90ad3c2017-01-23 14:22:08 +08002829 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2830 if (fence) {
2831 r = dma_fence_wait(fence, false);
2832 if (r) {
2833 WARN(r, "recovery from shadow isn't completed\n");
2834 break;
2835 }
2836 }
2837
2838 dma_fence_put(fence);
2839 fence = next;
2840 }
2841 mutex_unlock(&adev->shadow_list_lock);
2842
2843 if (fence) {
2844 r = dma_fence_wait(fence, false);
2845 if (r)
2846 WARN(r, "recovery from shadow isn't completed\n");
2847 }
2848 dma_fence_put(fence);
2849
Monk Liu65781c72017-05-11 13:36:44 +08002850 for (i = j; i < j + AMDGPU_MAX_RINGS; ++i) {
2851 ring = adev->rings[i % AMDGPU_MAX_RINGS];
Monk Liua90ad3c2017-01-23 14:22:08 +08002852 if (!ring || !ring->sched.thread)
2853 continue;
2854
Monk Liu65781c72017-05-11 13:36:44 +08002855 if (job && j != i) {
2856 kthread_unpark(ring->sched.thread);
2857 continue;
2858 }
2859
Monk Liua90ad3c2017-01-23 14:22:08 +08002860 amd_sched_job_recovery(&ring->sched);
2861 kthread_unpark(ring->sched.thread);
2862 }
2863
2864 drm_helper_resume_force_mode(adev->ddev);
Monk Liu65781c72017-05-11 13:36:44 +08002865give_up_reset:
Monk Liua90ad3c2017-01-23 14:22:08 +08002866 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
2867 if (r) {
2868 /* bad news, how to tell it to userspace ? */
2869 dev_info(adev->dev, "GPU reset failed\n");
Monk Liu65781c72017-05-11 13:36:44 +08002870 } else {
2871 dev_info(adev->dev, "GPU reset successed!\n");
Monk Liua90ad3c2017-01-23 14:22:08 +08002872 }
2873
Monk Liu1fb37a32017-01-26 15:36:37 +08002874 adev->gfx.in_reset = false;
Monk Liu147b5982017-01-25 15:48:01 +08002875 mutex_unlock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002876 return r;
2877}
2878
2879/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002880 * amdgpu_gpu_reset - reset the asic
2881 *
2882 * @adev: amdgpu device pointer
2883 *
2884 * Attempt the reset the GPU if it has hung (all asics).
2885 * Returns 0 for success or an error on failure.
2886 */
2887int amdgpu_gpu_reset(struct amdgpu_device *adev)
2888{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002889 int i, r;
2890 int resched;
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002891 bool need_full_reset, vram_lost = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002892
Chunming Zhou63fbf422016-07-15 11:19:20 +08002893 if (!amdgpu_check_soft_reset(adev)) {
2894 DRM_INFO("No hardware hang detected. Did some blocks stall?\n");
2895 return 0;
2896 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002897
Marek Olšákd94aed52015-05-05 21:13:49 +02002898 atomic_inc(&adev->gpu_reset_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002899
Chunming Zhoua3c47d62016-06-30 16:44:41 +08002900 /* block TTM */
2901 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2902
Chunming Zhou0875dc92016-06-12 15:41:58 +08002903 /* block scheduler */
2904 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2905 struct amdgpu_ring *ring = adev->rings[i];
2906
Chunming Zhou51687752017-04-24 17:09:15 +08002907 if (!ring || !ring->sched.thread)
Chunming Zhou0875dc92016-06-12 15:41:58 +08002908 continue;
2909 kthread_park(ring->sched.thread);
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002910 amd_sched_hw_job_reset(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002911 }
Chunming Zhou2200eda2016-06-30 16:53:02 +08002912 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2913 amdgpu_fence_driver_force_completion(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002914
Chunming Zhou35d782f2016-07-15 15:57:13 +08002915 need_full_reset = amdgpu_need_full_reset(adev);
2916
2917 if (!need_full_reset) {
2918 amdgpu_pre_soft_reset(adev);
2919 r = amdgpu_soft_reset(adev);
2920 amdgpu_post_soft_reset(adev);
2921 if (r || amdgpu_check_soft_reset(adev)) {
2922 DRM_INFO("soft reset failed, will fallback to full reset!\n");
2923 need_full_reset = true;
2924 }
2925 }
2926
2927 if (need_full_reset) {
Chunming Zhou35d782f2016-07-15 15:57:13 +08002928 r = amdgpu_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002929
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002930retry:
Alex Deucherd05da0e2017-06-30 17:08:45 -04002931 amdgpu_atombios_scratch_regs_save(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002932 r = amdgpu_asic_reset(adev);
Alex Deucherd05da0e2017-06-30 17:08:45 -04002933 amdgpu_atombios_scratch_regs_restore(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002934 /* post card */
2935 amdgpu_atom_asic_init(adev->mode_info.atom_context);
Alex Deucherbfa99262016-01-15 11:59:48 -05002936
Chunming Zhou35d782f2016-07-15 15:57:13 +08002937 if (!r) {
2938 dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
Chunming Zhoufcf06492017-05-05 10:33:33 +08002939 r = amdgpu_resume_phase1(adev);
2940 if (r)
2941 goto out;
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002942 vram_lost = amdgpu_check_vram_lost(adev);
Chunming Zhouf1892132017-05-15 16:48:27 +08002943 if (vram_lost) {
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002944 DRM_ERROR("VRAM is lost!\n");
Chunming Zhouf1892132017-05-15 16:48:27 +08002945 atomic_inc(&adev->vram_lost_counter);
2946 }
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002947 r = amdgpu_ttm_recover_gart(adev);
2948 if (r)
Chunming Zhoufcf06492017-05-05 10:33:33 +08002949 goto out;
2950 r = amdgpu_resume_phase2(adev);
2951 if (r)
2952 goto out;
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002953 if (vram_lost)
2954 amdgpu_fill_reset_magic(adev);
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002955 }
Chunming Zhoufcf06492017-05-05 10:33:33 +08002956 }
2957out:
2958 if (!r) {
2959 amdgpu_irq_gpu_reset_resume_helper(adev);
Chunming Zhou1f465082016-06-30 15:02:26 +08002960 r = amdgpu_ib_ring_tests(adev);
2961 if (r) {
2962 dev_err(adev->dev, "ib ring test failed (%d).\n", r);
Chunming Zhou40019dc2016-06-29 16:01:49 +08002963 r = amdgpu_suspend(adev);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002964 need_full_reset = true;
Chunming Zhou40019dc2016-06-29 16:01:49 +08002965 goto retry;
Chunming Zhou1f465082016-06-30 15:02:26 +08002966 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002967 /**
2968 * recovery vm page tables, since we cannot depend on VRAM is
2969 * consistent after gpu full reset.
2970 */
2971 if (need_full_reset && amdgpu_need_backup(adev)) {
2972 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
2973 struct amdgpu_bo *bo, *tmp;
Chris Wilsonf54d1862016-10-25 13:00:45 +01002974 struct dma_fence *fence = NULL, *next = NULL;
Chunming Zhou1f465082016-06-30 15:02:26 +08002975
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002976 DRM_INFO("recover vram bo from shadow\n");
2977 mutex_lock(&adev->shadow_list_lock);
2978 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
Monk Liu236763d2017-05-01 16:15:31 +08002979 next = NULL;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002980 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2981 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002982 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002983 if (r) {
Monk Liu1d7b17b2017-01-22 18:52:56 +08002984 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002985 break;
2986 }
2987 }
2988
Chris Wilsonf54d1862016-10-25 13:00:45 +01002989 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002990 fence = next;
2991 }
2992 mutex_unlock(&adev->shadow_list_lock);
2993 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002994 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002995 if (r)
Monk Liu1d7b17b2017-01-22 18:52:56 +08002996 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002997 }
Chris Wilsonf54d1862016-10-25 13:00:45 +01002998 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002999 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003000 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3001 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhou51687752017-04-24 17:09:15 +08003002
3003 if (!ring || !ring->sched.thread)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003004 continue;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003005
Chunming Zhouaa1c8902016-06-30 13:56:02 +08003006 amd_sched_job_recovery(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08003007 kthread_unpark(ring->sched.thread);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003008 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003009 } else {
Chunming Zhou2200eda2016-06-30 16:53:02 +08003010 dev_err(adev->dev, "asic resume failed (%d).\n", r);
Gavin Wan89041942017-06-23 13:55:15 -04003011 amdgpu_vf_error_put(AMDGIM_ERROR_VF_ASIC_RESUME_FAIL, 0, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003012 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
Chunming Zhou51687752017-04-24 17:09:15 +08003013 if (adev->rings[i] && adev->rings[i]->sched.thread) {
Chunming Zhou0875dc92016-06-12 15:41:58 +08003014 kthread_unpark(adev->rings[i]->sched.thread);
Chunming Zhou0875dc92016-06-12 15:41:58 +08003015 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003016 }
3017 }
3018
3019 drm_helper_resume_force_mode(adev->ddev);
3020
3021 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
Gavin Wan89041942017-06-23 13:55:15 -04003022 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003023 /* bad news, how to tell it to userspace ? */
3024 dev_info(adev->dev, "GPU reset failed\n");
Gavin Wan89041942017-06-23 13:55:15 -04003025 amdgpu_vf_error_put(AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
3026 }
3027 else {
Chunming Zhou6643be62017-05-05 10:50:09 +08003028 dev_info(adev->dev, "GPU reset successed!\n");
Gavin Wan89041942017-06-23 13:55:15 -04003029 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003030
Gavin Wan89041942017-06-23 13:55:15 -04003031 amdgpu_vf_error_trans_all(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003032 return r;
3033}
3034
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003035void amdgpu_get_pcie_info(struct amdgpu_device *adev)
3036{
3037 u32 mask;
3038 int ret;
3039
Alex Deuchercd474ba2016-02-04 10:21:23 -05003040 if (amdgpu_pcie_gen_cap)
3041 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
3042
3043 if (amdgpu_pcie_lane_cap)
3044 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
3045
3046 /* covers APUs as well */
3047 if (pci_is_root_bus(adev->pdev->bus)) {
3048 if (adev->pm.pcie_gen_mask == 0)
3049 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
3050 if (adev->pm.pcie_mlw_mask == 0)
3051 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003052 return;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003053 }
Alex Deuchercd474ba2016-02-04 10:21:23 -05003054
3055 if (adev->pm.pcie_gen_mask == 0) {
3056 ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
3057 if (!ret) {
3058 adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3059 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3060 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
3061
3062 if (mask & DRM_PCIE_SPEED_25)
3063 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
3064 if (mask & DRM_PCIE_SPEED_50)
3065 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
3066 if (mask & DRM_PCIE_SPEED_80)
3067 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
3068 } else {
3069 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
3070 }
3071 }
3072 if (adev->pm.pcie_mlw_mask == 0) {
3073 ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
3074 if (!ret) {
3075 switch (mask) {
3076 case 32:
3077 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
3078 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3079 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3080 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3081 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3082 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3083 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3084 break;
3085 case 16:
3086 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3087 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3088 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3089 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3090 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3091 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3092 break;
3093 case 12:
3094 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3095 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3096 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3097 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3098 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3099 break;
3100 case 8:
3101 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3102 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3103 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3104 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3105 break;
3106 case 4:
3107 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3108 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3109 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3110 break;
3111 case 2:
3112 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3113 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3114 break;
3115 case 1:
3116 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
3117 break;
3118 default:
3119 break;
3120 }
3121 } else {
3122 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003123 }
3124 }
3125}
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003126
3127/*
3128 * Debugfs
3129 */
3130int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04003131 const struct drm_info_list *files,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003132 unsigned nfiles)
3133{
3134 unsigned i;
3135
3136 for (i = 0; i < adev->debugfs_count; i++) {
3137 if (adev->debugfs[i].files == files) {
3138 /* Already registered */
3139 return 0;
3140 }
3141 }
3142
3143 i = adev->debugfs_count + 1;
3144 if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
3145 DRM_ERROR("Reached maximum number of debugfs components.\n");
3146 DRM_ERROR("Report so we increase "
3147 "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
3148 return -EINVAL;
3149 }
3150 adev->debugfs[adev->debugfs_count].files = files;
3151 adev->debugfs[adev->debugfs_count].num_files = nfiles;
3152 adev->debugfs_count = i;
3153#if defined(CONFIG_DEBUG_FS)
3154 drm_debugfs_create_files(files, nfiles,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003155 adev->ddev->primary->debugfs_root,
3156 adev->ddev->primary);
3157#endif
3158 return 0;
3159}
3160
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003161#if defined(CONFIG_DEBUG_FS)
3162
3163static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
3164 size_t size, loff_t *pos)
3165{
Al Viro45063092016-12-04 18:24:56 -05003166 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003167 ssize_t result = 0;
3168 int r;
Tom St Denisbd122672016-07-28 09:39:22 -04003169 bool pm_pg_lock, use_bank;
Tom St Denis566281592016-06-27 11:55:07 -04003170 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003171
3172 if (size & 0x3 || *pos & 0x3)
3173 return -EINVAL;
3174
Tom St Denisbd122672016-07-28 09:39:22 -04003175 /* are we reading registers for which a PG lock is necessary? */
3176 pm_pg_lock = (*pos >> 23) & 1;
3177
Tom St Denis566281592016-06-27 11:55:07 -04003178 if (*pos & (1ULL << 62)) {
3179 se_bank = (*pos >> 24) & 0x3FF;
3180 sh_bank = (*pos >> 34) & 0x3FF;
3181 instance_bank = (*pos >> 44) & 0x3FF;
Tom St Denis32977f92016-10-09 07:41:26 -04003182
3183 if (se_bank == 0x3FF)
3184 se_bank = 0xFFFFFFFF;
3185 if (sh_bank == 0x3FF)
3186 sh_bank = 0xFFFFFFFF;
3187 if (instance_bank == 0x3FF)
3188 instance_bank = 0xFFFFFFFF;
Tom St Denis566281592016-06-27 11:55:07 -04003189 use_bank = 1;
Tom St Denis566281592016-06-27 11:55:07 -04003190 } else {
3191 use_bank = 0;
3192 }
3193
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04003194 *pos &= (1UL << 22) - 1;
Tom St Denisbd122672016-07-28 09:39:22 -04003195
Tom St Denis566281592016-06-27 11:55:07 -04003196 if (use_bank) {
Tom St Denis32977f92016-10-09 07:41:26 -04003197 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
3198 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
Tom St Denis566281592016-06-27 11:55:07 -04003199 return -EINVAL;
3200 mutex_lock(&adev->grbm_idx_mutex);
3201 amdgpu_gfx_select_se_sh(adev, se_bank,
3202 sh_bank, instance_bank);
3203 }
3204
Tom St Denisbd122672016-07-28 09:39:22 -04003205 if (pm_pg_lock)
3206 mutex_lock(&adev->pm.mutex);
3207
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003208 while (size) {
3209 uint32_t value;
3210
3211 if (*pos > adev->rmmio_size)
Tom St Denis566281592016-06-27 11:55:07 -04003212 goto end;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003213
3214 value = RREG32(*pos >> 2);
3215 r = put_user(value, (uint32_t *)buf);
Tom St Denis566281592016-06-27 11:55:07 -04003216 if (r) {
3217 result = r;
3218 goto end;
3219 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003220
3221 result += 4;
3222 buf += 4;
3223 *pos += 4;
3224 size -= 4;
3225 }
3226
Tom St Denis566281592016-06-27 11:55:07 -04003227end:
3228 if (use_bank) {
3229 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
3230 mutex_unlock(&adev->grbm_idx_mutex);
3231 }
3232
Tom St Denisbd122672016-07-28 09:39:22 -04003233 if (pm_pg_lock)
3234 mutex_unlock(&adev->pm.mutex);
3235
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003236 return result;
3237}
3238
3239static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
3240 size_t size, loff_t *pos)
3241{
Al Viro45063092016-12-04 18:24:56 -05003242 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003243 ssize_t result = 0;
3244 int r;
Tom St Denis394fdde2016-10-10 07:31:23 -04003245 bool pm_pg_lock, use_bank;
3246 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003247
3248 if (size & 0x3 || *pos & 0x3)
3249 return -EINVAL;
3250
Tom St Denis394fdde2016-10-10 07:31:23 -04003251 /* are we reading registers for which a PG lock is necessary? */
3252 pm_pg_lock = (*pos >> 23) & 1;
3253
3254 if (*pos & (1ULL << 62)) {
3255 se_bank = (*pos >> 24) & 0x3FF;
3256 sh_bank = (*pos >> 34) & 0x3FF;
3257 instance_bank = (*pos >> 44) & 0x3FF;
3258
3259 if (se_bank == 0x3FF)
3260 se_bank = 0xFFFFFFFF;
3261 if (sh_bank == 0x3FF)
3262 sh_bank = 0xFFFFFFFF;
3263 if (instance_bank == 0x3FF)
3264 instance_bank = 0xFFFFFFFF;
3265 use_bank = 1;
3266 } else {
3267 use_bank = 0;
3268 }
3269
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04003270 *pos &= (1UL << 22) - 1;
Tom St Denis394fdde2016-10-10 07:31:23 -04003271
3272 if (use_bank) {
3273 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
3274 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
3275 return -EINVAL;
3276 mutex_lock(&adev->grbm_idx_mutex);
3277 amdgpu_gfx_select_se_sh(adev, se_bank,
3278 sh_bank, instance_bank);
3279 }
3280
3281 if (pm_pg_lock)
3282 mutex_lock(&adev->pm.mutex);
3283
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003284 while (size) {
3285 uint32_t value;
3286
3287 if (*pos > adev->rmmio_size)
3288 return result;
3289
3290 r = get_user(value, (uint32_t *)buf);
3291 if (r)
3292 return r;
3293
3294 WREG32(*pos >> 2, value);
3295
3296 result += 4;
3297 buf += 4;
3298 *pos += 4;
3299 size -= 4;
3300 }
3301
Tom St Denis394fdde2016-10-10 07:31:23 -04003302 if (use_bank) {
3303 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
3304 mutex_unlock(&adev->grbm_idx_mutex);
3305 }
3306
3307 if (pm_pg_lock)
3308 mutex_unlock(&adev->pm.mutex);
3309
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003310 return result;
3311}
3312
Tom St Denisadcec282016-04-15 13:08:44 -04003313static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
3314 size_t size, loff_t *pos)
3315{
Al Viro45063092016-12-04 18:24:56 -05003316 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003317 ssize_t result = 0;
3318 int r;
3319
3320 if (size & 0x3 || *pos & 0x3)
3321 return -EINVAL;
3322
3323 while (size) {
3324 uint32_t value;
3325
3326 value = RREG32_PCIE(*pos >> 2);
3327 r = put_user(value, (uint32_t *)buf);
3328 if (r)
3329 return r;
3330
3331 result += 4;
3332 buf += 4;
3333 *pos += 4;
3334 size -= 4;
3335 }
3336
3337 return result;
3338}
3339
3340static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
3341 size_t size, loff_t *pos)
3342{
Al Viro45063092016-12-04 18:24:56 -05003343 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003344 ssize_t result = 0;
3345 int r;
3346
3347 if (size & 0x3 || *pos & 0x3)
3348 return -EINVAL;
3349
3350 while (size) {
3351 uint32_t value;
3352
3353 r = get_user(value, (uint32_t *)buf);
3354 if (r)
3355 return r;
3356
3357 WREG32_PCIE(*pos >> 2, value);
3358
3359 result += 4;
3360 buf += 4;
3361 *pos += 4;
3362 size -= 4;
3363 }
3364
3365 return result;
3366}
3367
3368static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
3369 size_t size, loff_t *pos)
3370{
Al Viro45063092016-12-04 18:24:56 -05003371 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003372 ssize_t result = 0;
3373 int r;
3374
3375 if (size & 0x3 || *pos & 0x3)
3376 return -EINVAL;
3377
3378 while (size) {
3379 uint32_t value;
3380
3381 value = RREG32_DIDT(*pos >> 2);
3382 r = put_user(value, (uint32_t *)buf);
3383 if (r)
3384 return r;
3385
3386 result += 4;
3387 buf += 4;
3388 *pos += 4;
3389 size -= 4;
3390 }
3391
3392 return result;
3393}
3394
3395static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
3396 size_t size, loff_t *pos)
3397{
Al Viro45063092016-12-04 18:24:56 -05003398 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003399 ssize_t result = 0;
3400 int r;
3401
3402 if (size & 0x3 || *pos & 0x3)
3403 return -EINVAL;
3404
3405 while (size) {
3406 uint32_t value;
3407
3408 r = get_user(value, (uint32_t *)buf);
3409 if (r)
3410 return r;
3411
3412 WREG32_DIDT(*pos >> 2, value);
3413
3414 result += 4;
3415 buf += 4;
3416 *pos += 4;
3417 size -= 4;
3418 }
3419
3420 return result;
3421}
3422
3423static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
3424 size_t size, loff_t *pos)
3425{
Al Viro45063092016-12-04 18:24:56 -05003426 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003427 ssize_t result = 0;
3428 int r;
3429
3430 if (size & 0x3 || *pos & 0x3)
3431 return -EINVAL;
3432
3433 while (size) {
3434 uint32_t value;
3435
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003436 value = RREG32_SMC(*pos);
Tom St Denisadcec282016-04-15 13:08:44 -04003437 r = put_user(value, (uint32_t *)buf);
3438 if (r)
3439 return r;
3440
3441 result += 4;
3442 buf += 4;
3443 *pos += 4;
3444 size -= 4;
3445 }
3446
3447 return result;
3448}
3449
3450static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
3451 size_t size, loff_t *pos)
3452{
Al Viro45063092016-12-04 18:24:56 -05003453 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003454 ssize_t result = 0;
3455 int r;
3456
3457 if (size & 0x3 || *pos & 0x3)
3458 return -EINVAL;
3459
3460 while (size) {
3461 uint32_t value;
3462
3463 r = get_user(value, (uint32_t *)buf);
3464 if (r)
3465 return r;
3466
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003467 WREG32_SMC(*pos, value);
Tom St Denisadcec282016-04-15 13:08:44 -04003468
3469 result += 4;
3470 buf += 4;
3471 *pos += 4;
3472 size -= 4;
3473 }
3474
3475 return result;
3476}
3477
Tom St Denis1e051412016-06-27 09:57:18 -04003478static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
3479 size_t size, loff_t *pos)
3480{
Al Viro45063092016-12-04 18:24:56 -05003481 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis1e051412016-06-27 09:57:18 -04003482 ssize_t result = 0;
3483 int r;
3484 uint32_t *config, no_regs = 0;
3485
3486 if (size & 0x3 || *pos & 0x3)
3487 return -EINVAL;
3488
Markus Elfringecab7662016-09-18 17:00:52 +02003489 config = kmalloc_array(256, sizeof(*config), GFP_KERNEL);
Tom St Denis1e051412016-06-27 09:57:18 -04003490 if (!config)
3491 return -ENOMEM;
3492
3493 /* version, increment each time something is added */
Tom St Denis9a999352017-01-18 13:01:25 -05003494 config[no_regs++] = 3;
Tom St Denis1e051412016-06-27 09:57:18 -04003495 config[no_regs++] = adev->gfx.config.max_shader_engines;
3496 config[no_regs++] = adev->gfx.config.max_tile_pipes;
3497 config[no_regs++] = adev->gfx.config.max_cu_per_sh;
3498 config[no_regs++] = adev->gfx.config.max_sh_per_se;
3499 config[no_regs++] = adev->gfx.config.max_backends_per_se;
3500 config[no_regs++] = adev->gfx.config.max_texture_channel_caches;
3501 config[no_regs++] = adev->gfx.config.max_gprs;
3502 config[no_regs++] = adev->gfx.config.max_gs_threads;
3503 config[no_regs++] = adev->gfx.config.max_hw_contexts;
3504 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend;
3505 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend;
3506 config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size;
3507 config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size;
3508 config[no_regs++] = adev->gfx.config.num_tile_pipes;
3509 config[no_regs++] = adev->gfx.config.backend_enable_mask;
3510 config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes;
3511 config[no_regs++] = adev->gfx.config.mem_row_size_in_kb;
3512 config[no_regs++] = adev->gfx.config.shader_engine_tile_size;
3513 config[no_regs++] = adev->gfx.config.num_gpus;
3514 config[no_regs++] = adev->gfx.config.multi_gpu_tile_size;
3515 config[no_regs++] = adev->gfx.config.mc_arb_ramcfg;
3516 config[no_regs++] = adev->gfx.config.gb_addr_config;
3517 config[no_regs++] = adev->gfx.config.num_rbs;
3518
Tom St Denis89a8f302016-08-12 15:14:31 -04003519 /* rev==1 */
3520 config[no_regs++] = adev->rev_id;
3521 config[no_regs++] = adev->pg_flags;
3522 config[no_regs++] = adev->cg_flags;
3523
Tom St Denise9f11dc2016-08-17 12:00:51 -04003524 /* rev==2 */
3525 config[no_regs++] = adev->family;
3526 config[no_regs++] = adev->external_rev_id;
3527
Tom St Denis9a999352017-01-18 13:01:25 -05003528 /* rev==3 */
3529 config[no_regs++] = adev->pdev->device;
3530 config[no_regs++] = adev->pdev->revision;
3531 config[no_regs++] = adev->pdev->subsystem_device;
3532 config[no_regs++] = adev->pdev->subsystem_vendor;
3533
Tom St Denis1e051412016-06-27 09:57:18 -04003534 while (size && (*pos < no_regs * 4)) {
3535 uint32_t value;
3536
3537 value = config[*pos >> 2];
3538 r = put_user(value, (uint32_t *)buf);
3539 if (r) {
3540 kfree(config);
3541 return r;
3542 }
3543
3544 result += 4;
3545 buf += 4;
3546 *pos += 4;
3547 size -= 4;
3548 }
3549
3550 kfree(config);
3551 return result;
3552}
3553
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003554static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf,
3555 size_t size, loff_t *pos)
3556{
Al Viro45063092016-12-04 18:24:56 -05003557 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003558 int idx, x, outsize, r, valuesize;
3559 uint32_t values[16];
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003560
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003561 if (size & 3 || *pos & 0x3)
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003562 return -EINVAL;
3563
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003564 if (amdgpu_dpm == 0)
3565 return -EINVAL;
3566
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003567 /* convert offset to sensor number */
3568 idx = *pos >> 2;
3569
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003570 valuesize = sizeof(values);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003571 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003572 r = adev->powerplay.pp_funcs->read_sensor(adev->powerplay.pp_handle, idx, &values[0], &valuesize);
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003573 else if (adev->pm.funcs && adev->pm.funcs->read_sensor)
3574 r = adev->pm.funcs->read_sensor(adev, idx, &values[0],
3575 &valuesize);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003576 else
3577 return -EINVAL;
3578
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003579 if (size > valuesize)
3580 return -EINVAL;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003581
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003582 outsize = 0;
3583 x = 0;
3584 if (!r) {
3585 while (size) {
3586 r = put_user(values[x++], (int32_t *)buf);
3587 buf += 4;
3588 size -= 4;
3589 outsize += 4;
3590 }
3591 }
3592
3593 return !r ? outsize : r;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003594}
Tom St Denis1e051412016-06-27 09:57:18 -04003595
Tom St Denis273d7aa2016-10-11 14:48:55 -04003596static ssize_t amdgpu_debugfs_wave_read(struct file *f, char __user *buf,
3597 size_t size, loff_t *pos)
3598{
3599 struct amdgpu_device *adev = f->f_inode->i_private;
3600 int r, x;
3601 ssize_t result=0;
Tom St Denis472259f2016-10-14 09:49:09 -04003602 uint32_t offset, se, sh, cu, wave, simd, data[32];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003603
3604 if (size & 3 || *pos & 3)
3605 return -EINVAL;
3606
3607 /* decode offset */
3608 offset = (*pos & 0x7F);
3609 se = ((*pos >> 7) & 0xFF);
3610 sh = ((*pos >> 15) & 0xFF);
3611 cu = ((*pos >> 23) & 0xFF);
3612 wave = ((*pos >> 31) & 0xFF);
3613 simd = ((*pos >> 37) & 0xFF);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003614
3615 /* switch to the specific se/sh/cu */
3616 mutex_lock(&adev->grbm_idx_mutex);
3617 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3618
3619 x = 0;
Tom St Denis472259f2016-10-14 09:49:09 -04003620 if (adev->gfx.funcs->read_wave_data)
3621 adev->gfx.funcs->read_wave_data(adev, simd, wave, data, &x);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003622
3623 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3624 mutex_unlock(&adev->grbm_idx_mutex);
3625
Tom St Denis5ecfb3b2016-10-13 12:15:03 -04003626 if (!x)
3627 return -EINVAL;
3628
Tom St Denis472259f2016-10-14 09:49:09 -04003629 while (size && (offset < x * 4)) {
Tom St Denis273d7aa2016-10-11 14:48:55 -04003630 uint32_t value;
3631
Tom St Denis472259f2016-10-14 09:49:09 -04003632 value = data[offset >> 2];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003633 r = put_user(value, (uint32_t *)buf);
3634 if (r)
3635 return r;
3636
3637 result += 4;
3638 buf += 4;
Tom St Denis472259f2016-10-14 09:49:09 -04003639 offset += 4;
Tom St Denis273d7aa2016-10-11 14:48:55 -04003640 size -= 4;
3641 }
3642
3643 return result;
3644}
3645
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003646static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
3647 size_t size, loff_t *pos)
3648{
3649 struct amdgpu_device *adev = f->f_inode->i_private;
3650 int r;
3651 ssize_t result = 0;
3652 uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data;
3653
3654 if (size & 3 || *pos & 3)
3655 return -EINVAL;
3656
3657 /* decode offset */
3658 offset = (*pos & 0xFFF); /* in dwords */
3659 se = ((*pos >> 12) & 0xFF);
3660 sh = ((*pos >> 20) & 0xFF);
3661 cu = ((*pos >> 28) & 0xFF);
3662 wave = ((*pos >> 36) & 0xFF);
3663 simd = ((*pos >> 44) & 0xFF);
3664 thread = ((*pos >> 52) & 0xFF);
3665 bank = ((*pos >> 60) & 1);
3666
3667 data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
3668 if (!data)
3669 return -ENOMEM;
3670
3671 /* switch to the specific se/sh/cu */
3672 mutex_lock(&adev->grbm_idx_mutex);
3673 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3674
3675 if (bank == 0) {
3676 if (adev->gfx.funcs->read_wave_vgprs)
3677 adev->gfx.funcs->read_wave_vgprs(adev, simd, wave, thread, offset, size>>2, data);
3678 } else {
3679 if (adev->gfx.funcs->read_wave_sgprs)
3680 adev->gfx.funcs->read_wave_sgprs(adev, simd, wave, offset, size>>2, data);
3681 }
3682
3683 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3684 mutex_unlock(&adev->grbm_idx_mutex);
3685
3686 while (size) {
3687 uint32_t value;
3688
3689 value = data[offset++];
3690 r = put_user(value, (uint32_t *)buf);
3691 if (r) {
3692 result = r;
3693 goto err;
3694 }
3695
3696 result += 4;
3697 buf += 4;
3698 size -= 4;
3699 }
3700
3701err:
3702 kfree(data);
3703 return result;
3704}
3705
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003706static const struct file_operations amdgpu_debugfs_regs_fops = {
3707 .owner = THIS_MODULE,
3708 .read = amdgpu_debugfs_regs_read,
3709 .write = amdgpu_debugfs_regs_write,
3710 .llseek = default_llseek
3711};
Tom St Denisadcec282016-04-15 13:08:44 -04003712static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
3713 .owner = THIS_MODULE,
3714 .read = amdgpu_debugfs_regs_didt_read,
3715 .write = amdgpu_debugfs_regs_didt_write,
3716 .llseek = default_llseek
3717};
3718static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
3719 .owner = THIS_MODULE,
3720 .read = amdgpu_debugfs_regs_pcie_read,
3721 .write = amdgpu_debugfs_regs_pcie_write,
3722 .llseek = default_llseek
3723};
3724static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
3725 .owner = THIS_MODULE,
3726 .read = amdgpu_debugfs_regs_smc_read,
3727 .write = amdgpu_debugfs_regs_smc_write,
3728 .llseek = default_llseek
3729};
3730
Tom St Denis1e051412016-06-27 09:57:18 -04003731static const struct file_operations amdgpu_debugfs_gca_config_fops = {
3732 .owner = THIS_MODULE,
3733 .read = amdgpu_debugfs_gca_config_read,
3734 .llseek = default_llseek
3735};
3736
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003737static const struct file_operations amdgpu_debugfs_sensors_fops = {
3738 .owner = THIS_MODULE,
3739 .read = amdgpu_debugfs_sensor_read,
3740 .llseek = default_llseek
3741};
3742
Tom St Denis273d7aa2016-10-11 14:48:55 -04003743static const struct file_operations amdgpu_debugfs_wave_fops = {
3744 .owner = THIS_MODULE,
3745 .read = amdgpu_debugfs_wave_read,
3746 .llseek = default_llseek
3747};
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003748static const struct file_operations amdgpu_debugfs_gpr_fops = {
3749 .owner = THIS_MODULE,
3750 .read = amdgpu_debugfs_gpr_read,
3751 .llseek = default_llseek
3752};
Tom St Denis273d7aa2016-10-11 14:48:55 -04003753
Tom St Denisadcec282016-04-15 13:08:44 -04003754static const struct file_operations *debugfs_regs[] = {
3755 &amdgpu_debugfs_regs_fops,
3756 &amdgpu_debugfs_regs_didt_fops,
3757 &amdgpu_debugfs_regs_pcie_fops,
3758 &amdgpu_debugfs_regs_smc_fops,
Tom St Denis1e051412016-06-27 09:57:18 -04003759 &amdgpu_debugfs_gca_config_fops,
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003760 &amdgpu_debugfs_sensors_fops,
Tom St Denis273d7aa2016-10-11 14:48:55 -04003761 &amdgpu_debugfs_wave_fops,
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003762 &amdgpu_debugfs_gpr_fops,
Tom St Denisadcec282016-04-15 13:08:44 -04003763};
3764
3765static const char *debugfs_regs_names[] = {
3766 "amdgpu_regs",
3767 "amdgpu_regs_didt",
3768 "amdgpu_regs_pcie",
3769 "amdgpu_regs_smc",
Tom St Denis1e051412016-06-27 09:57:18 -04003770 "amdgpu_gca_config",
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003771 "amdgpu_sensors",
Tom St Denis273d7aa2016-10-11 14:48:55 -04003772 "amdgpu_wave",
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003773 "amdgpu_gpr",
Tom St Denisadcec282016-04-15 13:08:44 -04003774};
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003775
3776static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3777{
3778 struct drm_minor *minor = adev->ddev->primary;
3779 struct dentry *ent, *root = minor->debugfs_root;
Tom St Denisadcec282016-04-15 13:08:44 -04003780 unsigned i, j;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003781
Tom St Denisadcec282016-04-15 13:08:44 -04003782 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3783 ent = debugfs_create_file(debugfs_regs_names[i],
3784 S_IFREG | S_IRUGO, root,
3785 adev, debugfs_regs[i]);
3786 if (IS_ERR(ent)) {
3787 for (j = 0; j < i; j++) {
3788 debugfs_remove(adev->debugfs_regs[i]);
3789 adev->debugfs_regs[i] = NULL;
3790 }
3791 return PTR_ERR(ent);
3792 }
3793
3794 if (!i)
3795 i_size_write(ent->d_inode, adev->rmmio_size);
3796 adev->debugfs_regs[i] = ent;
3797 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003798
3799 return 0;
3800}
3801
3802static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
3803{
Tom St Denisadcec282016-04-15 13:08:44 -04003804 unsigned i;
3805
3806 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3807 if (adev->debugfs_regs[i]) {
3808 debugfs_remove(adev->debugfs_regs[i]);
3809 adev->debugfs_regs[i] = NULL;
3810 }
3811 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003812}
3813
Huang Rui4f0955f2017-05-10 23:04:06 +08003814static int amdgpu_debugfs_test_ib(struct seq_file *m, void *data)
3815{
3816 struct drm_info_node *node = (struct drm_info_node *) m->private;
3817 struct drm_device *dev = node->minor->dev;
3818 struct amdgpu_device *adev = dev->dev_private;
3819 int r = 0, i;
3820
3821 /* hold on the scheduler */
3822 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3823 struct amdgpu_ring *ring = adev->rings[i];
3824
3825 if (!ring || !ring->sched.thread)
3826 continue;
3827 kthread_park(ring->sched.thread);
3828 }
3829
3830 seq_printf(m, "run ib test:\n");
3831 r = amdgpu_ib_ring_tests(adev);
3832 if (r)
3833 seq_printf(m, "ib ring tests failed (%d).\n", r);
3834 else
3835 seq_printf(m, "ib ring tests passed.\n");
3836
3837 /* go on the scheduler */
3838 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3839 struct amdgpu_ring *ring = adev->rings[i];
3840
3841 if (!ring || !ring->sched.thread)
3842 continue;
3843 kthread_unpark(ring->sched.thread);
3844 }
3845
3846 return 0;
3847}
3848
3849static const struct drm_info_list amdgpu_debugfs_test_ib_ring_list[] = {
3850 {"amdgpu_test_ib", &amdgpu_debugfs_test_ib}
3851};
3852
3853static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev)
3854{
3855 return amdgpu_debugfs_add_files(adev,
3856 amdgpu_debugfs_test_ib_ring_list, 1);
3857}
3858
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003859int amdgpu_debugfs_init(struct drm_minor *minor)
3860{
3861 return 0;
3862}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003863#else
Arnd Bergmann27bad5b2017-06-21 23:51:02 +02003864static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev)
Huang Rui4f0955f2017-05-10 23:04:06 +08003865{
3866 return 0;
3867}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003868static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3869{
3870 return 0;
3871}
3872static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003873#endif