blob: 69e724c96442b21f7d38b0b781d2253a899272cc [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>
Harry Wentland45622362017-09-12 15:58:20 -040034#include <drm/drm_atomic_helper.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040035#include <drm/amdgpu_drm.h>
36#include <linux/vgaarb.h>
37#include <linux/vga_switcheroo.h>
38#include <linux/efi.h>
39#include "amdgpu.h"
Tom St Denisf4b373f2016-05-31 08:02:27 -040040#include "amdgpu_trace.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040041#include "amdgpu_i2c.h"
42#include "atom.h"
43#include "amdgpu_atombios.h"
Alex Deuchera5bde2f2016-09-23 16:23:41 -040044#include "amdgpu_atomfirmware.h"
Alex Deucherd0dd7f02015-11-11 19:45:06 -050045#include "amd_pcie.h"
Ken Wang33f34802016-01-21 17:29:41 +080046#ifdef CONFIG_DRM_AMDGPU_SI
47#include "si.h"
48#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -040049#ifdef CONFIG_DRM_AMDGPU_CIK
50#include "cik.h"
51#endif
Alex Deucheraaa36a92015-04-20 17:31:14 -040052#include "vi.h"
Ken Wang460826e2017-03-06 14:53:16 -050053#include "soc15.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040054#include "bif/bif_4_1_d.h"
Emily Deng9accf2f2016-08-10 16:01:25 +080055#include <linux/pci.h>
Monk Liubec86372016-09-14 19:38:08 +080056#include <linux/firmware.h>
Gavin Wan89041942017-06-23 13:55:15 -040057#include "amdgpu_vf_error.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040058
Yong Zhaoba997702015-11-09 17:21:45 -050059#include "amdgpu_amdkfd.h"
Rex Zhud2f52ac2017-09-22 17:47:27 +080060#include "amdgpu_pm.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040061
Alex Deuchere2a75f82017-04-27 16:58:01 -040062MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
Alex Deucher2d2e5e72017-05-09 12:27:35 -040063MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
Alex Deuchere2a75f82017-04-27 16:58:01 -040064
Shirish S2dc80b02017-05-25 10:05:25 +053065#define AMDGPU_RESUME_MS 2000
66
Alex Deucherd38ceaf2015-04-20 16:55:21 -040067static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
68static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
Huang Rui4f0955f2017-05-10 23:04:06 +080069static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev);
Kent Russelldb95e212017-08-22 12:31:43 -040070static int amdgpu_debugfs_vbios_dump_init(struct amdgpu_device *adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040071
72static const char *amdgpu_asic_name[] = {
Ken Wangda69c1612016-01-21 19:08:55 +080073 "TAHITI",
74 "PITCAIRN",
75 "VERDE",
76 "OLAND",
77 "HAINAN",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040078 "BONAIRE",
79 "KAVERI",
80 "KABINI",
81 "HAWAII",
82 "MULLINS",
83 "TOPAZ",
84 "TONGA",
David Zhang48299f92015-07-08 01:05:16 +080085 "FIJI",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040086 "CARRIZO",
Samuel Li139f4912015-10-08 14:50:27 -040087 "STONEY",
Flora Cui2cc0c0b2016-03-14 18:33:29 -040088 "POLARIS10",
89 "POLARIS11",
Junwei Zhangc4642a42016-12-14 15:32:28 -050090 "POLARIS12",
Ken Wangd4196f02016-03-09 09:28:32 +080091 "VEGA10",
Chunming Zhou2ca8a5d2016-12-07 17:31:19 +080092 "RAVEN",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040093 "LAST",
94};
95
96bool amdgpu_device_is_px(struct drm_device *dev)
97{
98 struct amdgpu_device *adev = dev->dev_private;
99
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800100 if (adev->flags & AMD_IS_PX)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400101 return true;
102 return false;
103}
104
105/*
106 * MMIO register access helper functions.
107 */
108uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
Monk Liu15d72fd2017-01-25 15:07:40 +0800109 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400110{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400111 uint32_t ret;
112
pding43ca8ef2017-10-13 15:38:35 +0800113 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev))
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800114 return amdgpu_virt_kiq_rreg(adev, reg);
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800115
Monk Liu15d72fd2017-01-25 15:07:40 +0800116 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Tom St Denisf4b373f2016-05-31 08:02:27 -0400117 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400118 else {
119 unsigned long flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120
121 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
122 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
123 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
124 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400125 }
Tom St Denisf4b373f2016-05-31 08:02:27 -0400126 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
127 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400128}
129
130void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
Monk Liu15d72fd2017-01-25 15:07:40 +0800131 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400132{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400133 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
Monk Liu4e99a442016-03-31 13:26:59 +0800134
Ken Wang47ed4e12017-07-04 13:11:52 +0800135 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
136 adev->last_mm_index = v;
137 }
138
pding43ca8ef2017-10-13 15:38:35 +0800139 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev))
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800140 return amdgpu_virt_kiq_wreg(adev, reg, v);
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800141
Monk Liu15d72fd2017-01-25 15:07:40 +0800142 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
144 else {
145 unsigned long flags;
146
147 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
148 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
149 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
150 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
151 }
Ken Wang47ed4e12017-07-04 13:11:52 +0800152
153 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
154 udelay(500);
155 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400156}
157
158u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
159{
160 if ((reg * 4) < adev->rio_mem_size)
161 return ioread32(adev->rio_mem + (reg * 4));
162 else {
163 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
164 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
165 }
166}
167
168void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
169{
Ken Wang47ed4e12017-07-04 13:11:52 +0800170 if (adev->asic_type >= CHIP_VEGA10 && reg == 0) {
171 adev->last_mm_index = v;
172 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400173
174 if ((reg * 4) < adev->rio_mem_size)
175 iowrite32(v, adev->rio_mem + (reg * 4));
176 else {
177 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
178 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
179 }
Ken Wang47ed4e12017-07-04 13:11:52 +0800180
181 if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) {
182 udelay(500);
183 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400184}
185
186/**
187 * amdgpu_mm_rdoorbell - read a doorbell dword
188 *
189 * @adev: amdgpu_device pointer
190 * @index: doorbell index
191 *
192 * Returns the value in the doorbell aperture at the
193 * requested doorbell index (CIK).
194 */
195u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
196{
197 if (index < adev->doorbell.num_doorbells) {
198 return readl(adev->doorbell.ptr + index);
199 } else {
200 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
201 return 0;
202 }
203}
204
205/**
206 * amdgpu_mm_wdoorbell - write a doorbell dword
207 *
208 * @adev: amdgpu_device pointer
209 * @index: doorbell index
210 * @v: value to write
211 *
212 * Writes @v to the doorbell aperture at the
213 * requested doorbell index (CIK).
214 */
215void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
216{
217 if (index < adev->doorbell.num_doorbells) {
218 writel(v, adev->doorbell.ptr + index);
219 } else {
220 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
221 }
222}
223
224/**
Ken Wang832be402016-03-18 15:23:08 +0800225 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
226 *
227 * @adev: amdgpu_device pointer
228 * @index: doorbell index
229 *
230 * Returns the value in the doorbell aperture at the
231 * requested doorbell index (VEGA10+).
232 */
233u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
234{
235 if (index < adev->doorbell.num_doorbells) {
236 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
237 } else {
238 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
239 return 0;
240 }
241}
242
243/**
244 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
245 *
246 * @adev: amdgpu_device pointer
247 * @index: doorbell index
248 * @v: value to write
249 *
250 * Writes @v to the doorbell aperture at the
251 * requested doorbell index (VEGA10+).
252 */
253void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
254{
255 if (index < adev->doorbell.num_doorbells) {
256 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
257 } else {
258 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
259 }
260}
261
262/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400263 * amdgpu_invalid_rreg - dummy reg read function
264 *
265 * @adev: amdgpu device pointer
266 * @reg: offset of register
267 *
268 * Dummy register read function. Used for register blocks
269 * that certain asics don't have (all asics).
270 * Returns the value in the register.
271 */
272static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
273{
274 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
275 BUG();
276 return 0;
277}
278
279/**
280 * amdgpu_invalid_wreg - dummy reg write function
281 *
282 * @adev: amdgpu device pointer
283 * @reg: offset of register
284 * @v: value to write to the register
285 *
286 * Dummy register read function. Used for register blocks
287 * that certain asics don't have (all asics).
288 */
289static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
290{
291 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
292 reg, v);
293 BUG();
294}
295
296/**
297 * amdgpu_block_invalid_rreg - dummy reg read function
298 *
299 * @adev: amdgpu device pointer
300 * @block: offset of instance
301 * @reg: offset of register
302 *
303 * Dummy register read function. Used for register blocks
304 * that certain asics don't have (all asics).
305 * Returns the value in the register.
306 */
307static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
308 uint32_t block, uint32_t reg)
309{
310 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
311 reg, block);
312 BUG();
313 return 0;
314}
315
316/**
317 * amdgpu_block_invalid_wreg - dummy reg write function
318 *
319 * @adev: amdgpu device pointer
320 * @block: offset of instance
321 * @reg: offset of register
322 * @v: value to write to the register
323 *
324 * Dummy register read function. Used for register blocks
325 * that certain asics don't have (all asics).
326 */
327static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
328 uint32_t block,
329 uint32_t reg, uint32_t v)
330{
331 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
332 reg, block, v);
333 BUG();
334}
335
336static int amdgpu_vram_scratch_init(struct amdgpu_device *adev)
337{
Christian Königa4a02772017-07-27 17:24:36 +0200338 return amdgpu_bo_create_kernel(adev, AMDGPU_GPU_PAGE_SIZE,
339 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
340 &adev->vram_scratch.robj,
341 &adev->vram_scratch.gpu_addr,
342 (void **)&adev->vram_scratch.ptr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400343}
344
345static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev)
346{
Christian König078af1a2017-07-27 17:43:00 +0200347 amdgpu_bo_free_kernel(&adev->vram_scratch.robj, NULL, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400348}
349
350/**
351 * amdgpu_program_register_sequence - program an array of registers.
352 *
353 * @adev: amdgpu_device pointer
354 * @registers: pointer to the register array
355 * @array_size: size of the register array
356 *
357 * Programs an array or registers with and and or masks.
358 * This is a helper for setting golden registers.
359 */
360void amdgpu_program_register_sequence(struct amdgpu_device *adev,
361 const u32 *registers,
362 const u32 array_size)
363{
364 u32 tmp, reg, and_mask, or_mask;
365 int i;
366
367 if (array_size % 3)
368 return;
369
370 for (i = 0; i < array_size; i +=3) {
371 reg = registers[i + 0];
372 and_mask = registers[i + 1];
373 or_mask = registers[i + 2];
374
375 if (and_mask == 0xffffffff) {
376 tmp = or_mask;
377 } else {
378 tmp = RREG32(reg);
379 tmp &= ~and_mask;
380 tmp |= or_mask;
381 }
382 WREG32(reg, tmp);
383 }
384}
385
386void amdgpu_pci_config_reset(struct amdgpu_device *adev)
387{
388 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
389}
390
391/*
392 * GPU doorbell aperture helpers function.
393 */
394/**
395 * amdgpu_doorbell_init - Init doorbell driver information.
396 *
397 * @adev: amdgpu_device pointer
398 *
399 * Init doorbell driver information (CIK)
400 * Returns 0 on success, error on failure.
401 */
402static int amdgpu_doorbell_init(struct amdgpu_device *adev)
403{
Christian König705e5192017-06-08 11:15:16 +0200404 /* No doorbell on SI hardware generation */
405 if (adev->asic_type < CHIP_BONAIRE) {
406 adev->doorbell.base = 0;
407 adev->doorbell.size = 0;
408 adev->doorbell.num_doorbells = 0;
409 adev->doorbell.ptr = NULL;
410 return 0;
411 }
412
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400413 /* doorbell bar mapping */
414 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
415 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
416
Christian Königedf600d2016-05-03 15:54:54 +0200417 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400418 AMDGPU_DOORBELL_MAX_ASSIGNMENT+1);
419 if (adev->doorbell.num_doorbells == 0)
420 return -EINVAL;
421
Christian König8972e5d2017-03-06 13:34:57 +0100422 adev->doorbell.ptr = ioremap(adev->doorbell.base,
423 adev->doorbell.num_doorbells *
424 sizeof(u32));
425 if (adev->doorbell.ptr == NULL)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400426 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400427
428 return 0;
429}
430
431/**
432 * amdgpu_doorbell_fini - Tear down doorbell driver information.
433 *
434 * @adev: amdgpu_device pointer
435 *
436 * Tear down doorbell driver information (CIK)
437 */
438static void amdgpu_doorbell_fini(struct amdgpu_device *adev)
439{
440 iounmap(adev->doorbell.ptr);
441 adev->doorbell.ptr = NULL;
442}
443
444/**
445 * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
446 * setup amdkfd
447 *
448 * @adev: amdgpu_device pointer
449 * @aperture_base: output returning doorbell aperture base physical address
450 * @aperture_size: output returning doorbell aperture size in bytes
451 * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
452 *
453 * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
454 * takes doorbells required for its own rings and reports the setup to amdkfd.
455 * amdgpu reserved doorbells are at the start of the doorbell aperture.
456 */
457void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
458 phys_addr_t *aperture_base,
459 size_t *aperture_size,
460 size_t *start_offset)
461{
462 /*
463 * The first num_doorbells are used by amdgpu.
464 * amdkfd takes whatever's left in the aperture.
465 */
466 if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
467 *aperture_base = adev->doorbell.base;
468 *aperture_size = adev->doorbell.size;
469 *start_offset = adev->doorbell.num_doorbells * sizeof(u32);
470 } else {
471 *aperture_base = 0;
472 *aperture_size = 0;
473 *start_offset = 0;
474 }
475}
476
477/*
478 * amdgpu_wb_*()
Alex Xie455a7bc2017-05-08 21:36:03 -0400479 * Writeback is the method by which the GPU updates special pages in memory
Alex Xieea81a172017-05-08 13:41:11 -0400480 * with the status of certain GPU events (fences, ring pointers,etc.).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400481 */
482
483/**
484 * amdgpu_wb_fini - Disable Writeback and free memory
485 *
486 * @adev: amdgpu_device pointer
487 *
488 * Disables Writeback and frees the Writeback memory (all asics).
489 * Used at driver shutdown.
490 */
491static void amdgpu_wb_fini(struct amdgpu_device *adev)
492{
493 if (adev->wb.wb_obj) {
Alex Deuchera76ed482016-10-21 15:30:36 -0400494 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
495 &adev->wb.gpu_addr,
496 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400497 adev->wb.wb_obj = NULL;
498 }
499}
500
501/**
502 * amdgpu_wb_init- Init Writeback driver info and allocate memory
503 *
504 * @adev: amdgpu_device pointer
505 *
Alex Xie455a7bc2017-05-08 21:36:03 -0400506 * Initializes writeback and allocates writeback memory (all asics).
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400507 * Used at driver startup.
508 * Returns 0 on success or an -error on failure.
509 */
510static int amdgpu_wb_init(struct amdgpu_device *adev)
511{
512 int r;
513
514 if (adev->wb.wb_obj == NULL) {
Alex Deucher97407b62017-07-28 12:14:15 -0400515 /* AMDGPU_MAX_WB * sizeof(uint32_t) * 8 = AMDGPU_MAX_WB 256bit slots */
516 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t) * 8,
Alex Deuchera76ed482016-10-21 15:30:36 -0400517 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
518 &adev->wb.wb_obj, &adev->wb.gpu_addr,
519 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400520 if (r) {
521 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
522 return r;
523 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400524
525 adev->wb.num_wb = AMDGPU_MAX_WB;
526 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
527
528 /* clear wb memory */
Huang Rui60a970a62017-03-15 10:13:32 +0800529 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400530 }
531
532 return 0;
533}
534
535/**
536 * amdgpu_wb_get - Allocate a wb entry
537 *
538 * @adev: amdgpu_device pointer
539 * @wb: wb index
540 *
541 * Allocate a wb slot for use by the driver (all asics).
542 * Returns 0 on success or -EINVAL on failure.
543 */
544int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb)
545{
546 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
Alex Deucher97407b62017-07-28 12:14:15 -0400547
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400548 if (offset < adev->wb.num_wb) {
549 __set_bit(offset, adev->wb.used);
Monk Liu63ae07c2017-10-17 19:18:56 +0800550 *wb = offset << 3; /* convert to dw offset */
Monk Liu0915fdb2017-06-19 10:19:41 -0400551 return 0;
552 } else {
553 return -EINVAL;
554 }
555}
556
Ken Wang70142852016-03-18 15:08:49 +0800557/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400558 * amdgpu_wb_free - Free a wb entry
559 *
560 * @adev: amdgpu_device pointer
561 * @wb: wb index
562 *
563 * Free a wb slot allocated for use by the driver (all asics)
564 */
565void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb)
566{
567 if (wb < adev->wb.num_wb)
Monk Liu63ae07c2017-10-17 19:18:56 +0800568 __clear_bit(wb >> 3, adev->wb.used);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400569}
570
571/**
572 * amdgpu_vram_location - try to find VRAM location
573 * @adev: amdgpu device structure holding all necessary informations
574 * @mc: memory controller structure holding memory informations
575 * @base: base address at which to put VRAM
576 *
Alex Xie455a7bc2017-05-08 21:36:03 -0400577 * Function will try to place VRAM at base address provided
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400578 * as parameter (which is so far either PCI aperture address or
579 * for IGP TOM base address).
580 *
581 * If there is not enough space to fit the unvisible VRAM in the 32bits
582 * address space then we limit the VRAM size to the aperture.
583 *
584 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
585 * this shouldn't be a problem as we are using the PCI aperture as a reference.
586 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
587 * not IGP.
588 *
589 * Note: we use mc_vram_size as on some board we need to program the mc to
590 * cover the whole aperture even if VRAM size is inferior to aperture size
591 * Novell bug 204882 + along with lots of ubuntu ones
592 *
593 * Note: when limiting vram it's safe to overwritte real_vram_size because
594 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
595 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
596 * ones)
597 *
598 * Note: IGP TOM addr should be the same as the aperture addr, we don't
Alex Xie455a7bc2017-05-08 21:36:03 -0400599 * explicitly check for that though.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400600 *
601 * FIXME: when reducing VRAM size align new size on power of 2.
602 */
603void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base)
604{
605 uint64_t limit = (uint64_t)amdgpu_vram_limit << 20;
606
607 mc->vram_start = base;
608 if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) {
609 dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n");
610 mc->real_vram_size = mc->aper_size;
611 mc->mc_vram_size = mc->aper_size;
612 }
613 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
614 if (limit && limit < mc->real_vram_size)
615 mc->real_vram_size = limit;
616 dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
617 mc->mc_vram_size >> 20, mc->vram_start,
618 mc->vram_end, mc->real_vram_size >> 20);
619}
620
621/**
Christian König6f02a692017-07-07 11:56:59 +0200622 * amdgpu_gart_location - try to find GTT location
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400623 * @adev: amdgpu device structure holding all necessary informations
624 * @mc: memory controller structure holding memory informations
625 *
626 * Function will place try to place GTT before or after VRAM.
627 *
628 * If GTT size is bigger than space left then we ajust GTT size.
629 * Thus function will never fails.
630 *
631 * FIXME: when reducing GTT size align new size on power of 2.
632 */
Christian König6f02a692017-07-07 11:56:59 +0200633void amdgpu_gart_location(struct amdgpu_device *adev, struct amdgpu_mc *mc)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400634{
635 u64 size_af, size_bf;
636
Christian Königed21c042017-07-06 22:26:05 +0200637 size_af = adev->mc.mc_mask - mc->vram_end;
638 size_bf = mc->vram_start;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400639 if (size_bf > size_af) {
Christian König6f02a692017-07-07 11:56:59 +0200640 if (mc->gart_size > size_bf) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400641 dev_warn(adev->dev, "limiting GTT\n");
Christian König6f02a692017-07-07 11:56:59 +0200642 mc->gart_size = size_bf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400643 }
Christian König6f02a692017-07-07 11:56:59 +0200644 mc->gart_start = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400645 } else {
Christian König6f02a692017-07-07 11:56:59 +0200646 if (mc->gart_size > size_af) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400647 dev_warn(adev->dev, "limiting GTT\n");
Christian König6f02a692017-07-07 11:56:59 +0200648 mc->gart_size = size_af;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400649 }
Christian König6f02a692017-07-07 11:56:59 +0200650 mc->gart_start = mc->vram_end + 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400651 }
Christian König6f02a692017-07-07 11:56:59 +0200652 mc->gart_end = mc->gart_start + mc->gart_size - 1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400653 dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
Christian König6f02a692017-07-07 11:56:59 +0200654 mc->gart_size >> 20, mc->gart_start, mc->gart_end);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400655}
656
657/*
Horace Chena05502e2017-09-29 14:41:57 +0800658 * Firmware Reservation functions
659 */
660/**
661 * amdgpu_fw_reserve_vram_fini - free fw reserved vram
662 *
663 * @adev: amdgpu_device pointer
664 *
665 * free fw reserved vram if it has been reserved.
666 */
667void amdgpu_fw_reserve_vram_fini(struct amdgpu_device *adev)
668{
669 amdgpu_bo_free_kernel(&adev->fw_vram_usage.reserved_bo,
670 NULL, &adev->fw_vram_usage.va);
671}
672
673/**
674 * amdgpu_fw_reserve_vram_init - create bo vram reservation from fw
675 *
676 * @adev: amdgpu_device pointer
677 *
678 * create bo vram reservation from fw.
679 */
680int amdgpu_fw_reserve_vram_init(struct amdgpu_device *adev)
681{
682 int r = 0;
683 u64 gpu_addr;
684 u64 vram_size = adev->mc.visible_vram_size;
685
686 adev->fw_vram_usage.va = NULL;
687 adev->fw_vram_usage.reserved_bo = NULL;
688
689 if (adev->fw_vram_usage.size > 0 &&
690 adev->fw_vram_usage.size <= vram_size) {
691
692 r = amdgpu_bo_create(adev, adev->fw_vram_usage.size,
693 PAGE_SIZE, true, 0,
694 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
695 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS, NULL, NULL, 0,
696 &adev->fw_vram_usage.reserved_bo);
697 if (r)
698 goto error_create;
699
700 r = amdgpu_bo_reserve(adev->fw_vram_usage.reserved_bo, false);
701 if (r)
702 goto error_reserve;
703 r = amdgpu_bo_pin_restricted(adev->fw_vram_usage.reserved_bo,
704 AMDGPU_GEM_DOMAIN_VRAM,
705 adev->fw_vram_usage.start_offset,
706 (adev->fw_vram_usage.start_offset +
707 adev->fw_vram_usage.size), &gpu_addr);
708 if (r)
709 goto error_pin;
710 r = amdgpu_bo_kmap(adev->fw_vram_usage.reserved_bo,
711 &adev->fw_vram_usage.va);
712 if (r)
713 goto error_kmap;
714
715 amdgpu_bo_unreserve(adev->fw_vram_usage.reserved_bo);
716 }
717 return r;
718
719error_kmap:
720 amdgpu_bo_unpin(adev->fw_vram_usage.reserved_bo);
721error_pin:
722 amdgpu_bo_unreserve(adev->fw_vram_usage.reserved_bo);
723error_reserve:
724 amdgpu_bo_unref(&adev->fw_vram_usage.reserved_bo);
725error_create:
726 adev->fw_vram_usage.va = NULL;
727 adev->fw_vram_usage.reserved_bo = NULL;
728 return r;
729}
730
731
732/*
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400733 * GPU helpers function.
734 */
735/**
Jim Quc836fec2017-02-10 15:59:59 +0800736 * amdgpu_need_post - check if the hw need post or not
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400737 *
738 * @adev: amdgpu_device pointer
739 *
Jim Quc836fec2017-02-10 15:59:59 +0800740 * Check if the asic has been initialized (all asics) at driver startup
741 * or post is needed if hw reset is performed.
742 * Returns true if need or false if not.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400743 */
Jim Quc836fec2017-02-10 15:59:59 +0800744bool amdgpu_need_post(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400745{
746 uint32_t reg;
747
Monk Liubec86372016-09-14 19:38:08 +0800748 if (amdgpu_sriov_vf(adev))
749 return false;
750
751 if (amdgpu_passthrough(adev)) {
Monk Liu1da2c322016-11-11 11:24:29 +0800752 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
753 * some old smc fw still need driver do vPost otherwise gpu hang, while
754 * those smc fw version above 22.15 doesn't have this flaw, so we force
755 * vpost executed for smc version below 22.15
Monk Liubec86372016-09-14 19:38:08 +0800756 */
757 if (adev->asic_type == CHIP_FIJI) {
758 int err;
759 uint32_t fw_ver;
760 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
761 /* force vPost if error occured */
762 if (err)
763 return true;
764
765 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
Monk Liu1da2c322016-11-11 11:24:29 +0800766 if (fw_ver < 0x00160e00)
767 return true;
Monk Liubec86372016-09-14 19:38:08 +0800768 }
Monk Liubec86372016-09-14 19:38:08 +0800769 }
pding91fe77e2017-10-19 09:38:39 +0800770
771 if (adev->has_hw_reset) {
772 adev->has_hw_reset = false;
773 return true;
774 }
775
776 /* bios scratch used on CIK+ */
777 if (adev->asic_type >= CHIP_BONAIRE)
778 return amdgpu_atombios_scratch_need_asic_init(adev);
779
780 /* check MEM_SIZE for older asics */
781 reg = amdgpu_asic_get_config_memsize(adev);
782
783 if ((reg != 0) && (reg != 0xffffffff))
784 return false;
785
786 return true;
Monk Liubec86372016-09-14 19:38:08 +0800787}
788
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400789/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400790 * amdgpu_dummy_page_init - init dummy page used by the driver
791 *
792 * @adev: amdgpu_device pointer
793 *
794 * Allocate the dummy page used by the driver (all asics).
795 * This dummy page is used by the driver as a filler for gart entries
796 * when pages are taken out of the GART
797 * Returns 0 on sucess, -ENOMEM on failure.
798 */
799int amdgpu_dummy_page_init(struct amdgpu_device *adev)
800{
801 if (adev->dummy_page.page)
802 return 0;
803 adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
804 if (adev->dummy_page.page == NULL)
805 return -ENOMEM;
806 adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page,
807 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
808 if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) {
809 dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n");
810 __free_page(adev->dummy_page.page);
811 adev->dummy_page.page = NULL;
812 return -ENOMEM;
813 }
814 return 0;
815}
816
817/**
818 * amdgpu_dummy_page_fini - free dummy page used by the driver
819 *
820 * @adev: amdgpu_device pointer
821 *
822 * Frees the dummy page used by the driver (all asics).
823 */
824void amdgpu_dummy_page_fini(struct amdgpu_device *adev)
825{
826 if (adev->dummy_page.page == NULL)
827 return;
828 pci_unmap_page(adev->pdev, adev->dummy_page.addr,
829 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
830 __free_page(adev->dummy_page.page);
831 adev->dummy_page.page = NULL;
832}
833
834
835/* ATOM accessor methods */
836/*
837 * ATOM is an interpreted byte code stored in tables in the vbios. The
838 * driver registers callbacks to access registers and the interpreter
839 * in the driver parses the tables and executes then to program specific
840 * actions (set display modes, asic init, etc.). See amdgpu_atombios.c,
841 * atombios.h, and atom.c
842 */
843
844/**
845 * cail_pll_read - read PLL register
846 *
847 * @info: atom card_info pointer
848 * @reg: PLL register offset
849 *
850 * Provides a PLL register accessor for the atom interpreter (r4xx+).
851 * Returns the value of the PLL register.
852 */
853static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
854{
855 return 0;
856}
857
858/**
859 * cail_pll_write - write PLL register
860 *
861 * @info: atom card_info pointer
862 * @reg: PLL register offset
863 * @val: value to write to the pll register
864 *
865 * Provides a PLL register accessor for the atom interpreter (r4xx+).
866 */
867static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
868{
869
870}
871
872/**
873 * cail_mc_read - read MC (Memory Controller) register
874 *
875 * @info: atom card_info pointer
876 * @reg: MC register offset
877 *
878 * Provides an MC register accessor for the atom interpreter (r4xx+).
879 * Returns the value of the MC register.
880 */
881static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
882{
883 return 0;
884}
885
886/**
887 * cail_mc_write - write MC (Memory Controller) register
888 *
889 * @info: atom card_info pointer
890 * @reg: MC register offset
891 * @val: value to write to the pll register
892 *
893 * Provides a MC register accessor for the atom interpreter (r4xx+).
894 */
895static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
896{
897
898}
899
900/**
901 * cail_reg_write - write MMIO register
902 *
903 * @info: atom card_info pointer
904 * @reg: MMIO register offset
905 * @val: value to write to the pll register
906 *
907 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
908 */
909static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
910{
911 struct amdgpu_device *adev = info->dev->dev_private;
912
913 WREG32(reg, val);
914}
915
916/**
917 * cail_reg_read - read MMIO register
918 *
919 * @info: atom card_info pointer
920 * @reg: MMIO register offset
921 *
922 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
923 * Returns the value of the MMIO register.
924 */
925static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
926{
927 struct amdgpu_device *adev = info->dev->dev_private;
928 uint32_t r;
929
930 r = RREG32(reg);
931 return r;
932}
933
934/**
935 * cail_ioreg_write - write IO register
936 *
937 * @info: atom card_info pointer
938 * @reg: IO register offset
939 * @val: value to write to the pll register
940 *
941 * Provides a IO register accessor for the atom interpreter (r4xx+).
942 */
943static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
944{
945 struct amdgpu_device *adev = info->dev->dev_private;
946
947 WREG32_IO(reg, val);
948}
949
950/**
951 * cail_ioreg_read - read IO register
952 *
953 * @info: atom card_info pointer
954 * @reg: IO register offset
955 *
956 * Provides an IO register accessor for the atom interpreter (r4xx+).
957 * Returns the value of the IO register.
958 */
959static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
960{
961 struct amdgpu_device *adev = info->dev->dev_private;
962 uint32_t r;
963
964 r = RREG32_IO(reg);
965 return r;
966}
967
Kent Russell5b41d942017-08-22 12:31:43 -0400968static ssize_t amdgpu_atombios_get_vbios_version(struct device *dev,
969 struct device_attribute *attr,
970 char *buf)
971{
972 struct drm_device *ddev = dev_get_drvdata(dev);
973 struct amdgpu_device *adev = ddev->dev_private;
974 struct atom_context *ctx = adev->mode_info.atom_context;
975
976 return snprintf(buf, PAGE_SIZE, "%s\n", ctx->vbios_version);
977}
978
979static DEVICE_ATTR(vbios_version, 0444, amdgpu_atombios_get_vbios_version,
980 NULL);
981
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400982/**
983 * amdgpu_atombios_fini - free the driver info and callbacks for atombios
984 *
985 * @adev: amdgpu_device pointer
986 *
987 * Frees the driver info and register access callbacks for the ATOM
988 * interpreter (r4xx+).
989 * Called at driver shutdown.
990 */
991static void amdgpu_atombios_fini(struct amdgpu_device *adev)
992{
Monk Liu89e0ec92016-05-27 19:34:11 +0800993 if (adev->mode_info.atom_context) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400994 kfree(adev->mode_info.atom_context->scratch);
Monk Liu89e0ec92016-05-27 19:34:11 +0800995 kfree(adev->mode_info.atom_context->iio);
996 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400997 kfree(adev->mode_info.atom_context);
998 adev->mode_info.atom_context = NULL;
999 kfree(adev->mode_info.atom_card_info);
1000 adev->mode_info.atom_card_info = NULL;
Kent Russell5b41d942017-08-22 12:31:43 -04001001 device_remove_file(adev->dev, &dev_attr_vbios_version);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001002}
1003
1004/**
1005 * amdgpu_atombios_init - init the driver info and callbacks for atombios
1006 *
1007 * @adev: amdgpu_device pointer
1008 *
1009 * Initializes the driver info and register access callbacks for the
1010 * ATOM interpreter (r4xx+).
1011 * Returns 0 on sucess, -ENOMEM on failure.
1012 * Called at driver startup.
1013 */
1014static int amdgpu_atombios_init(struct amdgpu_device *adev)
1015{
1016 struct card_info *atom_card_info =
1017 kzalloc(sizeof(struct card_info), GFP_KERNEL);
Kent Russell5b41d942017-08-22 12:31:43 -04001018 int ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001019
1020 if (!atom_card_info)
1021 return -ENOMEM;
1022
1023 adev->mode_info.atom_card_info = atom_card_info;
1024 atom_card_info->dev = adev->ddev;
1025 atom_card_info->reg_read = cail_reg_read;
1026 atom_card_info->reg_write = cail_reg_write;
1027 /* needed for iio ops */
1028 if (adev->rio_mem) {
1029 atom_card_info->ioreg_read = cail_ioreg_read;
1030 atom_card_info->ioreg_write = cail_ioreg_write;
1031 } else {
pding9953b722017-10-26 09:30:38 +08001032 DRM_DEBUG("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001033 atom_card_info->ioreg_read = cail_reg_read;
1034 atom_card_info->ioreg_write = cail_reg_write;
1035 }
1036 atom_card_info->mc_read = cail_mc_read;
1037 atom_card_info->mc_write = cail_mc_write;
1038 atom_card_info->pll_read = cail_pll_read;
1039 atom_card_info->pll_write = cail_pll_write;
1040
1041 adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
1042 if (!adev->mode_info.atom_context) {
1043 amdgpu_atombios_fini(adev);
1044 return -ENOMEM;
1045 }
1046
1047 mutex_init(&adev->mode_info.atom_context->mutex);
Alex Deuchera5bde2f2016-09-23 16:23:41 -04001048 if (adev->is_atom_fw) {
1049 amdgpu_atomfirmware_scratch_regs_init(adev);
1050 amdgpu_atomfirmware_allocate_fb_scratch(adev);
1051 } else {
1052 amdgpu_atombios_scratch_regs_init(adev);
1053 amdgpu_atombios_allocate_fb_scratch(adev);
1054 }
Kent Russell5b41d942017-08-22 12:31:43 -04001055
1056 ret = device_create_file(adev->dev, &dev_attr_vbios_version);
1057 if (ret) {
1058 DRM_ERROR("Failed to create device file for VBIOS version\n");
1059 return ret;
1060 }
1061
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001062 return 0;
1063}
1064
1065/* if we get transitioned to only one device, take VGA back */
1066/**
1067 * amdgpu_vga_set_decode - enable/disable vga decode
1068 *
1069 * @cookie: amdgpu_device pointer
1070 * @state: enable/disable vga decode
1071 *
1072 * Enable/disable vga decode (all asics).
1073 * Returns VGA resource flags.
1074 */
1075static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
1076{
1077 struct amdgpu_device *adev = cookie;
1078 amdgpu_asic_set_vga_state(adev, state);
1079 if (state)
1080 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1081 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1082 else
1083 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1084}
1085
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001086static void amdgpu_check_block_size(struct amdgpu_device *adev)
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001087{
1088 /* defines number of bits in page table versus page directory,
1089 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1090 * page table and the remaining bits are in the page directory */
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001091 if (amdgpu_vm_block_size == -1)
1092 return;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001093
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001094 if (amdgpu_vm_block_size < 9) {
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001095 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1096 amdgpu_vm_block_size);
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001097 goto def_value;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001098 }
1099
1100 if (amdgpu_vm_block_size > 24 ||
1101 (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
1102 dev_warn(adev->dev, "VM page table size (%d) too large\n",
1103 amdgpu_vm_block_size);
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001104 goto def_value;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001105 }
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001106
1107 return;
1108
1109def_value:
1110 amdgpu_vm_block_size = -1;
Chunming Zhoua1adf8b2017-03-27 11:36:57 +08001111}
1112
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001113static void amdgpu_check_vm_size(struct amdgpu_device *adev)
1114{
Alex Deucher64dab072017-06-15 18:20:09 -04001115 /* no need to check the default value */
1116 if (amdgpu_vm_size == -1)
1117 return;
1118
Alex Deucher76117502017-06-21 12:31:41 -04001119 if (!is_power_of_2(amdgpu_vm_size)) {
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001120 dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
1121 amdgpu_vm_size);
1122 goto def_value;
1123 }
1124
1125 if (amdgpu_vm_size < 1) {
1126 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1127 amdgpu_vm_size);
1128 goto def_value;
1129 }
1130
1131 /*
1132 * Max GPUVM size for Cayman, SI, CI VI are 40 bits.
1133 */
1134 if (amdgpu_vm_size > 1024) {
1135 dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
1136 amdgpu_vm_size);
1137 goto def_value;
1138 }
1139
1140 return;
1141
1142def_value:
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001143 amdgpu_vm_size = -1;
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001144}
1145
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001146/**
1147 * amdgpu_check_arguments - validate module params
1148 *
1149 * @adev: amdgpu_device pointer
1150 *
1151 * Validates certain module parameters and updates
1152 * the associated values used by the driver (all asics).
1153 */
1154static void amdgpu_check_arguments(struct amdgpu_device *adev)
1155{
Chunming Zhou5b011232015-12-10 17:34:33 +08001156 if (amdgpu_sched_jobs < 4) {
1157 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1158 amdgpu_sched_jobs);
1159 amdgpu_sched_jobs = 4;
Alex Deucher76117502017-06-21 12:31:41 -04001160 } else if (!is_power_of_2(amdgpu_sched_jobs)){
Chunming Zhou5b011232015-12-10 17:34:33 +08001161 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1162 amdgpu_sched_jobs);
1163 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1164 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001165
Alex Deucher83e74db2017-08-21 11:58:25 -04001166 if (amdgpu_gart_size != -1 && amdgpu_gart_size < 32) {
Christian Königf9321cc2017-07-07 13:44:05 +02001167 /* gart size must be greater or equal to 32M */
1168 dev_warn(adev->dev, "gart size (%d) too small\n",
1169 amdgpu_gart_size);
Alex Deucher83e74db2017-08-21 11:58:25 -04001170 amdgpu_gart_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001171 }
1172
Christian König36d38372017-07-07 13:17:45 +02001173 if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001174 /* gtt size must be greater or equal to 32M */
Christian König36d38372017-07-07 13:17:45 +02001175 dev_warn(adev->dev, "gtt size (%d) too small\n",
1176 amdgpu_gtt_size);
1177 amdgpu_gtt_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001178 }
1179
Roger Hed07f14b2017-08-15 16:05:59 +08001180 /* valid range is between 4 and 9 inclusive */
1181 if (amdgpu_vm_fragment_size != -1 &&
1182 (amdgpu_vm_fragment_size > 9 || amdgpu_vm_fragment_size < 4)) {
1183 dev_warn(adev->dev, "valid range is between 4 and 9\n");
1184 amdgpu_vm_fragment_size = -1;
1185 }
1186
Zhang, Jerry83ca1452017-03-29 16:08:31 +08001187 amdgpu_check_vm_size(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001188
Junwei Zhangbab4fee2017-04-05 13:54:56 +08001189 amdgpu_check_block_size(adev);
Christian König6a7f76e2016-08-24 15:51:49 +02001190
jimqu526bae32016-11-07 09:53:10 +08001191 if (amdgpu_vram_page_split != -1 && (amdgpu_vram_page_split < 16 ||
Alex Deucher76117502017-06-21 12:31:41 -04001192 !is_power_of_2(amdgpu_vram_page_split))) {
Christian König6a7f76e2016-08-24 15:51:49 +02001193 dev_warn(adev->dev, "invalid VRAM page split (%d)\n",
1194 amdgpu_vram_page_split);
1195 amdgpu_vram_page_split = 1024;
1196 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001197}
1198
1199/**
1200 * amdgpu_switcheroo_set_state - set switcheroo state
1201 *
1202 * @pdev: pci dev pointer
Lukas Wunner16944672015-09-05 11:17:35 +02001203 * @state: vga_switcheroo state
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001204 *
1205 * Callback for the switcheroo driver. Suspends or resumes the
1206 * the asics before or after it is powered up using ACPI methods.
1207 */
1208static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1209{
1210 struct drm_device *dev = pci_get_drvdata(pdev);
1211
1212 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1213 return;
1214
1215 if (state == VGA_SWITCHEROO_ON) {
Joe Perches7ca85292017-02-28 04:55:52 -08001216 pr_info("amdgpu: switched on\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001217 /* don't suspend or resume card normally */
1218 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1219
Alex Deucher810ddc32016-08-23 13:25:49 -04001220 amdgpu_device_resume(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001221
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001222 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)
pding5ffa61c2017-10-30 14:07:24 +08001628 return -EAGAIN;
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001629 }
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
Monk Liu030308f2017-09-15 15:34:52 +08001861 if (amdgpu_sriov_vf(adev))
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001862 amdgpu_virt_release_full_gpu(adev, false);
Monk Liu24936642017-01-09 15:54:32 +08001863
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001864 return 0;
1865}
1866
Shirish S2dc80b02017-05-25 10:05:25 +05301867static void amdgpu_late_init_func_handler(struct work_struct *work)
1868{
1869 struct amdgpu_device *adev =
1870 container_of(work, struct amdgpu_device, late_init_work.work);
1871 amdgpu_late_set_cg_state(adev);
1872}
1873
Alex Deucherfaefba92016-12-06 10:38:29 -05001874int amdgpu_suspend(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001875{
1876 int i, r;
1877
Xiangliang Yue941ea92017-01-18 12:47:55 +08001878 if (amdgpu_sriov_vf(adev))
1879 amdgpu_virt_request_full_gpu(adev, false);
1880
Flora Cuic5a93a22016-02-26 10:45:25 +08001881 /* ungate SMC block first */
1882 r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC,
1883 AMD_CG_STATE_UNGATE);
1884 if (r) {
1885 DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r);
1886 }
1887
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001888 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001889 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001890 continue;
1891 /* ungate blocks so that suspend can properly shut them down */
Flora Cuic5a93a22016-02-26 10:45:25 +08001892 if (i != AMD_IP_BLOCK_TYPE_SMC) {
Alex Deuchera1255102016-10-13 17:41:13 -04001893 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1894 AMD_CG_STATE_UNGATE);
Flora Cuic5a93a22016-02-26 10:45:25 +08001895 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001896 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1897 adev->ip_blocks[i].version->funcs->name, r);
Flora Cuic5a93a22016-02-26 10:45:25 +08001898 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001899 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001900 /* XXX handle errors */
Alex Deuchera1255102016-10-13 17:41:13 -04001901 r = adev->ip_blocks[i].version->funcs->suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001902 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001903 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001904 DRM_ERROR("suspend of IP block <%s> failed %d\n",
1905 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001906 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001907 }
1908
Xiangliang Yue941ea92017-01-18 12:47:55 +08001909 if (amdgpu_sriov_vf(adev))
1910 amdgpu_virt_release_full_gpu(adev, false);
1911
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001912 return 0;
1913}
1914
Monk Liue4f0fdc2017-02-09 11:55:49 +08001915static int amdgpu_sriov_reinit_early(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001916{
1917 int i, r;
1918
Monk Liu2cb681b2017-04-26 12:00:49 +08001919 static enum amd_ip_block_type ip_order[] = {
1920 AMD_IP_BLOCK_TYPE_GMC,
1921 AMD_IP_BLOCK_TYPE_COMMON,
Monk Liu2cb681b2017-04-26 12:00:49 +08001922 AMD_IP_BLOCK_TYPE_IH,
1923 };
Monk Liua90ad3c2017-01-23 14:22:08 +08001924
Monk Liu2cb681b2017-04-26 12:00:49 +08001925 for (i = 0; i < ARRAY_SIZE(ip_order); i++) {
1926 int j;
1927 struct amdgpu_ip_block *block;
Monk Liua90ad3c2017-01-23 14:22:08 +08001928
Monk Liu2cb681b2017-04-26 12:00:49 +08001929 for (j = 0; j < adev->num_ip_blocks; j++) {
1930 block = &adev->ip_blocks[j];
1931
1932 if (block->version->type != ip_order[i] ||
1933 !block->status.valid)
1934 continue;
1935
1936 r = block->version->funcs->hw_init(adev);
1937 DRM_INFO("RE-INIT: %s %s\n", block->version->funcs->name, r?"failed":"successed");
Monk Liua90ad3c2017-01-23 14:22:08 +08001938 }
1939 }
1940
1941 return 0;
1942}
1943
Monk Liue4f0fdc2017-02-09 11:55:49 +08001944static int amdgpu_sriov_reinit_late(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001945{
1946 int i, r;
1947
Monk Liu2cb681b2017-04-26 12:00:49 +08001948 static enum amd_ip_block_type ip_order[] = {
1949 AMD_IP_BLOCK_TYPE_SMC,
Monk Liuef4c1662017-09-22 16:23:34 +08001950 AMD_IP_BLOCK_TYPE_PSP,
Monk Liu2cb681b2017-04-26 12:00:49 +08001951 AMD_IP_BLOCK_TYPE_DCE,
1952 AMD_IP_BLOCK_TYPE_GFX,
1953 AMD_IP_BLOCK_TYPE_SDMA,
Frank Min257deb82017-06-15 20:07:36 +08001954 AMD_IP_BLOCK_TYPE_UVD,
1955 AMD_IP_BLOCK_TYPE_VCE
Monk Liu2cb681b2017-04-26 12:00:49 +08001956 };
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
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001981 for (i = 0; i < adev->num_ip_blocks; i++) {
1982 if (!adev->ip_blocks[i].status.valid)
1983 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 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001996
Chunming Zhoufcf06492017-05-05 10:33:33 +08001997 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;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002007 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 Deucherd38ceaf2015-04-20 16:55:21 -04002012 if (r) {
2013 DRM_ERROR("resume of IP block <%s> failed %d\n",
2014 adev->ip_blocks[i].version->funcs->name, r);
2015 return r;
2016 }
2017 }
2018
2019 return 0;
2020}
2021
2022static int amdgpu_resume(struct amdgpu_device *adev)
2023{
Chunming Zhoufcf06492017-05-05 10:33:33 +08002024 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002025
Chunming Zhoufcf06492017-05-05 10:33:33 +08002026 r = amdgpu_resume_phase1(adev);
2027 if (r)
2028 return r;
2029 r = amdgpu_resume_phase2(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002030
Chunming Zhoufcf06492017-05-05 10:33:33 +08002031 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002032}
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{
Monk Liu6867e1b2017-10-16 19:50:44 +08002036 if (amdgpu_sriov_vf(adev)) {
2037 if (adev->is_atom_fw) {
2038 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
2039 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2040 } else {
2041 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
2042 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
2043 }
2044
2045 if (!(adev->virt.caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS))
2046 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_NO_VBIOS, 0, 0);
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002047 }
Andres Rodriguez048765a2016-06-11 02:51:32 -04002048}
2049
Harry Wentland45622362017-09-12 15:58:20 -04002050bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type)
2051{
2052 switch (asic_type) {
2053#if defined(CONFIG_DRM_AMD_DC)
2054 case CHIP_BONAIRE:
2055 case CHIP_HAWAII:
Alex Deucher0d6fbcc2017-08-10 14:39:48 -04002056 case CHIP_KAVERI:
Harry Wentland45622362017-09-12 15:58:20 -04002057 case CHIP_CARRIZO:
2058 case CHIP_STONEY:
2059 case CHIP_POLARIS11:
2060 case CHIP_POLARIS10:
Alex Deucher2c8ad2d2017-06-15 16:20:24 -04002061 case CHIP_POLARIS12:
Harry Wentland45622362017-09-12 15:58:20 -04002062 case CHIP_TONGA:
2063 case CHIP_FIJI:
2064#if defined(CONFIG_DRM_AMD_DC_PRE_VEGA)
2065 return amdgpu_dc != 0;
Harry Wentland45622362017-09-12 15:58:20 -04002066#endif
Alex Deucher17b7cf82017-08-23 09:42:22 -04002067 case CHIP_KABINI:
2068 case CHIP_MULLINS:
2069 return amdgpu_dc > 0;
Harry Wentland42f8ffa2017-09-15 14:07:30 -04002070 case CHIP_VEGA10:
2071#if defined(CONFIG_DRM_AMD_DC_DCN1_0)
Hawking Zhangfd187852017-03-06 14:01:11 +08002072 case CHIP_RAVEN:
Harry Wentland42f8ffa2017-09-15 14:07:30 -04002073#endif
Hawking Zhangfd187852017-03-06 14:01:11 +08002074 return amdgpu_dc != 0;
2075#endif
Harry Wentland45622362017-09-12 15:58:20 -04002076 default:
2077 return false;
2078 }
2079}
2080
2081/**
2082 * amdgpu_device_has_dc_support - check if dc is supported
2083 *
2084 * @adev: amdgpu_device_pointer
2085 *
2086 * Returns true for supported, false for not supported
2087 */
2088bool amdgpu_device_has_dc_support(struct amdgpu_device *adev)
2089{
Xiangliang Yu2555039d2017-01-10 17:34:52 +08002090 if (amdgpu_sriov_vf(adev))
2091 return false;
2092
Harry Wentland45622362017-09-12 15:58:20 -04002093 return amdgpu_device_asic_has_dc_support(adev->asic_type);
2094}
2095
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002096/**
2097 * amdgpu_device_init - initialize the driver
2098 *
2099 * @adev: amdgpu_device pointer
2100 * @pdev: drm dev pointer
2101 * @pdev: pci dev pointer
2102 * @flags: driver flags
2103 *
2104 * Initializes the driver info and hw (all asics).
2105 * Returns 0 for success or an error on failure.
2106 * Called at driver startup.
2107 */
2108int amdgpu_device_init(struct amdgpu_device *adev,
2109 struct drm_device *ddev,
2110 struct pci_dev *pdev,
2111 uint32_t flags)
2112{
2113 int r, i;
2114 bool runtime = false;
Marek Olšák95844d22016-08-17 23:49:27 +02002115 u32 max_MBps;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002116
2117 adev->shutdown = false;
2118 adev->dev = &pdev->dev;
2119 adev->ddev = ddev;
2120 adev->pdev = pdev;
2121 adev->flags = flags;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08002122 adev->asic_type = flags & AMD_ASIC_MASK;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002123 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
Christian König6f02a692017-07-07 11:56:59 +02002124 adev->mc.gart_size = 512 * 1024 * 1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002125 adev->accel_working = false;
2126 adev->num_rings = 0;
2127 adev->mman.buffer_funcs = NULL;
2128 adev->mman.buffer_funcs_ring = NULL;
2129 adev->vm_manager.vm_pte_funcs = NULL;
Christian König2d55e452016-02-08 17:37:38 +01002130 adev->vm_manager.vm_pte_num_rings = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002131 adev->gart.gart_funcs = NULL;
Chris Wilsonf54d1862016-10-25 13:00:45 +01002132 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Andres Rodriguezb8866c22017-04-28 20:05:51 -04002133 bitmap_zero(adev->gfx.pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002134
2135 adev->smc_rreg = &amdgpu_invalid_rreg;
2136 adev->smc_wreg = &amdgpu_invalid_wreg;
2137 adev->pcie_rreg = &amdgpu_invalid_rreg;
2138 adev->pcie_wreg = &amdgpu_invalid_wreg;
Huang Rui36b9a952016-08-31 13:23:25 +08002139 adev->pciep_rreg = &amdgpu_invalid_rreg;
2140 adev->pciep_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002141 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
2142 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
2143 adev->didt_rreg = &amdgpu_invalid_rreg;
2144 adev->didt_wreg = &amdgpu_invalid_wreg;
Rex Zhuccdbb202016-06-08 12:47:41 +08002145 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
2146 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002147 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
2148 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
2149
Alex Deucher3e39ab92015-06-05 15:04:33 -04002150 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
2151 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
2152 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002153
2154 /* mutex initialization are all done here so we
2155 * can recall function without having locking issues */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002156 atomic_set(&adev->irq.ih.lock, 0);
Huang Rui0e5ca0d2017-03-03 18:37:23 -05002157 mutex_init(&adev->firmware.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002158 mutex_init(&adev->pm.mutex);
2159 mutex_init(&adev->gfx.gpu_clock_mutex);
2160 mutex_init(&adev->srbm_mutex);
Andres Rodriguezb8866c22017-04-28 20:05:51 -04002161 mutex_init(&adev->gfx.pipe_reserve_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002162 mutex_init(&adev->grbm_idx_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002163 mutex_init(&adev->mn_lock);
Alex Deuchere23b74a2017-09-28 09:47:32 -04002164 mutex_init(&adev->virt.vf_errors.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002165 hash_init(adev->mn_hash);
Monk Liu13a752e2017-10-17 15:11:12 +08002166 mutex_init(&adev->lock_reset);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002167
2168 amdgpu_check_arguments(adev);
2169
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002170 spin_lock_init(&adev->mmio_idx_lock);
2171 spin_lock_init(&adev->smc_idx_lock);
2172 spin_lock_init(&adev->pcie_idx_lock);
2173 spin_lock_init(&adev->uvd_ctx_idx_lock);
2174 spin_lock_init(&adev->didt_idx_lock);
Rex Zhuccdbb202016-06-08 12:47:41 +08002175 spin_lock_init(&adev->gc_cac_idx_lock);
Evan Quan16abb5d2017-07-04 09:21:50 +08002176 spin_lock_init(&adev->se_cac_idx_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002177 spin_lock_init(&adev->audio_endpt_idx_lock);
Marek Olšák95844d22016-08-17 23:49:27 +02002178 spin_lock_init(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002179
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +08002180 INIT_LIST_HEAD(&adev->shadow_list);
2181 mutex_init(&adev->shadow_list_lock);
2182
Andres Rodriguez795f2812017-03-06 16:27:55 -05002183 INIT_LIST_HEAD(&adev->ring_lru_list);
2184 spin_lock_init(&adev->ring_lru_list_lock);
2185
Shirish S2dc80b02017-05-25 10:05:25 +05302186 INIT_DELAYED_WORK(&adev->late_init_work, amdgpu_late_init_func_handler);
2187
Alex Xie0fa49552017-06-08 14:58:05 -04002188 /* Registers mapping */
2189 /* TODO: block userspace mapping of io register */
Ken Wangda69c1612016-01-21 19:08:55 +08002190 if (adev->asic_type >= CHIP_BONAIRE) {
2191 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
2192 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
2193 } else {
2194 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
2195 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
2196 }
Chunming Zhou5c1354b2016-08-30 16:13:10 +08002197
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002198 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
2199 if (adev->rmmio == NULL) {
2200 return -ENOMEM;
2201 }
2202 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
2203 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
2204
Christian König705e5192017-06-08 11:15:16 +02002205 /* doorbell bar mapping */
2206 amdgpu_doorbell_init(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002207
2208 /* io port mapping */
2209 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
2210 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
2211 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
2212 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
2213 break;
2214 }
2215 }
2216 if (adev->rio_mem == NULL)
Amber Linb64a18c2017-01-04 08:06:58 -05002217 DRM_INFO("PCI I/O BAR is not found.\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002218
2219 /* early init functions */
2220 r = amdgpu_early_init(adev);
2221 if (r)
2222 return r;
2223
2224 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
2225 /* this will fail for cards that aren't VGA class devices, just
2226 * ignore it */
2227 vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
2228
2229 if (amdgpu_runtime_pm == 1)
2230 runtime = true;
Alex Deuchere9bef452016-04-25 13:12:18 -04002231 if (amdgpu_device_is_px(ddev))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002232 runtime = true;
Lukas Wunner84c8b222017-03-10 21:23:45 +01002233 if (!pci_is_thunderbolt_attached(adev->pdev))
2234 vga_switcheroo_register_client(adev->pdev,
2235 &amdgpu_switcheroo_ops, runtime);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002236 if (runtime)
2237 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
2238
2239 /* Read BIOS */
Alex Deucher83ba1262016-06-03 18:21:41 -04002240 if (!amdgpu_get_bios(adev)) {
2241 r = -EINVAL;
2242 goto failed;
2243 }
Nils Wallméniusf7e9e9f2016-12-14 21:52:45 +01002244
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002245 r = amdgpu_atombios_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002246 if (r) {
2247 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
Alex Deuchere23b74a2017-09-28 09:47:32 -04002248 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_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
Monk Liu4e99a442016-03-31 13:26:59 +08002252 /* detect if we are with an SRIOV vbios */
2253 amdgpu_device_detect_sriov_bios(adev);
Andres Rodriguez048765a2016-06-11 02:51:32 -04002254
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002255 /* Post card if necessary */
pding91fe77e2017-10-19 09:38:39 +08002256 if (amdgpu_need_post(adev)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002257 if (!adev->bios) {
Monk Liubec86372016-09-14 19:38:08 +08002258 dev_err(adev->dev, "no vBIOS found\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04002259 r = -EINVAL;
2260 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002261 }
Monk Liubec86372016-09-14 19:38:08 +08002262 DRM_INFO("GPU posting now...\n");
Monk Liu4e99a442016-03-31 13:26:59 +08002263 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2264 if (r) {
2265 dev_err(adev->dev, "gpu post error!\n");
2266 goto failed;
2267 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002268 }
2269
Alex Deucher88b64e92017-07-10 10:43:10 -04002270 if (adev->is_atom_fw) {
2271 /* Initialize clocks */
2272 r = amdgpu_atomfirmware_get_clock_info(adev);
2273 if (r) {
2274 dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n");
Alex Deuchere23b74a2017-09-28 09:47:32 -04002275 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
Alex Deucher88b64e92017-07-10 10:43:10 -04002276 goto failed;
2277 }
2278 } else {
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002279 /* Initialize clocks */
2280 r = amdgpu_atombios_get_clock_info(adev);
2281 if (r) {
2282 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
Alex Deuchere23b74a2017-09-28 09:47:32 -04002283 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0);
Gavin Wan89041942017-06-23 13:55:15 -04002284 goto failed;
Alex Deuchera5bde2f2016-09-23 16:23:41 -04002285 }
2286 /* init i2c buses */
Harry Wentland45622362017-09-12 15:58:20 -04002287 if (!amdgpu_device_has_dc_support(adev))
2288 amdgpu_atombios_i2c_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002289 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002290
2291 /* Fence driver */
2292 r = amdgpu_fence_driver_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002293 if (r) {
2294 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
Alex Deuchere23b74a2017-09-28 09:47:32 -04002295 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0);
Alex Deucher83ba1262016-06-03 18:21:41 -04002296 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002297 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002298
2299 /* init the mode config */
2300 drm_mode_config_init(adev->ddev);
2301
2302 r = amdgpu_init(adev);
2303 if (r) {
pding8840a382017-10-23 17:22:09 +08002304 /* failed in exclusive mode due to timeout */
2305 if (amdgpu_sriov_vf(adev) &&
2306 !amdgpu_sriov_runtime(adev) &&
2307 amdgpu_virt_mmio_blocked(adev) &&
2308 !amdgpu_virt_wait_reset(adev)) {
2309 dev_err(adev->dev, "VF exclusive mode timeout\n");
2310 r = -EAGAIN;
2311 goto failed;
2312 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05002313 dev_err(adev->dev, "amdgpu_init failed\n");
Alex Deuchere23b74a2017-09-28 09:47:32 -04002314 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002315 amdgpu_fini(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002316 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002317 }
2318
2319 adev->accel_working = true;
2320
Alex Xiee59c0202017-06-01 09:42:59 -04002321 amdgpu_vm_check_compute_bug(adev);
2322
Marek Olšák95844d22016-08-17 23:49:27 +02002323 /* Initialize the buffer migration limit. */
2324 if (amdgpu_moverate >= 0)
2325 max_MBps = amdgpu_moverate;
2326 else
2327 max_MBps = 8; /* Allow 8 MB/s. */
2328 /* Get a log2 for easy divisions. */
2329 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
2330
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002331 r = amdgpu_ib_pool_init(adev);
2332 if (r) {
2333 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
Alex Deuchere23b74a2017-09-28 09:47:32 -04002334 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r);
Alex Deucher83ba1262016-06-03 18:21:41 -04002335 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002336 }
2337
2338 r = amdgpu_ib_ring_tests(adev);
2339 if (r)
2340 DRM_ERROR("ib ring test failed (%d).\n", r);
2341
Horace Chen2dc8f812017-10-09 16:17:16 +08002342 if (amdgpu_sriov_vf(adev))
2343 amdgpu_virt_init_data_exchange(adev);
2344
Monk Liu9bc92b92017-02-08 17:38:13 +08002345 amdgpu_fbdev_init(adev);
2346
Rex Zhud2f52ac2017-09-22 17:47:27 +08002347 r = amdgpu_pm_sysfs_init(adev);
2348 if (r)
2349 DRM_ERROR("registering pm debugfs failed (%d).\n", r);
2350
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002351 r = amdgpu_gem_debugfs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002352 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002353 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002354
2355 r = amdgpu_debugfs_regs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002356 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002357 DRM_ERROR("registering register debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002358
Huang Rui4f0955f2017-05-10 23:04:06 +08002359 r = amdgpu_debugfs_test_ib_ring_init(adev);
2360 if (r)
2361 DRM_ERROR("registering register test ib ring debugfs failed (%d).\n", r);
2362
Huang Rui50ab2532016-06-12 15:51:09 +08002363 r = amdgpu_debugfs_firmware_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002364 if (r)
Huang Rui50ab2532016-06-12 15:51:09 +08002365 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
Huang Rui50ab2532016-06-12 15:51:09 +08002366
Kent Russelldb95e212017-08-22 12:31:43 -04002367 r = amdgpu_debugfs_vbios_dump_init(adev);
2368 if (r)
2369 DRM_ERROR("Creating vbios dump debugfs failed (%d).\n", r);
2370
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002371 if ((amdgpu_testing & 1)) {
2372 if (adev->accel_working)
2373 amdgpu_test_moves(adev);
2374 else
2375 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
2376 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002377 if (amdgpu_benchmarking) {
2378 if (adev->accel_working)
2379 amdgpu_benchmark(adev, amdgpu_benchmarking);
2380 else
2381 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
2382 }
2383
2384 /* enable clockgating, etc. after ib tests, etc. since some blocks require
2385 * explicit gating rather than handling it automatically.
2386 */
2387 r = amdgpu_late_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002388 if (r) {
2389 dev_err(adev->dev, "amdgpu_late_init failed\n");
Alex Deuchere23b74a2017-09-28 09:47:32 -04002390 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r);
Alex Deucher83ba1262016-06-03 18:21:41 -04002391 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002392 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002393
2394 return 0;
Alex Deucher83ba1262016-06-03 18:21:41 -04002395
2396failed:
Gavin Wan89041942017-06-23 13:55:15 -04002397 amdgpu_vf_error_trans_all(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002398 if (runtime)
2399 vga_switcheroo_fini_domain_pm_ops(adev->dev);
pding8840a382017-10-23 17:22:09 +08002400
Alex Deucher83ba1262016-06-03 18:21:41 -04002401 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002402}
2403
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002404/**
2405 * amdgpu_device_fini - tear down the driver
2406 *
2407 * @adev: amdgpu_device pointer
2408 *
2409 * Tear down the driver info (all asics).
2410 * Called at driver shutdown.
2411 */
2412void amdgpu_device_fini(struct amdgpu_device *adev)
2413{
2414 int r;
2415
2416 DRM_INFO("amdgpu: finishing device.\n");
2417 adev->shutdown = true;
Pixel Dingdb2c2a92017-04-25 16:47:42 +08002418 if (adev->mode_info.mode_config_initialized)
2419 drm_crtc_force_disable_all(adev->ddev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002420 /* evict vram memory */
2421 amdgpu_bo_evict_vram(adev);
2422 amdgpu_ib_pool_fini(adev);
Horace Chena05502e2017-09-29 14:41:57 +08002423 amdgpu_fw_reserve_vram_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002424 amdgpu_fence_driver_fini(adev);
2425 amdgpu_fbdev_fini(adev);
2426 r = amdgpu_fini(adev);
Huang Ruiab4fe3e2017-06-05 22:11:59 +08002427 if (adev->firmware.gpu_info_fw) {
2428 release_firmware(adev->firmware.gpu_info_fw);
2429 adev->firmware.gpu_info_fw = NULL;
2430 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002431 adev->accel_working = false;
Shirish S2dc80b02017-05-25 10:05:25 +05302432 cancel_delayed_work_sync(&adev->late_init_work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002433 /* free i2c buses */
Harry Wentland45622362017-09-12 15:58:20 -04002434 if (!amdgpu_device_has_dc_support(adev))
2435 amdgpu_i2c_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002436 amdgpu_atombios_fini(adev);
2437 kfree(adev->bios);
2438 adev->bios = NULL;
Lukas Wunner84c8b222017-03-10 21:23:45 +01002439 if (!pci_is_thunderbolt_attached(adev->pdev))
2440 vga_switcheroo_unregister_client(adev->pdev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002441 if (adev->flags & AMD_IS_PX)
2442 vga_switcheroo_fini_domain_pm_ops(adev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002443 vga_client_register(adev->pdev, NULL, NULL, NULL);
2444 if (adev->rio_mem)
2445 pci_iounmap(adev->pdev, adev->rio_mem);
2446 adev->rio_mem = NULL;
2447 iounmap(adev->rmmio);
2448 adev->rmmio = NULL;
Christian König705e5192017-06-08 11:15:16 +02002449 amdgpu_doorbell_fini(adev);
Rex Zhud2f52ac2017-09-22 17:47:27 +08002450 amdgpu_pm_sysfs_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002451 amdgpu_debugfs_regs_cleanup(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002452}
2453
2454
2455/*
2456 * Suspend & resume.
2457 */
2458/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002459 * amdgpu_device_suspend - initiate device suspend
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002460 *
2461 * @pdev: drm dev pointer
2462 * @state: suspend state
2463 *
2464 * Puts the hw in the suspend state (all asics).
2465 * Returns 0 for success or an error on failure.
2466 * Called at driver suspend.
2467 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002468int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002469{
2470 struct amdgpu_device *adev;
2471 struct drm_crtc *crtc;
2472 struct drm_connector *connector;
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002473 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002474
2475 if (dev == NULL || dev->dev_private == NULL) {
2476 return -ENODEV;
2477 }
2478
2479 adev = dev->dev_private;
2480
2481 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2482 return 0;
2483
2484 drm_kms_helper_poll_disable(dev);
2485
Harry Wentland45622362017-09-12 15:58:20 -04002486 if (!amdgpu_device_has_dc_support(adev)) {
2487 /* turn off display hw */
2488 drm_modeset_lock_all(dev);
2489 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2490 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
2491 }
2492 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002493 }
2494
Yong Zhaoba997702015-11-09 17:21:45 -05002495 amdgpu_amdkfd_suspend(adev);
2496
Alex Deucher756e6882015-10-08 00:03:36 -04002497 /* unpin the front buffers and cursors */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002498 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Alex Deucher756e6882015-10-08 00:03:36 -04002499 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002500 struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
2501 struct amdgpu_bo *robj;
2502
Alex Deucher756e6882015-10-08 00:03:36 -04002503 if (amdgpu_crtc->cursor_bo) {
2504 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
Alex Xie7a6901d2017-04-24 13:52:41 -04002505 r = amdgpu_bo_reserve(aobj, true);
Alex Deucher756e6882015-10-08 00:03:36 -04002506 if (r == 0) {
2507 amdgpu_bo_unpin(aobj);
2508 amdgpu_bo_unreserve(aobj);
2509 }
2510 }
2511
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002512 if (rfb == NULL || rfb->obj == NULL) {
2513 continue;
2514 }
2515 robj = gem_to_amdgpu_bo(rfb->obj);
2516 /* don't unpin kernel fb objects */
2517 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
Alex Xie7a6901d2017-04-24 13:52:41 -04002518 r = amdgpu_bo_reserve(robj, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002519 if (r == 0) {
2520 amdgpu_bo_unpin(robj);
2521 amdgpu_bo_unreserve(robj);
2522 }
2523 }
2524 }
2525 /* evict vram memory */
2526 amdgpu_bo_evict_vram(adev);
2527
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002528 amdgpu_fence_driver_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002529
2530 r = amdgpu_suspend(adev);
2531
Alex Deuchera0a71e42016-10-10 12:41:36 -04002532 /* evict remaining vram memory
2533 * This second call to evict vram is to evict the gart page table
2534 * using the CPU.
2535 */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002536 amdgpu_bo_evict_vram(adev);
2537
Alex Deucherd05da0e2017-06-30 17:08:45 -04002538 amdgpu_atombios_scratch_regs_save(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002539 pci_save_state(dev->pdev);
2540 if (suspend) {
2541 /* Shut down the device */
2542 pci_disable_device(dev->pdev);
2543 pci_set_power_state(dev->pdev, PCI_D3hot);
jimqu74b0b152016-09-07 17:09:12 +08002544 } else {
2545 r = amdgpu_asic_reset(adev);
2546 if (r)
2547 DRM_ERROR("amdgpu asic reset failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002548 }
2549
2550 if (fbcon) {
2551 console_lock();
2552 amdgpu_fbdev_set_suspend(adev, 1);
2553 console_unlock();
2554 }
2555 return 0;
2556}
2557
2558/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002559 * amdgpu_device_resume - initiate device resume
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002560 *
2561 * @pdev: drm dev pointer
2562 *
2563 * Bring the hw back to operating state (all asics).
2564 * Returns 0 for success or an error on failure.
2565 * Called at driver resume.
2566 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002567int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002568{
2569 struct drm_connector *connector;
2570 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher756e6882015-10-08 00:03:36 -04002571 struct drm_crtc *crtc;
Huang Rui03161a62017-04-13 16:12:26 +08002572 int r = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002573
2574 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2575 return 0;
2576
jimqu74b0b152016-09-07 17:09:12 +08002577 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002578 console_lock();
jimqu74b0b152016-09-07 17:09:12 +08002579
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002580 if (resume) {
2581 pci_set_power_state(dev->pdev, PCI_D0);
2582 pci_restore_state(dev->pdev);
jimqu74b0b152016-09-07 17:09:12 +08002583 r = pci_enable_device(dev->pdev);
Huang Rui03161a62017-04-13 16:12:26 +08002584 if (r)
2585 goto unlock;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002586 }
Alex Deucherd05da0e2017-06-30 17:08:45 -04002587 amdgpu_atombios_scratch_regs_restore(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002588
2589 /* post card */
Jim Quc836fec2017-02-10 15:59:59 +08002590 if (amdgpu_need_post(adev)) {
jimqu74b0b152016-09-07 17:09:12 +08002591 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2592 if (r)
2593 DRM_ERROR("amdgpu asic init failed\n");
2594 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002595
2596 r = amdgpu_resume(adev);
Rex Zhue6707212017-03-30 13:21:01 +08002597 if (r) {
Flora Cuica198522016-02-04 15:10:08 +08002598 DRM_ERROR("amdgpu_resume failed (%d).\n", r);
Huang Rui03161a62017-04-13 16:12:26 +08002599 goto unlock;
Rex Zhue6707212017-03-30 13:21:01 +08002600 }
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002601 amdgpu_fence_driver_resume(adev);
2602
Flora Cuica198522016-02-04 15:10:08 +08002603 if (resume) {
2604 r = amdgpu_ib_ring_tests(adev);
2605 if (r)
2606 DRM_ERROR("ib ring test failed (%d).\n", r);
2607 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002608
2609 r = amdgpu_late_init(adev);
Huang Rui03161a62017-04-13 16:12:26 +08002610 if (r)
2611 goto unlock;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002612
Alex Deucher756e6882015-10-08 00:03:36 -04002613 /* pin cursors */
2614 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2615 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2616
2617 if (amdgpu_crtc->cursor_bo) {
2618 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
Alex Xie7a6901d2017-04-24 13:52:41 -04002619 r = amdgpu_bo_reserve(aobj, true);
Alex Deucher756e6882015-10-08 00:03:36 -04002620 if (r == 0) {
2621 r = amdgpu_bo_pin(aobj,
2622 AMDGPU_GEM_DOMAIN_VRAM,
2623 &amdgpu_crtc->cursor_addr);
2624 if (r != 0)
2625 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
2626 amdgpu_bo_unreserve(aobj);
2627 }
2628 }
2629 }
Yong Zhaoba997702015-11-09 17:21:45 -05002630 r = amdgpu_amdkfd_resume(adev);
2631 if (r)
2632 return r;
Alex Deucher756e6882015-10-08 00:03:36 -04002633
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002634 /* blat the mode back in */
2635 if (fbcon) {
Harry Wentland45622362017-09-12 15:58:20 -04002636 if (!amdgpu_device_has_dc_support(adev)) {
2637 /* pre DCE11 */
2638 drm_helper_resume_force_mode(dev);
2639
2640 /* turn on display hw */
2641 drm_modeset_lock_all(dev);
2642 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2643 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
2644 }
2645 drm_modeset_unlock_all(dev);
2646 } else {
2647 /*
2648 * There is no equivalent atomic helper to turn on
2649 * display, so we defined our own function for this,
2650 * once suspend resume is supported by the atomic
2651 * framework this will be reworked
2652 */
2653 amdgpu_dm_display_resume(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002654 }
2655 }
2656
2657 drm_kms_helper_poll_enable(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002658
2659 /*
2660 * Most of the connector probing functions try to acquire runtime pm
2661 * refs to ensure that the GPU is powered on when connector polling is
2662 * performed. Since we're calling this from a runtime PM callback,
2663 * trying to acquire rpm refs will cause us to deadlock.
2664 *
2665 * Since we're guaranteed to be holding the rpm lock, it's safe to
2666 * temporarily disable the rpm helpers so this doesn't deadlock us.
2667 */
2668#ifdef CONFIG_PM
2669 dev->dev->power.disable_depth++;
2670#endif
Harry Wentland45622362017-09-12 15:58:20 -04002671 if (!amdgpu_device_has_dc_support(adev))
2672 drm_helper_hpd_irq_event(dev);
2673 else
2674 drm_kms_helper_hotplug_event(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002675#ifdef CONFIG_PM
2676 dev->dev->power.disable_depth--;
2677#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002678
Huang Rui03161a62017-04-13 16:12:26 +08002679 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002680 amdgpu_fbdev_set_suspend(adev, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002681
Huang Rui03161a62017-04-13 16:12:26 +08002682unlock:
2683 if (fbcon)
2684 console_unlock();
2685
2686 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002687}
2688
Chunming Zhou63fbf422016-07-15 11:19:20 +08002689static bool amdgpu_check_soft_reset(struct amdgpu_device *adev)
2690{
2691 int i;
2692 bool asic_hang = false;
2693
Monk Liuf993d622017-10-16 19:46:01 +08002694 if (amdgpu_sriov_vf(adev))
2695 return true;
2696
Chunming Zhou63fbf422016-07-15 11:19:20 +08002697 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002698 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou63fbf422016-07-15 11:19:20 +08002699 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002700 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
2701 adev->ip_blocks[i].status.hang =
2702 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
2703 if (adev->ip_blocks[i].status.hang) {
2704 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
Chunming Zhou63fbf422016-07-15 11:19:20 +08002705 asic_hang = true;
2706 }
2707 }
2708 return asic_hang;
2709}
2710
Baoyou Xie4d446652016-09-18 22:09:35 +08002711static int amdgpu_pre_soft_reset(struct amdgpu_device *adev)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002712{
2713 int i, r = 0;
2714
2715 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002716 if (!adev->ip_blocks[i].status.valid)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002717 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002718 if (adev->ip_blocks[i].status.hang &&
2719 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
2720 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
Chunming Zhoud31a5012016-07-18 10:04:34 +08002721 if (r)
2722 return r;
2723 }
2724 }
2725
2726 return 0;
2727}
2728
Chunming Zhou35d782f2016-07-15 15:57:13 +08002729static bool amdgpu_need_full_reset(struct amdgpu_device *adev)
2730{
Alex Deucherda146d32016-10-13 16:07:03 -04002731 int i;
2732
2733 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002734 if (!adev->ip_blocks[i].status.valid)
Alex Deucherda146d32016-10-13 16:07:03 -04002735 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002736 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
2737 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
2738 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
Ken Wang98512bb2017-09-14 16:25:19 +08002739 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE) ||
2740 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_PSP) {
Alex Deuchera1255102016-10-13 17:41:13 -04002741 if (adev->ip_blocks[i].status.hang) {
Alex Deucherda146d32016-10-13 16:07:03 -04002742 DRM_INFO("Some block need full reset!\n");
2743 return true;
2744 }
2745 }
Chunming Zhou35d782f2016-07-15 15:57:13 +08002746 }
2747 return false;
2748}
2749
2750static int amdgpu_soft_reset(struct amdgpu_device *adev)
2751{
2752 int i, r = 0;
2753
2754 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002755 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002756 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002757 if (adev->ip_blocks[i].status.hang &&
2758 adev->ip_blocks[i].version->funcs->soft_reset) {
2759 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002760 if (r)
2761 return r;
2762 }
2763 }
2764
2765 return 0;
2766}
2767
2768static int amdgpu_post_soft_reset(struct amdgpu_device *adev)
2769{
2770 int i, r = 0;
2771
2772 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002773 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002774 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002775 if (adev->ip_blocks[i].status.hang &&
2776 adev->ip_blocks[i].version->funcs->post_soft_reset)
2777 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002778 if (r)
2779 return r;
2780 }
2781
2782 return 0;
2783}
2784
Chunming Zhou3ad81f12016-08-05 17:30:17 +08002785bool amdgpu_need_backup(struct amdgpu_device *adev)
2786{
2787 if (adev->flags & AMD_IS_APU)
2788 return false;
2789
2790 return amdgpu_lockup_timeout > 0 ? true : false;
2791}
2792
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002793static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
2794 struct amdgpu_ring *ring,
2795 struct amdgpu_bo *bo,
Chris Wilsonf54d1862016-10-25 13:00:45 +01002796 struct dma_fence **fence)
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002797{
2798 uint32_t domain;
2799 int r;
2800
Roger.He23d2e502017-04-21 14:24:26 +08002801 if (!bo->shadow)
2802 return 0;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002803
Alex Xie1d284792017-04-24 13:53:04 -04002804 r = amdgpu_bo_reserve(bo, true);
Roger.He23d2e502017-04-21 14:24:26 +08002805 if (r)
2806 return r;
2807 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
2808 /* if bo has been evicted, then no need to recover */
2809 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
Roger.He82521312017-04-21 13:08:43 +08002810 r = amdgpu_bo_validate(bo->shadow);
2811 if (r) {
2812 DRM_ERROR("bo validate failed!\n");
2813 goto err;
2814 }
2815
Roger.He23d2e502017-04-21 14:24:26 +08002816 r = amdgpu_bo_restore_from_shadow(adev, ring, bo,
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002817 NULL, fence, true);
Roger.He23d2e502017-04-21 14:24:26 +08002818 if (r) {
2819 DRM_ERROR("recover page table failed!\n");
2820 goto err;
2821 }
2822 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002823err:
Roger.He23d2e502017-04-21 14:24:26 +08002824 amdgpu_bo_unreserve(bo);
2825 return r;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002826}
2827
Monk Liu57406822017-10-25 16:37:02 +08002828/*
2829 * amdgpu_reset - reset ASIC/GPU for bare-metal or passthrough
Monk Liua90ad3c2017-01-23 14:22:08 +08002830 *
2831 * @adev: amdgpu device pointer
Monk Liu57406822017-10-25 16:37:02 +08002832 * @reset_flags: output param tells caller the reset result
Monk Liua90ad3c2017-01-23 14:22:08 +08002833 *
Monk Liu57406822017-10-25 16:37:02 +08002834 * attempt to do soft-reset or full-reset and reinitialize Asic
2835 * return 0 means successed otherwise failed
2836*/
2837static int amdgpu_reset(struct amdgpu_device *adev, uint64_t* reset_flags)
Monk Liua90ad3c2017-01-23 14:22:08 +08002838{
Monk Liu57406822017-10-25 16:37:02 +08002839 bool need_full_reset, vram_lost = 0;
2840 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002841
Chunming Zhou35d782f2016-07-15 15:57:13 +08002842 need_full_reset = amdgpu_need_full_reset(adev);
2843
2844 if (!need_full_reset) {
2845 amdgpu_pre_soft_reset(adev);
2846 r = amdgpu_soft_reset(adev);
2847 amdgpu_post_soft_reset(adev);
2848 if (r || amdgpu_check_soft_reset(adev)) {
2849 DRM_INFO("soft reset failed, will fallback to full reset!\n");
2850 need_full_reset = true;
2851 }
Monk Liu57406822017-10-25 16:37:02 +08002852
Chunming Zhou35d782f2016-07-15 15:57:13 +08002853 }
2854
2855 if (need_full_reset) {
Chunming Zhou35d782f2016-07-15 15:57:13 +08002856 r = amdgpu_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002857
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002858retry:
Alex Deucherd05da0e2017-06-30 17:08:45 -04002859 amdgpu_atombios_scratch_regs_save(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002860 r = amdgpu_asic_reset(adev);
Alex Deucherd05da0e2017-06-30 17:08:45 -04002861 amdgpu_atombios_scratch_regs_restore(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002862 /* post card */
2863 amdgpu_atom_asic_init(adev->mode_info.atom_context);
Alex Deucherbfa99262016-01-15 11:59:48 -05002864
Chunming Zhou35d782f2016-07-15 15:57:13 +08002865 if (!r) {
2866 dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
Chunming Zhoufcf06492017-05-05 10:33:33 +08002867 r = amdgpu_resume_phase1(adev);
2868 if (r)
2869 goto out;
Monk Liu57406822017-10-25 16:37:02 +08002870
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002871 vram_lost = amdgpu_check_vram_lost(adev);
Chunming Zhouf1892132017-05-15 16:48:27 +08002872 if (vram_lost) {
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002873 DRM_ERROR("VRAM is lost!\n");
Chunming Zhouf1892132017-05-15 16:48:27 +08002874 atomic_inc(&adev->vram_lost_counter);
2875 }
Monk Liu57406822017-10-25 16:37:02 +08002876
Christian Königc1c7ce82017-10-16 16:50:32 +02002877 r = amdgpu_gtt_mgr_recover(
2878 &adev->mman.bdev.man[TTM_PL_TT]);
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002879 if (r)
Chunming Zhoufcf06492017-05-05 10:33:33 +08002880 goto out;
Monk Liu57406822017-10-25 16:37:02 +08002881
Chunming Zhoufcf06492017-05-05 10:33:33 +08002882 r = amdgpu_resume_phase2(adev);
2883 if (r)
2884 goto out;
Monk Liu57406822017-10-25 16:37:02 +08002885
Chunming Zhou0c49e0b2017-05-15 14:20:00 +08002886 if (vram_lost)
2887 amdgpu_fill_reset_magic(adev);
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002888 }
Chunming Zhoufcf06492017-05-05 10:33:33 +08002889 }
Monk Liu57406822017-10-25 16:37:02 +08002890
Chunming Zhoufcf06492017-05-05 10:33:33 +08002891out:
2892 if (!r) {
2893 amdgpu_irq_gpu_reset_resume_helper(adev);
Chunming Zhou1f465082016-06-30 15:02:26 +08002894 r = amdgpu_ib_ring_tests(adev);
2895 if (r) {
2896 dev_err(adev->dev, "ib ring test failed (%d).\n", r);
Chunming Zhou40019dc2016-06-29 16:01:49 +08002897 r = amdgpu_suspend(adev);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002898 need_full_reset = true;
Chunming Zhou40019dc2016-06-29 16:01:49 +08002899 goto retry;
Chunming Zhou1f465082016-06-30 15:02:26 +08002900 }
Monk Liu57406822017-10-25 16:37:02 +08002901 }
2902
2903 if (reset_flags) {
2904 if (vram_lost)
2905 (*reset_flags) |= AMDGPU_RESET_INFO_VRAM_LOST;
2906
2907 if (need_full_reset)
2908 (*reset_flags) |= AMDGPU_RESET_INFO_FULLRESET;
2909 }
2910
2911 return r;
2912}
2913
2914/*
2915 * amdgpu_reset_sriov - reset ASIC for SR-IOV vf
2916 *
2917 * @adev: amdgpu device pointer
2918 * @reset_flags: output param tells caller the reset result
2919 *
2920 * do VF FLR and reinitialize Asic
2921 * return 0 means successed otherwise failed
2922*/
2923static int amdgpu_reset_sriov(struct amdgpu_device *adev, uint64_t *reset_flags, bool from_hypervisor)
2924{
2925 int r;
2926
2927 if (from_hypervisor)
2928 r = amdgpu_virt_request_full_gpu(adev, true);
2929 else
2930 r = amdgpu_virt_reset_gpu(adev);
2931 if (r)
2932 return r;
2933
2934 /* Resume IP prior to SMC */
2935 r = amdgpu_sriov_reinit_early(adev);
2936 if (r)
2937 goto error;
2938
2939 /* we need recover gart prior to run SMC/CP/SDMA resume */
Christian Königc1c7ce82017-10-16 16:50:32 +02002940 amdgpu_gtt_mgr_recover(&adev->mman.bdev.man[TTM_PL_TT]);
Monk Liu57406822017-10-25 16:37:02 +08002941
2942 /* now we are okay to resume SMC/CP/SDMA */
2943 r = amdgpu_sriov_reinit_late(adev);
2944 if (r)
2945 goto error;
2946
2947 amdgpu_irq_gpu_reset_resume_helper(adev);
2948 r = amdgpu_ib_ring_tests(adev);
2949 if (r)
2950 dev_err(adev->dev, "[GPU_RESET] ib ring test failed (%d).\n", r);
2951
2952error:
2953 /* release full control of GPU after ib test */
2954 amdgpu_virt_release_full_gpu(adev, true);
2955
2956 if (reset_flags) {
2957 /* will get vram_lost from GIM in future, now all
2958 * reset request considered VRAM LOST
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002959 */
Monk Liu57406822017-10-25 16:37:02 +08002960 (*reset_flags) |= ~AMDGPU_RESET_INFO_VRAM_LOST;
2961 atomic_inc(&adev->vram_lost_counter);
2962
2963 /* VF FLR or hotlink reset is always full-reset */
2964 (*reset_flags) |= AMDGPU_RESET_INFO_FULLRESET;
2965 }
2966
2967 return r;
2968}
2969
2970/**
2971 * amdgpu_gpu_recover - reset the asic and recover scheduler
2972 *
2973 * @adev: amdgpu device pointer
2974 * @job: which job trigger hang
2975 *
2976 * Attempt to reset the GPU if it has hung (all asics).
2977 * Returns 0 for success or an error on failure.
2978 */
2979int amdgpu_gpu_recover(struct amdgpu_device *adev, struct amdgpu_job *job)
2980{
2981 struct drm_atomic_state *state = NULL;
2982 uint64_t reset_flags = 0;
2983 int i, r, resched;
2984
2985 if (!amdgpu_check_soft_reset(adev)) {
2986 DRM_INFO("No hardware hang detected. Did some blocks stall?\n");
2987 return 0;
2988 }
2989
2990 dev_info(adev->dev, "GPU reset begin!\n");
2991
Monk Liu13a752e2017-10-17 15:11:12 +08002992 mutex_lock(&adev->lock_reset);
Monk Liu57406822017-10-25 16:37:02 +08002993 atomic_inc(&adev->gpu_reset_counter);
Monk Liu13a752e2017-10-17 15:11:12 +08002994 adev->in_gpu_reset = 1;
Monk Liu57406822017-10-25 16:37:02 +08002995
2996 /* block TTM */
2997 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2998 /* store modesetting */
2999 if (amdgpu_device_has_dc_support(adev))
3000 state = drm_atomic_helper_suspend(adev->ddev);
3001
3002 /* block scheduler */
3003 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3004 struct amdgpu_ring *ring = adev->rings[i];
3005
3006 if (!ring || !ring->sched.thread)
3007 continue;
3008
3009 /* only focus on the ring hit timeout if &job not NULL */
3010 if (job && job->ring->idx != i)
3011 continue;
3012
3013 kthread_park(ring->sched.thread);
3014 amd_sched_hw_job_reset(&ring->sched, &job->base);
3015
3016 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
3017 amdgpu_fence_driver_force_completion(ring);
3018 }
3019
3020 if (amdgpu_sriov_vf(adev))
3021 r = amdgpu_reset_sriov(adev, &reset_flags, job ? false : true);
3022 else
3023 r = amdgpu_reset(adev, &reset_flags);
3024
3025 if (!r) {
3026 if (((reset_flags & AMDGPU_RESET_INFO_FULLRESET) && !(adev->flags & AMD_IS_APU)) ||
3027 (reset_flags & AMDGPU_RESET_INFO_VRAM_LOST)) {
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003028 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
3029 struct amdgpu_bo *bo, *tmp;
Chris Wilsonf54d1862016-10-25 13:00:45 +01003030 struct dma_fence *fence = NULL, *next = NULL;
Chunming Zhou1f465082016-06-30 15:02:26 +08003031
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003032 DRM_INFO("recover vram bo from shadow\n");
3033 mutex_lock(&adev->shadow_list_lock);
3034 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
Monk Liu236763d2017-05-01 16:15:31 +08003035 next = NULL;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003036 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
3037 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01003038 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003039 if (r) {
Monk Liu1d7b17b2017-01-22 18:52:56 +08003040 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003041 break;
3042 }
3043 }
3044
Chris Wilsonf54d1862016-10-25 13:00:45 +01003045 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003046 fence = next;
3047 }
3048 mutex_unlock(&adev->shadow_list_lock);
3049 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01003050 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003051 if (r)
Monk Liu1d7b17b2017-01-22 18:52:56 +08003052 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003053 }
Chris Wilsonf54d1862016-10-25 13:00:45 +01003054 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003055 }
Monk Liu57406822017-10-25 16:37:02 +08003056
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003057 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
3058 struct amdgpu_ring *ring = adev->rings[i];
Chunming Zhou51687752017-04-24 17:09:15 +08003059
3060 if (!ring || !ring->sched.thread)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003061 continue;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08003062
Monk Liu57406822017-10-25 16:37:02 +08003063 /* only focus on the ring hit timeout if &job not NULL */
3064 if (job && job->ring->idx != i)
3065 continue;
3066
Chunming Zhouaa1c8902016-06-30 13:56:02 +08003067 amd_sched_job_recovery(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08003068 kthread_unpark(ring->sched.thread);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003069 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003070 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003071 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
Monk Liu57406822017-10-25 16:37:02 +08003072 struct amdgpu_ring *ring = adev->rings[i];
3073
3074 if (!ring || !ring->sched.thread)
3075 continue;
3076
3077 /* only focus on the ring hit timeout if &job not NULL */
3078 if (job && job->ring->idx != i)
3079 continue;
3080
3081 kthread_unpark(adev->rings[i]->sched.thread);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003082 }
3083 }
3084
Harry Wentland45622362017-09-12 15:58:20 -04003085 if (amdgpu_device_has_dc_support(adev)) {
Monk Liu57406822017-10-25 16:37:02 +08003086 if (drm_atomic_helper_resume(adev->ddev, state))
3087 dev_info(adev->dev, "drm resume failed:%d\n", r);
Harry Wentland45622362017-09-12 15:58:20 -04003088 amdgpu_dm_display_resume(adev);
Monk Liu57406822017-10-25 16:37:02 +08003089 } else {
Harry Wentland45622362017-09-12 15:58:20 -04003090 drm_helper_resume_force_mode(adev->ddev);
Monk Liu57406822017-10-25 16:37:02 +08003091 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003092
3093 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
Monk Liu57406822017-10-25 16:37:02 +08003094
Gavin Wan89041942017-06-23 13:55:15 -04003095 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003096 /* bad news, how to tell it to userspace ? */
Monk Liu57406822017-10-25 16:37:02 +08003097 dev_info(adev->dev, "GPU reset(%d) failed\n", atomic_read(&adev->gpu_reset_counter));
3098 amdgpu_vf_error_put(adev, AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r);
3099 } else {
3100 dev_info(adev->dev, "GPU reset(%d) successed!\n",atomic_read(&adev->gpu_reset_counter));
Gavin Wan89041942017-06-23 13:55:15 -04003101 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003102
Gavin Wan89041942017-06-23 13:55:15 -04003103 amdgpu_vf_error_trans_all(adev);
Monk Liu13a752e2017-10-17 15:11:12 +08003104 adev->in_gpu_reset = 0;
3105 mutex_unlock(&adev->lock_reset);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003106 return r;
3107}
3108
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003109void amdgpu_get_pcie_info(struct amdgpu_device *adev)
3110{
3111 u32 mask;
3112 int ret;
3113
Alex Deuchercd474ba2016-02-04 10:21:23 -05003114 if (amdgpu_pcie_gen_cap)
3115 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
3116
3117 if (amdgpu_pcie_lane_cap)
3118 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
3119
3120 /* covers APUs as well */
3121 if (pci_is_root_bus(adev->pdev->bus)) {
3122 if (adev->pm.pcie_gen_mask == 0)
3123 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
3124 if (adev->pm.pcie_mlw_mask == 0)
3125 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003126 return;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003127 }
Alex Deuchercd474ba2016-02-04 10:21:23 -05003128
3129 if (adev->pm.pcie_gen_mask == 0) {
3130 ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
3131 if (!ret) {
3132 adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
3133 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
3134 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
3135
3136 if (mask & DRM_PCIE_SPEED_25)
3137 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
3138 if (mask & DRM_PCIE_SPEED_50)
3139 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
3140 if (mask & DRM_PCIE_SPEED_80)
3141 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
3142 } else {
3143 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
3144 }
3145 }
3146 if (adev->pm.pcie_mlw_mask == 0) {
3147 ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
3148 if (!ret) {
3149 switch (mask) {
3150 case 32:
3151 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
3152 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3153 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3154 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3155 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3156 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3157 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3158 break;
3159 case 16:
3160 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
3161 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3162 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3163 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3164 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3165 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3166 break;
3167 case 12:
3168 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
3169 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3170 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3171 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3172 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3173 break;
3174 case 8:
3175 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
3176 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3177 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3178 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3179 break;
3180 case 4:
3181 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
3182 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3183 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3184 break;
3185 case 2:
3186 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
3187 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
3188 break;
3189 case 1:
3190 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
3191 break;
3192 default:
3193 break;
3194 }
3195 } else {
3196 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05003197 }
3198 }
3199}
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003200
3201/*
3202 * Debugfs
3203 */
3204int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04003205 const struct drm_info_list *files,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003206 unsigned nfiles)
3207{
3208 unsigned i;
3209
3210 for (i = 0; i < adev->debugfs_count; i++) {
3211 if (adev->debugfs[i].files == files) {
3212 /* Already registered */
3213 return 0;
3214 }
3215 }
3216
3217 i = adev->debugfs_count + 1;
3218 if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
3219 DRM_ERROR("Reached maximum number of debugfs components.\n");
3220 DRM_ERROR("Report so we increase "
3221 "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
3222 return -EINVAL;
3223 }
3224 adev->debugfs[adev->debugfs_count].files = files;
3225 adev->debugfs[adev->debugfs_count].num_files = nfiles;
3226 adev->debugfs_count = i;
3227#if defined(CONFIG_DEBUG_FS)
3228 drm_debugfs_create_files(files, nfiles,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003229 adev->ddev->primary->debugfs_root,
3230 adev->ddev->primary);
3231#endif
3232 return 0;
3233}
3234
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003235#if defined(CONFIG_DEBUG_FS)
3236
3237static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
3238 size_t size, loff_t *pos)
3239{
Al Viro45063092016-12-04 18:24:56 -05003240 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003241 ssize_t result = 0;
3242 int r;
Tom St Denisbd122672016-07-28 09:39:22 -04003243 bool pm_pg_lock, use_bank;
Tom St Denis566281592016-06-27 11:55:07 -04003244 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003245
3246 if (size & 0x3 || *pos & 0x3)
3247 return -EINVAL;
3248
Tom St Denisbd122672016-07-28 09:39:22 -04003249 /* are we reading registers for which a PG lock is necessary? */
3250 pm_pg_lock = (*pos >> 23) & 1;
3251
Tom St Denis566281592016-06-27 11:55:07 -04003252 if (*pos & (1ULL << 62)) {
Tom St Denis0b968652017-11-10 12:54:50 -05003253 se_bank = (*pos & GENMASK_ULL(33, 24)) >> 24;
3254 sh_bank = (*pos & GENMASK_ULL(43, 34)) >> 34;
3255 instance_bank = (*pos & GENMASK_ULL(53, 44)) >> 44;
Tom St Denis32977f92016-10-09 07:41:26 -04003256
3257 if (se_bank == 0x3FF)
3258 se_bank = 0xFFFFFFFF;
3259 if (sh_bank == 0x3FF)
3260 sh_bank = 0xFFFFFFFF;
3261 if (instance_bank == 0x3FF)
3262 instance_bank = 0xFFFFFFFF;
Tom St Denis566281592016-06-27 11:55:07 -04003263 use_bank = 1;
Tom St Denis566281592016-06-27 11:55:07 -04003264 } else {
3265 use_bank = 0;
3266 }
3267
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04003268 *pos &= (1UL << 22) - 1;
Tom St Denisbd122672016-07-28 09:39:22 -04003269
Tom St Denis566281592016-06-27 11:55:07 -04003270 if (use_bank) {
Tom St Denis32977f92016-10-09 07:41:26 -04003271 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
3272 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
Tom St Denis566281592016-06-27 11:55:07 -04003273 return -EINVAL;
3274 mutex_lock(&adev->grbm_idx_mutex);
3275 amdgpu_gfx_select_se_sh(adev, se_bank,
3276 sh_bank, instance_bank);
3277 }
3278
Tom St Denisbd122672016-07-28 09:39:22 -04003279 if (pm_pg_lock)
3280 mutex_lock(&adev->pm.mutex);
3281
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003282 while (size) {
3283 uint32_t value;
3284
3285 if (*pos > adev->rmmio_size)
Tom St Denis566281592016-06-27 11:55:07 -04003286 goto end;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003287
3288 value = RREG32(*pos >> 2);
3289 r = put_user(value, (uint32_t *)buf);
Tom St Denis566281592016-06-27 11:55:07 -04003290 if (r) {
3291 result = r;
3292 goto end;
3293 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003294
3295 result += 4;
3296 buf += 4;
3297 *pos += 4;
3298 size -= 4;
3299 }
3300
Tom St Denis566281592016-06-27 11:55:07 -04003301end:
3302 if (use_bank) {
3303 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
3304 mutex_unlock(&adev->grbm_idx_mutex);
3305 }
3306
Tom St Denisbd122672016-07-28 09:39:22 -04003307 if (pm_pg_lock)
3308 mutex_unlock(&adev->pm.mutex);
3309
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003310 return result;
3311}
3312
3313static ssize_t amdgpu_debugfs_regs_write(struct file *f, const 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;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003317 ssize_t result = 0;
3318 int r;
Tom St Denis394fdde2016-10-10 07:31:23 -04003319 bool pm_pg_lock, use_bank;
3320 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003321
3322 if (size & 0x3 || *pos & 0x3)
3323 return -EINVAL;
3324
Tom St Denis394fdde2016-10-10 07:31:23 -04003325 /* are we reading registers for which a PG lock is necessary? */
3326 pm_pg_lock = (*pos >> 23) & 1;
3327
3328 if (*pos & (1ULL << 62)) {
Tom St Denis0b968652017-11-10 12:54:50 -05003329 se_bank = (*pos & GENMASK_ULL(33, 24)) >> 24;
3330 sh_bank = (*pos & GENMASK_ULL(43, 34)) >> 34;
3331 instance_bank = (*pos & GENMASK_ULL(53, 44)) >> 44;
Tom St Denis394fdde2016-10-10 07:31:23 -04003332
3333 if (se_bank == 0x3FF)
3334 se_bank = 0xFFFFFFFF;
3335 if (sh_bank == 0x3FF)
3336 sh_bank = 0xFFFFFFFF;
3337 if (instance_bank == 0x3FF)
3338 instance_bank = 0xFFFFFFFF;
3339 use_bank = 1;
3340 } else {
3341 use_bank = 0;
3342 }
3343
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04003344 *pos &= (1UL << 22) - 1;
Tom St Denis394fdde2016-10-10 07:31:23 -04003345
3346 if (use_bank) {
3347 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
3348 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
3349 return -EINVAL;
3350 mutex_lock(&adev->grbm_idx_mutex);
3351 amdgpu_gfx_select_se_sh(adev, se_bank,
3352 sh_bank, instance_bank);
3353 }
3354
3355 if (pm_pg_lock)
3356 mutex_lock(&adev->pm.mutex);
3357
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003358 while (size) {
3359 uint32_t value;
3360
3361 if (*pos > adev->rmmio_size)
3362 return result;
3363
3364 r = get_user(value, (uint32_t *)buf);
3365 if (r)
3366 return r;
3367
3368 WREG32(*pos >> 2, value);
3369
3370 result += 4;
3371 buf += 4;
3372 *pos += 4;
3373 size -= 4;
3374 }
3375
Tom St Denis394fdde2016-10-10 07:31:23 -04003376 if (use_bank) {
3377 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
3378 mutex_unlock(&adev->grbm_idx_mutex);
3379 }
3380
3381 if (pm_pg_lock)
3382 mutex_unlock(&adev->pm.mutex);
3383
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003384 return result;
3385}
3386
Tom St Denisadcec282016-04-15 13:08:44 -04003387static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
3388 size_t size, loff_t *pos)
3389{
Al Viro45063092016-12-04 18:24:56 -05003390 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003391 ssize_t result = 0;
3392 int r;
3393
3394 if (size & 0x3 || *pos & 0x3)
3395 return -EINVAL;
3396
3397 while (size) {
3398 uint32_t value;
3399
3400 value = RREG32_PCIE(*pos >> 2);
3401 r = put_user(value, (uint32_t *)buf);
3402 if (r)
3403 return r;
3404
3405 result += 4;
3406 buf += 4;
3407 *pos += 4;
3408 size -= 4;
3409 }
3410
3411 return result;
3412}
3413
3414static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
3415 size_t size, loff_t *pos)
3416{
Al Viro45063092016-12-04 18:24:56 -05003417 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003418 ssize_t result = 0;
3419 int r;
3420
3421 if (size & 0x3 || *pos & 0x3)
3422 return -EINVAL;
3423
3424 while (size) {
3425 uint32_t value;
3426
3427 r = get_user(value, (uint32_t *)buf);
3428 if (r)
3429 return r;
3430
3431 WREG32_PCIE(*pos >> 2, value);
3432
3433 result += 4;
3434 buf += 4;
3435 *pos += 4;
3436 size -= 4;
3437 }
3438
3439 return result;
3440}
3441
3442static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
3443 size_t size, loff_t *pos)
3444{
Al Viro45063092016-12-04 18:24:56 -05003445 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003446 ssize_t result = 0;
3447 int r;
3448
3449 if (size & 0x3 || *pos & 0x3)
3450 return -EINVAL;
3451
3452 while (size) {
3453 uint32_t value;
3454
3455 value = RREG32_DIDT(*pos >> 2);
3456 r = put_user(value, (uint32_t *)buf);
3457 if (r)
3458 return r;
3459
3460 result += 4;
3461 buf += 4;
3462 *pos += 4;
3463 size -= 4;
3464 }
3465
3466 return result;
3467}
3468
3469static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
3470 size_t size, loff_t *pos)
3471{
Al Viro45063092016-12-04 18:24:56 -05003472 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003473 ssize_t result = 0;
3474 int r;
3475
3476 if (size & 0x3 || *pos & 0x3)
3477 return -EINVAL;
3478
3479 while (size) {
3480 uint32_t value;
3481
3482 r = get_user(value, (uint32_t *)buf);
3483 if (r)
3484 return r;
3485
3486 WREG32_DIDT(*pos >> 2, value);
3487
3488 result += 4;
3489 buf += 4;
3490 *pos += 4;
3491 size -= 4;
3492 }
3493
3494 return result;
3495}
3496
3497static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
3498 size_t size, loff_t *pos)
3499{
Al Viro45063092016-12-04 18:24:56 -05003500 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003501 ssize_t result = 0;
3502 int r;
3503
3504 if (size & 0x3 || *pos & 0x3)
3505 return -EINVAL;
3506
3507 while (size) {
3508 uint32_t value;
3509
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003510 value = RREG32_SMC(*pos);
Tom St Denisadcec282016-04-15 13:08:44 -04003511 r = put_user(value, (uint32_t *)buf);
3512 if (r)
3513 return r;
3514
3515 result += 4;
3516 buf += 4;
3517 *pos += 4;
3518 size -= 4;
3519 }
3520
3521 return result;
3522}
3523
3524static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
3525 size_t size, loff_t *pos)
3526{
Al Viro45063092016-12-04 18:24:56 -05003527 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003528 ssize_t result = 0;
3529 int r;
3530
3531 if (size & 0x3 || *pos & 0x3)
3532 return -EINVAL;
3533
3534 while (size) {
3535 uint32_t value;
3536
3537 r = get_user(value, (uint32_t *)buf);
3538 if (r)
3539 return r;
3540
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003541 WREG32_SMC(*pos, value);
Tom St Denisadcec282016-04-15 13:08:44 -04003542
3543 result += 4;
3544 buf += 4;
3545 *pos += 4;
3546 size -= 4;
3547 }
3548
3549 return result;
3550}
3551
Tom St Denis1e051412016-06-27 09:57:18 -04003552static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
3553 size_t size, loff_t *pos)
3554{
Al Viro45063092016-12-04 18:24:56 -05003555 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis1e051412016-06-27 09:57:18 -04003556 ssize_t result = 0;
3557 int r;
3558 uint32_t *config, no_regs = 0;
3559
3560 if (size & 0x3 || *pos & 0x3)
3561 return -EINVAL;
3562
Markus Elfringecab7662016-09-18 17:00:52 +02003563 config = kmalloc_array(256, sizeof(*config), GFP_KERNEL);
Tom St Denis1e051412016-06-27 09:57:18 -04003564 if (!config)
3565 return -ENOMEM;
3566
3567 /* version, increment each time something is added */
Tom St Denis9a999352017-01-18 13:01:25 -05003568 config[no_regs++] = 3;
Tom St Denis1e051412016-06-27 09:57:18 -04003569 config[no_regs++] = adev->gfx.config.max_shader_engines;
3570 config[no_regs++] = adev->gfx.config.max_tile_pipes;
3571 config[no_regs++] = adev->gfx.config.max_cu_per_sh;
3572 config[no_regs++] = adev->gfx.config.max_sh_per_se;
3573 config[no_regs++] = adev->gfx.config.max_backends_per_se;
3574 config[no_regs++] = adev->gfx.config.max_texture_channel_caches;
3575 config[no_regs++] = adev->gfx.config.max_gprs;
3576 config[no_regs++] = adev->gfx.config.max_gs_threads;
3577 config[no_regs++] = adev->gfx.config.max_hw_contexts;
3578 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend;
3579 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend;
3580 config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size;
3581 config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size;
3582 config[no_regs++] = adev->gfx.config.num_tile_pipes;
3583 config[no_regs++] = adev->gfx.config.backend_enable_mask;
3584 config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes;
3585 config[no_regs++] = adev->gfx.config.mem_row_size_in_kb;
3586 config[no_regs++] = adev->gfx.config.shader_engine_tile_size;
3587 config[no_regs++] = adev->gfx.config.num_gpus;
3588 config[no_regs++] = adev->gfx.config.multi_gpu_tile_size;
3589 config[no_regs++] = adev->gfx.config.mc_arb_ramcfg;
3590 config[no_regs++] = adev->gfx.config.gb_addr_config;
3591 config[no_regs++] = adev->gfx.config.num_rbs;
3592
Tom St Denis89a8f302016-08-12 15:14:31 -04003593 /* rev==1 */
3594 config[no_regs++] = adev->rev_id;
3595 config[no_regs++] = adev->pg_flags;
3596 config[no_regs++] = adev->cg_flags;
3597
Tom St Denise9f11dc2016-08-17 12:00:51 -04003598 /* rev==2 */
3599 config[no_regs++] = adev->family;
3600 config[no_regs++] = adev->external_rev_id;
3601
Tom St Denis9a999352017-01-18 13:01:25 -05003602 /* rev==3 */
3603 config[no_regs++] = adev->pdev->device;
3604 config[no_regs++] = adev->pdev->revision;
3605 config[no_regs++] = adev->pdev->subsystem_device;
3606 config[no_regs++] = adev->pdev->subsystem_vendor;
3607
Tom St Denis1e051412016-06-27 09:57:18 -04003608 while (size && (*pos < no_regs * 4)) {
3609 uint32_t value;
3610
3611 value = config[*pos >> 2];
3612 r = put_user(value, (uint32_t *)buf);
3613 if (r) {
3614 kfree(config);
3615 return r;
3616 }
3617
3618 result += 4;
3619 buf += 4;
3620 *pos += 4;
3621 size -= 4;
3622 }
3623
3624 kfree(config);
3625 return result;
3626}
3627
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003628static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf,
3629 size_t size, loff_t *pos)
3630{
Al Viro45063092016-12-04 18:24:56 -05003631 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003632 int idx, x, outsize, r, valuesize;
3633 uint32_t values[16];
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003634
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003635 if (size & 3 || *pos & 0x3)
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003636 return -EINVAL;
3637
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003638 if (amdgpu_dpm == 0)
3639 return -EINVAL;
3640
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003641 /* convert offset to sensor number */
3642 idx = *pos >> 2;
3643
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003644 valuesize = sizeof(values);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003645 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
Rex Zhucd4d7462017-09-06 18:43:52 +08003646 r = amdgpu_dpm_read_sensor(adev, idx, &values[0], &valuesize);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003647 else
3648 return -EINVAL;
3649
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003650 if (size > valuesize)
3651 return -EINVAL;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003652
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003653 outsize = 0;
3654 x = 0;
3655 if (!r) {
3656 while (size) {
3657 r = put_user(values[x++], (int32_t *)buf);
3658 buf += 4;
3659 size -= 4;
3660 outsize += 4;
3661 }
3662 }
3663
3664 return !r ? outsize : r;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003665}
Tom St Denis1e051412016-06-27 09:57:18 -04003666
Tom St Denis273d7aa2016-10-11 14:48:55 -04003667static ssize_t amdgpu_debugfs_wave_read(struct file *f, char __user *buf,
3668 size_t size, loff_t *pos)
3669{
3670 struct amdgpu_device *adev = f->f_inode->i_private;
3671 int r, x;
3672 ssize_t result=0;
Tom St Denis472259f2016-10-14 09:49:09 -04003673 uint32_t offset, se, sh, cu, wave, simd, data[32];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003674
3675 if (size & 3 || *pos & 3)
3676 return -EINVAL;
3677
3678 /* decode offset */
Tom St Denis0b968652017-11-10 12:54:50 -05003679 offset = (*pos & GENMASK_ULL(6, 0));
3680 se = (*pos & GENMASK_ULL(14, 7)) >> 7;
3681 sh = (*pos & GENMASK_ULL(22, 15)) >> 15;
3682 cu = (*pos & GENMASK_ULL(30, 23)) >> 23;
3683 wave = (*pos & GENMASK_ULL(36, 31)) >> 31;
3684 simd = (*pos & GENMASK_ULL(44, 37)) >> 37;
Tom St Denis273d7aa2016-10-11 14:48:55 -04003685
3686 /* switch to the specific se/sh/cu */
3687 mutex_lock(&adev->grbm_idx_mutex);
3688 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3689
3690 x = 0;
Tom St Denis472259f2016-10-14 09:49:09 -04003691 if (adev->gfx.funcs->read_wave_data)
3692 adev->gfx.funcs->read_wave_data(adev, simd, wave, data, &x);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003693
3694 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3695 mutex_unlock(&adev->grbm_idx_mutex);
3696
Tom St Denis5ecfb3b2016-10-13 12:15:03 -04003697 if (!x)
3698 return -EINVAL;
3699
Tom St Denis472259f2016-10-14 09:49:09 -04003700 while (size && (offset < x * 4)) {
Tom St Denis273d7aa2016-10-11 14:48:55 -04003701 uint32_t value;
3702
Tom St Denis472259f2016-10-14 09:49:09 -04003703 value = data[offset >> 2];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003704 r = put_user(value, (uint32_t *)buf);
3705 if (r)
3706 return r;
3707
3708 result += 4;
3709 buf += 4;
Tom St Denis472259f2016-10-14 09:49:09 -04003710 offset += 4;
Tom St Denis273d7aa2016-10-11 14:48:55 -04003711 size -= 4;
3712 }
3713
3714 return result;
3715}
3716
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003717static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
3718 size_t size, loff_t *pos)
3719{
3720 struct amdgpu_device *adev = f->f_inode->i_private;
3721 int r;
3722 ssize_t result = 0;
3723 uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data;
3724
3725 if (size & 3 || *pos & 3)
3726 return -EINVAL;
3727
3728 /* decode offset */
Tom St Denis0b968652017-11-10 12:54:50 -05003729 offset = *pos & GENMASK_ULL(11, 0);
3730 se = (*pos & GENMASK_ULL(19, 12)) >> 12;
3731 sh = (*pos & GENMASK_ULL(27, 20)) >> 20;
3732 cu = (*pos & GENMASK_ULL(35, 28)) >> 28;
3733 wave = (*pos & GENMASK_ULL(43, 36)) >> 36;
3734 simd = (*pos & GENMASK_ULL(51, 44)) >> 44;
3735 thread = (*pos & GENMASK_ULL(59, 52)) >> 52;
3736 bank = (*pos & GENMASK_ULL(61, 60)) >> 60;
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003737
3738 data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
3739 if (!data)
3740 return -ENOMEM;
3741
3742 /* switch to the specific se/sh/cu */
3743 mutex_lock(&adev->grbm_idx_mutex);
3744 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3745
3746 if (bank == 0) {
3747 if (adev->gfx.funcs->read_wave_vgprs)
3748 adev->gfx.funcs->read_wave_vgprs(adev, simd, wave, thread, offset, size>>2, data);
3749 } else {
3750 if (adev->gfx.funcs->read_wave_sgprs)
3751 adev->gfx.funcs->read_wave_sgprs(adev, simd, wave, offset, size>>2, data);
3752 }
3753
3754 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3755 mutex_unlock(&adev->grbm_idx_mutex);
3756
3757 while (size) {
3758 uint32_t value;
3759
3760 value = data[offset++];
3761 r = put_user(value, (uint32_t *)buf);
3762 if (r) {
3763 result = r;
3764 goto err;
3765 }
3766
3767 result += 4;
3768 buf += 4;
3769 size -= 4;
3770 }
3771
3772err:
3773 kfree(data);
3774 return result;
3775}
3776
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003777static const struct file_operations amdgpu_debugfs_regs_fops = {
3778 .owner = THIS_MODULE,
3779 .read = amdgpu_debugfs_regs_read,
3780 .write = amdgpu_debugfs_regs_write,
3781 .llseek = default_llseek
3782};
Tom St Denisadcec282016-04-15 13:08:44 -04003783static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
3784 .owner = THIS_MODULE,
3785 .read = amdgpu_debugfs_regs_didt_read,
3786 .write = amdgpu_debugfs_regs_didt_write,
3787 .llseek = default_llseek
3788};
3789static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
3790 .owner = THIS_MODULE,
3791 .read = amdgpu_debugfs_regs_pcie_read,
3792 .write = amdgpu_debugfs_regs_pcie_write,
3793 .llseek = default_llseek
3794};
3795static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
3796 .owner = THIS_MODULE,
3797 .read = amdgpu_debugfs_regs_smc_read,
3798 .write = amdgpu_debugfs_regs_smc_write,
3799 .llseek = default_llseek
3800};
3801
Tom St Denis1e051412016-06-27 09:57:18 -04003802static const struct file_operations amdgpu_debugfs_gca_config_fops = {
3803 .owner = THIS_MODULE,
3804 .read = amdgpu_debugfs_gca_config_read,
3805 .llseek = default_llseek
3806};
3807
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003808static const struct file_operations amdgpu_debugfs_sensors_fops = {
3809 .owner = THIS_MODULE,
3810 .read = amdgpu_debugfs_sensor_read,
3811 .llseek = default_llseek
3812};
3813
Tom St Denis273d7aa2016-10-11 14:48:55 -04003814static const struct file_operations amdgpu_debugfs_wave_fops = {
3815 .owner = THIS_MODULE,
3816 .read = amdgpu_debugfs_wave_read,
3817 .llseek = default_llseek
3818};
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003819static const struct file_operations amdgpu_debugfs_gpr_fops = {
3820 .owner = THIS_MODULE,
3821 .read = amdgpu_debugfs_gpr_read,
3822 .llseek = default_llseek
3823};
Tom St Denis273d7aa2016-10-11 14:48:55 -04003824
Tom St Denisadcec282016-04-15 13:08:44 -04003825static const struct file_operations *debugfs_regs[] = {
3826 &amdgpu_debugfs_regs_fops,
3827 &amdgpu_debugfs_regs_didt_fops,
3828 &amdgpu_debugfs_regs_pcie_fops,
3829 &amdgpu_debugfs_regs_smc_fops,
Tom St Denis1e051412016-06-27 09:57:18 -04003830 &amdgpu_debugfs_gca_config_fops,
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003831 &amdgpu_debugfs_sensors_fops,
Tom St Denis273d7aa2016-10-11 14:48:55 -04003832 &amdgpu_debugfs_wave_fops,
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003833 &amdgpu_debugfs_gpr_fops,
Tom St Denisadcec282016-04-15 13:08:44 -04003834};
3835
3836static const char *debugfs_regs_names[] = {
3837 "amdgpu_regs",
3838 "amdgpu_regs_didt",
3839 "amdgpu_regs_pcie",
3840 "amdgpu_regs_smc",
Tom St Denis1e051412016-06-27 09:57:18 -04003841 "amdgpu_gca_config",
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003842 "amdgpu_sensors",
Tom St Denis273d7aa2016-10-11 14:48:55 -04003843 "amdgpu_wave",
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003844 "amdgpu_gpr",
Tom St Denisadcec282016-04-15 13:08:44 -04003845};
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003846
3847static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3848{
3849 struct drm_minor *minor = adev->ddev->primary;
3850 struct dentry *ent, *root = minor->debugfs_root;
Tom St Denisadcec282016-04-15 13:08:44 -04003851 unsigned i, j;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003852
Tom St Denisadcec282016-04-15 13:08:44 -04003853 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3854 ent = debugfs_create_file(debugfs_regs_names[i],
3855 S_IFREG | S_IRUGO, root,
3856 adev, debugfs_regs[i]);
3857 if (IS_ERR(ent)) {
3858 for (j = 0; j < i; j++) {
3859 debugfs_remove(adev->debugfs_regs[i]);
3860 adev->debugfs_regs[i] = NULL;
3861 }
3862 return PTR_ERR(ent);
3863 }
3864
3865 if (!i)
3866 i_size_write(ent->d_inode, adev->rmmio_size);
3867 adev->debugfs_regs[i] = ent;
3868 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003869
3870 return 0;
3871}
3872
3873static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
3874{
Tom St Denisadcec282016-04-15 13:08:44 -04003875 unsigned i;
3876
3877 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3878 if (adev->debugfs_regs[i]) {
3879 debugfs_remove(adev->debugfs_regs[i]);
3880 adev->debugfs_regs[i] = NULL;
3881 }
3882 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003883}
3884
Huang Rui4f0955f2017-05-10 23:04:06 +08003885static int amdgpu_debugfs_test_ib(struct seq_file *m, void *data)
3886{
3887 struct drm_info_node *node = (struct drm_info_node *) m->private;
3888 struct drm_device *dev = node->minor->dev;
3889 struct amdgpu_device *adev = dev->dev_private;
3890 int r = 0, i;
3891
3892 /* hold on the scheduler */
3893 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3894 struct amdgpu_ring *ring = adev->rings[i];
3895
3896 if (!ring || !ring->sched.thread)
3897 continue;
3898 kthread_park(ring->sched.thread);
3899 }
3900
3901 seq_printf(m, "run ib test:\n");
3902 r = amdgpu_ib_ring_tests(adev);
3903 if (r)
3904 seq_printf(m, "ib ring tests failed (%d).\n", r);
3905 else
3906 seq_printf(m, "ib ring tests passed.\n");
3907
3908 /* go on the scheduler */
3909 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3910 struct amdgpu_ring *ring = adev->rings[i];
3911
3912 if (!ring || !ring->sched.thread)
3913 continue;
3914 kthread_unpark(ring->sched.thread);
3915 }
3916
3917 return 0;
3918}
3919
3920static const struct drm_info_list amdgpu_debugfs_test_ib_ring_list[] = {
3921 {"amdgpu_test_ib", &amdgpu_debugfs_test_ib}
3922};
3923
3924static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev)
3925{
3926 return amdgpu_debugfs_add_files(adev,
3927 amdgpu_debugfs_test_ib_ring_list, 1);
3928}
3929
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003930int amdgpu_debugfs_init(struct drm_minor *minor)
3931{
3932 return 0;
3933}
Kent Russelldb95e212017-08-22 12:31:43 -04003934
3935static int amdgpu_debugfs_get_vbios_dump(struct seq_file *m, void *data)
3936{
3937 struct drm_info_node *node = (struct drm_info_node *) m->private;
3938 struct drm_device *dev = node->minor->dev;
3939 struct amdgpu_device *adev = dev->dev_private;
3940
3941 seq_write(m, adev->bios, adev->bios_size);
3942 return 0;
3943}
3944
Kent Russelldb95e212017-08-22 12:31:43 -04003945static const struct drm_info_list amdgpu_vbios_dump_list[] = {
3946 {"amdgpu_vbios",
3947 amdgpu_debugfs_get_vbios_dump,
3948 0, NULL},
3949};
3950
Kent Russelldb95e212017-08-22 12:31:43 -04003951static int amdgpu_debugfs_vbios_dump_init(struct amdgpu_device *adev)
3952{
3953 return amdgpu_debugfs_add_files(adev,
3954 amdgpu_vbios_dump_list, 1);
3955}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003956#else
Arnd Bergmann27bad5b2017-06-21 23:51:02 +02003957static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev)
Huang Rui4f0955f2017-05-10 23:04:06 +08003958{
3959 return 0;
3960}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003961static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3962{
3963 return 0;
3964}
Kent Russelldb95e212017-08-22 12:31:43 -04003965static int amdgpu_debugfs_vbios_dump_init(struct amdgpu_device *adev)
3966{
3967 return 0;
3968}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003969static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003970#endif