blob: fbacc13534d29f0eda60f29a98de6cd77d028e43 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
Chunming Zhou0875dc92016-06-12 15:41:58 +080028#include <linux/kthread.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040029#include <linux/console.h>
30#include <linux/slab.h>
31#include <linux/debugfs.h>
32#include <drm/drmP.h>
33#include <drm/drm_crtc_helper.h>
34#include <drm/amdgpu_drm.h>
35#include <linux/vgaarb.h>
36#include <linux/vga_switcheroo.h>
37#include <linux/efi.h>
38#include "amdgpu.h"
Tom St Denisf4b373f2016-05-31 08:02:27 -040039#include "amdgpu_trace.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040040#include "amdgpu_i2c.h"
41#include "atom.h"
42#include "amdgpu_atombios.h"
Alex Deuchera5bde2f2016-09-23 16:23:41 -040043#include "amdgpu_atomfirmware.h"
Alex Deucherd0dd7f02015-11-11 19:45:06 -050044#include "amd_pcie.h"
Ken Wang33f34802016-01-21 17:29:41 +080045#ifdef CONFIG_DRM_AMDGPU_SI
46#include "si.h"
47#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -040048#ifdef CONFIG_DRM_AMDGPU_CIK
49#include "cik.h"
50#endif
Alex Deucheraaa36a92015-04-20 17:31:14 -040051#include "vi.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040052#include "bif/bif_4_1_d.h"
Emily Deng9accf2f2016-08-10 16:01:25 +080053#include <linux/pci.h>
Monk Liubec86372016-09-14 19:38:08 +080054#include <linux/firmware.h>
Tom St Denisd1aff8e2016-08-09 18:01:55 -040055#include "amdgpu_pm.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040056
57static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
58static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
59
60static const char *amdgpu_asic_name[] = {
Ken Wangda69c1612016-01-21 19:08:55 +080061 "TAHITI",
62 "PITCAIRN",
63 "VERDE",
64 "OLAND",
65 "HAINAN",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040066 "BONAIRE",
67 "KAVERI",
68 "KABINI",
69 "HAWAII",
70 "MULLINS",
71 "TOPAZ",
72 "TONGA",
David Zhang48299f92015-07-08 01:05:16 +080073 "FIJI",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040074 "CARRIZO",
Samuel Li139f4912015-10-08 14:50:27 -040075 "STONEY",
Flora Cui2cc0c0b2016-03-14 18:33:29 -040076 "POLARIS10",
77 "POLARIS11",
Junwei Zhangc4642a42016-12-14 15:32:28 -050078 "POLARIS12",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040079 "LAST",
80};
81
82bool amdgpu_device_is_px(struct drm_device *dev)
83{
84 struct amdgpu_device *adev = dev->dev_private;
85
Jammy Zhou2f7d10b2015-07-22 11:29:01 +080086 if (adev->flags & AMD_IS_PX)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040087 return true;
88 return false;
89}
90
91/*
92 * MMIO register access helper functions.
93 */
94uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
Monk Liu15d72fd2017-01-25 15:07:40 +080095 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096{
Tom St Denisf4b373f2016-05-31 08:02:27 -040097 uint32_t ret;
98
Monk Liu15d72fd2017-01-25 15:07:40 +080099 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) {
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800100 BUG_ON(in_interrupt());
101 return amdgpu_virt_kiq_rreg(adev, reg);
102 }
103
Monk Liu15d72fd2017-01-25 15:07:40 +0800104 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Tom St Denisf4b373f2016-05-31 08:02:27 -0400105 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400106 else {
107 unsigned long flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400108
109 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
110 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
111 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
112 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400113 }
Tom St Denisf4b373f2016-05-31 08:02:27 -0400114 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
115 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400116}
117
118void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
Monk Liu15d72fd2017-01-25 15:07:40 +0800119 uint32_t acc_flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400120{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400121 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
Monk Liu4e99a442016-03-31 13:26:59 +0800122
Monk Liu15d72fd2017-01-25 15:07:40 +0800123 if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) {
Xiangliang Yubc992ba2017-01-12 14:29:34 +0800124 BUG_ON(in_interrupt());
125 return amdgpu_virt_kiq_wreg(adev, reg, v);
126 }
127
Monk Liu15d72fd2017-01-25 15:07:40 +0800128 if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX))
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400129 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
130 else {
131 unsigned long flags;
132
133 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
134 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
135 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
136 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
137 }
138}
139
140u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
141{
142 if ((reg * 4) < adev->rio_mem_size)
143 return ioread32(adev->rio_mem + (reg * 4));
144 else {
145 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
146 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
147 }
148}
149
150void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
151{
152
153 if ((reg * 4) < adev->rio_mem_size)
154 iowrite32(v, adev->rio_mem + (reg * 4));
155 else {
156 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
157 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
158 }
159}
160
161/**
162 * amdgpu_mm_rdoorbell - read a doorbell dword
163 *
164 * @adev: amdgpu_device pointer
165 * @index: doorbell index
166 *
167 * Returns the value in the doorbell aperture at the
168 * requested doorbell index (CIK).
169 */
170u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
171{
172 if (index < adev->doorbell.num_doorbells) {
173 return readl(adev->doorbell.ptr + index);
174 } else {
175 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
176 return 0;
177 }
178}
179
180/**
181 * amdgpu_mm_wdoorbell - write a doorbell dword
182 *
183 * @adev: amdgpu_device pointer
184 * @index: doorbell index
185 * @v: value to write
186 *
187 * Writes @v to the doorbell aperture at the
188 * requested doorbell index (CIK).
189 */
190void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
191{
192 if (index < adev->doorbell.num_doorbells) {
193 writel(v, adev->doorbell.ptr + index);
194 } else {
195 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
196 }
197}
198
199/**
Ken Wang832be402016-03-18 15:23:08 +0800200 * amdgpu_mm_rdoorbell64 - read a doorbell Qword
201 *
202 * @adev: amdgpu_device pointer
203 * @index: doorbell index
204 *
205 * Returns the value in the doorbell aperture at the
206 * requested doorbell index (VEGA10+).
207 */
208u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index)
209{
210 if (index < adev->doorbell.num_doorbells) {
211 return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index));
212 } else {
213 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
214 return 0;
215 }
216}
217
218/**
219 * amdgpu_mm_wdoorbell64 - write a doorbell Qword
220 *
221 * @adev: amdgpu_device pointer
222 * @index: doorbell index
223 * @v: value to write
224 *
225 * Writes @v to the doorbell aperture at the
226 * requested doorbell index (VEGA10+).
227 */
228void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v)
229{
230 if (index < adev->doorbell.num_doorbells) {
231 atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v);
232 } else {
233 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
234 }
235}
236
237/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400238 * amdgpu_invalid_rreg - dummy reg read function
239 *
240 * @adev: amdgpu device pointer
241 * @reg: offset of register
242 *
243 * Dummy register read function. Used for register blocks
244 * that certain asics don't have (all asics).
245 * Returns the value in the register.
246 */
247static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
248{
249 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
250 BUG();
251 return 0;
252}
253
254/**
255 * amdgpu_invalid_wreg - dummy reg write function
256 *
257 * @adev: amdgpu device pointer
258 * @reg: offset of register
259 * @v: value to write to the register
260 *
261 * Dummy register read function. Used for register blocks
262 * that certain asics don't have (all asics).
263 */
264static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
265{
266 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
267 reg, v);
268 BUG();
269}
270
271/**
272 * amdgpu_block_invalid_rreg - dummy reg read function
273 *
274 * @adev: amdgpu device pointer
275 * @block: offset of instance
276 * @reg: offset of register
277 *
278 * Dummy register read function. Used for register blocks
279 * that certain asics don't have (all asics).
280 * Returns the value in the register.
281 */
282static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
283 uint32_t block, uint32_t reg)
284{
285 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
286 reg, block);
287 BUG();
288 return 0;
289}
290
291/**
292 * amdgpu_block_invalid_wreg - dummy reg write function
293 *
294 * @adev: amdgpu device pointer
295 * @block: offset of instance
296 * @reg: offset of register
297 * @v: value to write to the register
298 *
299 * Dummy register read function. Used for register blocks
300 * that certain asics don't have (all asics).
301 */
302static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
303 uint32_t block,
304 uint32_t reg, uint32_t v)
305{
306 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
307 reg, block, v);
308 BUG();
309}
310
311static int amdgpu_vram_scratch_init(struct amdgpu_device *adev)
312{
313 int r;
314
315 if (adev->vram_scratch.robj == NULL) {
316 r = amdgpu_bo_create(adev, AMDGPU_GPU_PAGE_SIZE,
Alex Deucher857d9132015-08-27 00:14:16 -0400317 PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_VRAM,
Christian König03f48dd2016-08-15 17:00:22 +0200318 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
319 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS,
Christian König72d76682015-09-03 17:34:59 +0200320 NULL, NULL, &adev->vram_scratch.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400321 if (r) {
322 return r;
323 }
324 }
325
326 r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
327 if (unlikely(r != 0))
328 return r;
329 r = amdgpu_bo_pin(adev->vram_scratch.robj,
330 AMDGPU_GEM_DOMAIN_VRAM, &adev->vram_scratch.gpu_addr);
331 if (r) {
332 amdgpu_bo_unreserve(adev->vram_scratch.robj);
333 return r;
334 }
335 r = amdgpu_bo_kmap(adev->vram_scratch.robj,
336 (void **)&adev->vram_scratch.ptr);
337 if (r)
338 amdgpu_bo_unpin(adev->vram_scratch.robj);
339 amdgpu_bo_unreserve(adev->vram_scratch.robj);
340
341 return r;
342}
343
344static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev)
345{
346 int r;
347
348 if (adev->vram_scratch.robj == NULL) {
349 return;
350 }
351 r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
352 if (likely(r == 0)) {
353 amdgpu_bo_kunmap(adev->vram_scratch.robj);
354 amdgpu_bo_unpin(adev->vram_scratch.robj);
355 amdgpu_bo_unreserve(adev->vram_scratch.robj);
356 }
357 amdgpu_bo_unref(&adev->vram_scratch.robj);
358}
359
360/**
361 * amdgpu_program_register_sequence - program an array of registers.
362 *
363 * @adev: amdgpu_device pointer
364 * @registers: pointer to the register array
365 * @array_size: size of the register array
366 *
367 * Programs an array or registers with and and or masks.
368 * This is a helper for setting golden registers.
369 */
370void amdgpu_program_register_sequence(struct amdgpu_device *adev,
371 const u32 *registers,
372 const u32 array_size)
373{
374 u32 tmp, reg, and_mask, or_mask;
375 int i;
376
377 if (array_size % 3)
378 return;
379
380 for (i = 0; i < array_size; i +=3) {
381 reg = registers[i + 0];
382 and_mask = registers[i + 1];
383 or_mask = registers[i + 2];
384
385 if (and_mask == 0xffffffff) {
386 tmp = or_mask;
387 } else {
388 tmp = RREG32(reg);
389 tmp &= ~and_mask;
390 tmp |= or_mask;
391 }
392 WREG32(reg, tmp);
393 }
394}
395
396void amdgpu_pci_config_reset(struct amdgpu_device *adev)
397{
398 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
399}
400
401/*
402 * GPU doorbell aperture helpers function.
403 */
404/**
405 * amdgpu_doorbell_init - Init doorbell driver information.
406 *
407 * @adev: amdgpu_device pointer
408 *
409 * Init doorbell driver information (CIK)
410 * Returns 0 on success, error on failure.
411 */
412static int amdgpu_doorbell_init(struct amdgpu_device *adev)
413{
414 /* doorbell bar mapping */
415 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
416 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
417
Christian Königedf600d2016-05-03 15:54:54 +0200418 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400419 AMDGPU_DOORBELL_MAX_ASSIGNMENT+1);
420 if (adev->doorbell.num_doorbells == 0)
421 return -EINVAL;
422
423 adev->doorbell.ptr = ioremap(adev->doorbell.base, adev->doorbell.num_doorbells * sizeof(u32));
424 if (adev->doorbell.ptr == NULL) {
425 return -ENOMEM;
426 }
427 DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)adev->doorbell.base);
428 DRM_INFO("doorbell mmio size: %u\n", (unsigned)adev->doorbell.size);
429
430 return 0;
431}
432
433/**
434 * amdgpu_doorbell_fini - Tear down doorbell driver information.
435 *
436 * @adev: amdgpu_device pointer
437 *
438 * Tear down doorbell driver information (CIK)
439 */
440static void amdgpu_doorbell_fini(struct amdgpu_device *adev)
441{
442 iounmap(adev->doorbell.ptr);
443 adev->doorbell.ptr = NULL;
444}
445
446/**
447 * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
448 * setup amdkfd
449 *
450 * @adev: amdgpu_device pointer
451 * @aperture_base: output returning doorbell aperture base physical address
452 * @aperture_size: output returning doorbell aperture size in bytes
453 * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
454 *
455 * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
456 * takes doorbells required for its own rings and reports the setup to amdkfd.
457 * amdgpu reserved doorbells are at the start of the doorbell aperture.
458 */
459void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
460 phys_addr_t *aperture_base,
461 size_t *aperture_size,
462 size_t *start_offset)
463{
464 /*
465 * The first num_doorbells are used by amdgpu.
466 * amdkfd takes whatever's left in the aperture.
467 */
468 if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
469 *aperture_base = adev->doorbell.base;
470 *aperture_size = adev->doorbell.size;
471 *start_offset = adev->doorbell.num_doorbells * sizeof(u32);
472 } else {
473 *aperture_base = 0;
474 *aperture_size = 0;
475 *start_offset = 0;
476 }
477}
478
479/*
480 * amdgpu_wb_*()
481 * Writeback is the the method by which the the GPU updates special pages
482 * in memory with the status of certain GPU events (fences, ring pointers,
483 * etc.).
484 */
485
486/**
487 * amdgpu_wb_fini - Disable Writeback and free memory
488 *
489 * @adev: amdgpu_device pointer
490 *
491 * Disables Writeback and frees the Writeback memory (all asics).
492 * Used at driver shutdown.
493 */
494static void amdgpu_wb_fini(struct amdgpu_device *adev)
495{
496 if (adev->wb.wb_obj) {
Alex Deuchera76ed482016-10-21 15:30:36 -0400497 amdgpu_bo_free_kernel(&adev->wb.wb_obj,
498 &adev->wb.gpu_addr,
499 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400500 adev->wb.wb_obj = NULL;
501 }
502}
503
504/**
505 * amdgpu_wb_init- Init Writeback driver info and allocate memory
506 *
507 * @adev: amdgpu_device pointer
508 *
509 * Disables Writeback and frees the Writeback memory (all asics).
510 * Used at driver startup.
511 * Returns 0 on success or an -error on failure.
512 */
513static int amdgpu_wb_init(struct amdgpu_device *adev)
514{
515 int r;
516
517 if (adev->wb.wb_obj == NULL) {
Huang Rui60a970a62017-03-15 10:13:32 +0800518 r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t),
Alex Deuchera76ed482016-10-21 15:30:36 -0400519 PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
520 &adev->wb.wb_obj, &adev->wb.gpu_addr,
521 (void **)&adev->wb.wb);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400522 if (r) {
523 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
524 return r;
525 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400526
527 adev->wb.num_wb = AMDGPU_MAX_WB;
528 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
529
530 /* clear wb memory */
Huang Rui60a970a62017-03-15 10:13:32 +0800531 memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400532 }
533
534 return 0;
535}
536
537/**
538 * amdgpu_wb_get - Allocate a wb entry
539 *
540 * @adev: amdgpu_device pointer
541 * @wb: wb index
542 *
543 * Allocate a wb slot for use by the driver (all asics).
544 * Returns 0 on success or -EINVAL on failure.
545 */
546int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb)
547{
548 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
549 if (offset < adev->wb.num_wb) {
550 __set_bit(offset, adev->wb.used);
551 *wb = offset;
552 return 0;
553 } else {
554 return -EINVAL;
555 }
556}
557
558/**
Ken Wang70142852016-03-18 15:08:49 +0800559 * amdgpu_wb_get_64bit - Allocate a wb entry
560 *
561 * @adev: amdgpu_device pointer
562 * @wb: wb index
563 *
564 * Allocate a wb slot for use by the driver (all asics).
565 * Returns 0 on success or -EINVAL on failure.
566 */
567int amdgpu_wb_get_64bit(struct amdgpu_device *adev, u32 *wb)
568{
569 unsigned long offset = bitmap_find_next_zero_area_off(adev->wb.used,
570 adev->wb.num_wb, 0, 2, 7, 0);
571 if ((offset + 1) < adev->wb.num_wb) {
572 __set_bit(offset, adev->wb.used);
573 __set_bit(offset + 1, adev->wb.used);
574 *wb = offset;
575 return 0;
576 } else {
577 return -EINVAL;
578 }
579}
580
581/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400582 * amdgpu_wb_free - Free a wb entry
583 *
584 * @adev: amdgpu_device pointer
585 * @wb: wb index
586 *
587 * Free a wb slot allocated for use by the driver (all asics)
588 */
589void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb)
590{
591 if (wb < adev->wb.num_wb)
592 __clear_bit(wb, adev->wb.used);
593}
594
595/**
Ken Wang70142852016-03-18 15:08:49 +0800596 * amdgpu_wb_free_64bit - Free a wb entry
597 *
598 * @adev: amdgpu_device pointer
599 * @wb: wb index
600 *
601 * Free a wb slot allocated for use by the driver (all asics)
602 */
603void amdgpu_wb_free_64bit(struct amdgpu_device *adev, u32 wb)
604{
605 if ((wb + 1) < adev->wb.num_wb) {
606 __clear_bit(wb, adev->wb.used);
607 __clear_bit(wb + 1, adev->wb.used);
608 }
609}
610
611/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400612 * amdgpu_vram_location - try to find VRAM location
613 * @adev: amdgpu device structure holding all necessary informations
614 * @mc: memory controller structure holding memory informations
615 * @base: base address at which to put VRAM
616 *
617 * Function will place try to place VRAM at base address provided
618 * as parameter (which is so far either PCI aperture address or
619 * for IGP TOM base address).
620 *
621 * If there is not enough space to fit the unvisible VRAM in the 32bits
622 * address space then we limit the VRAM size to the aperture.
623 *
624 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
625 * this shouldn't be a problem as we are using the PCI aperture as a reference.
626 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
627 * not IGP.
628 *
629 * Note: we use mc_vram_size as on some board we need to program the mc to
630 * cover the whole aperture even if VRAM size is inferior to aperture size
631 * Novell bug 204882 + along with lots of ubuntu ones
632 *
633 * Note: when limiting vram it's safe to overwritte real_vram_size because
634 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
635 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
636 * ones)
637 *
638 * Note: IGP TOM addr should be the same as the aperture addr, we don't
639 * explicitly check for that thought.
640 *
641 * FIXME: when reducing VRAM size align new size on power of 2.
642 */
643void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base)
644{
645 uint64_t limit = (uint64_t)amdgpu_vram_limit << 20;
646
647 mc->vram_start = base;
648 if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) {
649 dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n");
650 mc->real_vram_size = mc->aper_size;
651 mc->mc_vram_size = mc->aper_size;
652 }
653 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
654 if (limit && limit < mc->real_vram_size)
655 mc->real_vram_size = limit;
656 dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
657 mc->mc_vram_size >> 20, mc->vram_start,
658 mc->vram_end, mc->real_vram_size >> 20);
659}
660
661/**
662 * amdgpu_gtt_location - try to find GTT location
663 * @adev: amdgpu device structure holding all necessary informations
664 * @mc: memory controller structure holding memory informations
665 *
666 * Function will place try to place GTT before or after VRAM.
667 *
668 * If GTT size is bigger than space left then we ajust GTT size.
669 * Thus function will never fails.
670 *
671 * FIXME: when reducing GTT size align new size on power of 2.
672 */
673void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc)
674{
675 u64 size_af, size_bf;
676
677 size_af = ((adev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align;
678 size_bf = mc->vram_start & ~mc->gtt_base_align;
679 if (size_bf > size_af) {
680 if (mc->gtt_size > size_bf) {
681 dev_warn(adev->dev, "limiting GTT\n");
682 mc->gtt_size = size_bf;
683 }
Alex Deucher9dc5a912016-11-17 15:40:22 -0500684 mc->gtt_start = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400685 } else {
686 if (mc->gtt_size > size_af) {
687 dev_warn(adev->dev, "limiting GTT\n");
688 mc->gtt_size = size_af;
689 }
690 mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align;
691 }
692 mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
693 dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
694 mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
695}
696
697/*
698 * GPU helpers function.
699 */
700/**
Jim Quc836fec2017-02-10 15:59:59 +0800701 * amdgpu_need_post - check if the hw need post or not
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400702 *
703 * @adev: amdgpu_device pointer
704 *
Jim Quc836fec2017-02-10 15:59:59 +0800705 * Check if the asic has been initialized (all asics) at driver startup
706 * or post is needed if hw reset is performed.
707 * Returns true if need or false if not.
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400708 */
Jim Quc836fec2017-02-10 15:59:59 +0800709bool amdgpu_need_post(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400710{
711 uint32_t reg;
712
Jim Quc836fec2017-02-10 15:59:59 +0800713 if (adev->has_hw_reset) {
714 adev->has_hw_reset = false;
715 return true;
716 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400717 /* then check MEM_SIZE, in case the crtcs are off */
Alex Deucherbbf282d2017-03-03 17:26:10 -0500718 reg = amdgpu_asic_get_config_memsize(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400719
720 if (reg)
Jim Quc836fec2017-02-10 15:59:59 +0800721 return false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400722
Jim Quc836fec2017-02-10 15:59:59 +0800723 return true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400724
725}
726
Monk Liubec86372016-09-14 19:38:08 +0800727static bool amdgpu_vpost_needed(struct amdgpu_device *adev)
728{
729 if (amdgpu_sriov_vf(adev))
730 return false;
731
732 if (amdgpu_passthrough(adev)) {
Monk Liu1da2c322016-11-11 11:24:29 +0800733 /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot
734 * some old smc fw still need driver do vPost otherwise gpu hang, while
735 * those smc fw version above 22.15 doesn't have this flaw, so we force
736 * vpost executed for smc version below 22.15
Monk Liubec86372016-09-14 19:38:08 +0800737 */
738 if (adev->asic_type == CHIP_FIJI) {
739 int err;
740 uint32_t fw_ver;
741 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
742 /* force vPost if error occured */
743 if (err)
744 return true;
745
746 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
Monk Liu1da2c322016-11-11 11:24:29 +0800747 if (fw_ver < 0x00160e00)
748 return true;
Monk Liubec86372016-09-14 19:38:08 +0800749 }
Monk Liubec86372016-09-14 19:38:08 +0800750 }
Jim Quc836fec2017-02-10 15:59:59 +0800751 return amdgpu_need_post(adev);
Monk Liubec86372016-09-14 19:38:08 +0800752}
753
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400754/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400755 * amdgpu_dummy_page_init - init dummy page used by the driver
756 *
757 * @adev: amdgpu_device pointer
758 *
759 * Allocate the dummy page used by the driver (all asics).
760 * This dummy page is used by the driver as a filler for gart entries
761 * when pages are taken out of the GART
762 * Returns 0 on sucess, -ENOMEM on failure.
763 */
764int amdgpu_dummy_page_init(struct amdgpu_device *adev)
765{
766 if (adev->dummy_page.page)
767 return 0;
768 adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
769 if (adev->dummy_page.page == NULL)
770 return -ENOMEM;
771 adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page,
772 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
773 if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) {
774 dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n");
775 __free_page(adev->dummy_page.page);
776 adev->dummy_page.page = NULL;
777 return -ENOMEM;
778 }
779 return 0;
780}
781
782/**
783 * amdgpu_dummy_page_fini - free dummy page used by the driver
784 *
785 * @adev: amdgpu_device pointer
786 *
787 * Frees the dummy page used by the driver (all asics).
788 */
789void amdgpu_dummy_page_fini(struct amdgpu_device *adev)
790{
791 if (adev->dummy_page.page == NULL)
792 return;
793 pci_unmap_page(adev->pdev, adev->dummy_page.addr,
794 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
795 __free_page(adev->dummy_page.page);
796 adev->dummy_page.page = NULL;
797}
798
799
800/* ATOM accessor methods */
801/*
802 * ATOM is an interpreted byte code stored in tables in the vbios. The
803 * driver registers callbacks to access registers and the interpreter
804 * in the driver parses the tables and executes then to program specific
805 * actions (set display modes, asic init, etc.). See amdgpu_atombios.c,
806 * atombios.h, and atom.c
807 */
808
809/**
810 * cail_pll_read - read PLL register
811 *
812 * @info: atom card_info pointer
813 * @reg: PLL register offset
814 *
815 * Provides a PLL register accessor for the atom interpreter (r4xx+).
816 * Returns the value of the PLL register.
817 */
818static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
819{
820 return 0;
821}
822
823/**
824 * cail_pll_write - write PLL register
825 *
826 * @info: atom card_info pointer
827 * @reg: PLL register offset
828 * @val: value to write to the pll register
829 *
830 * Provides a PLL register accessor for the atom interpreter (r4xx+).
831 */
832static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
833{
834
835}
836
837/**
838 * cail_mc_read - read MC (Memory Controller) register
839 *
840 * @info: atom card_info pointer
841 * @reg: MC register offset
842 *
843 * Provides an MC register accessor for the atom interpreter (r4xx+).
844 * Returns the value of the MC register.
845 */
846static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
847{
848 return 0;
849}
850
851/**
852 * cail_mc_write - write MC (Memory Controller) register
853 *
854 * @info: atom card_info pointer
855 * @reg: MC register offset
856 * @val: value to write to the pll register
857 *
858 * Provides a MC register accessor for the atom interpreter (r4xx+).
859 */
860static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
861{
862
863}
864
865/**
866 * cail_reg_write - write MMIO register
867 *
868 * @info: atom card_info pointer
869 * @reg: MMIO register offset
870 * @val: value to write to the pll register
871 *
872 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
873 */
874static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
875{
876 struct amdgpu_device *adev = info->dev->dev_private;
877
878 WREG32(reg, val);
879}
880
881/**
882 * cail_reg_read - read MMIO register
883 *
884 * @info: atom card_info pointer
885 * @reg: MMIO register offset
886 *
887 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
888 * Returns the value of the MMIO register.
889 */
890static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
891{
892 struct amdgpu_device *adev = info->dev->dev_private;
893 uint32_t r;
894
895 r = RREG32(reg);
896 return r;
897}
898
899/**
900 * cail_ioreg_write - write IO register
901 *
902 * @info: atom card_info pointer
903 * @reg: IO register offset
904 * @val: value to write to the pll register
905 *
906 * Provides a IO register accessor for the atom interpreter (r4xx+).
907 */
908static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
909{
910 struct amdgpu_device *adev = info->dev->dev_private;
911
912 WREG32_IO(reg, val);
913}
914
915/**
916 * cail_ioreg_read - read IO register
917 *
918 * @info: atom card_info pointer
919 * @reg: IO register offset
920 *
921 * Provides an IO register accessor for the atom interpreter (r4xx+).
922 * Returns the value of the IO register.
923 */
924static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
925{
926 struct amdgpu_device *adev = info->dev->dev_private;
927 uint32_t r;
928
929 r = RREG32_IO(reg);
930 return r;
931}
932
933/**
934 * amdgpu_atombios_fini - free the driver info and callbacks for atombios
935 *
936 * @adev: amdgpu_device pointer
937 *
938 * Frees the driver info and register access callbacks for the ATOM
939 * interpreter (r4xx+).
940 * Called at driver shutdown.
941 */
942static void amdgpu_atombios_fini(struct amdgpu_device *adev)
943{
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800944 if (adev->mode_info.atom_context) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400945 kfree(adev->mode_info.atom_context->scratch);
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800946 kfree(adev->mode_info.atom_context->iio);
947 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400948 kfree(adev->mode_info.atom_context);
949 adev->mode_info.atom_context = NULL;
950 kfree(adev->mode_info.atom_card_info);
951 adev->mode_info.atom_card_info = NULL;
952}
953
954/**
955 * amdgpu_atombios_init - init the driver info and callbacks for atombios
956 *
957 * @adev: amdgpu_device pointer
958 *
959 * Initializes the driver info and register access callbacks for the
960 * ATOM interpreter (r4xx+).
961 * Returns 0 on sucess, -ENOMEM on failure.
962 * Called at driver startup.
963 */
964static int amdgpu_atombios_init(struct amdgpu_device *adev)
965{
966 struct card_info *atom_card_info =
967 kzalloc(sizeof(struct card_info), GFP_KERNEL);
968
969 if (!atom_card_info)
970 return -ENOMEM;
971
972 adev->mode_info.atom_card_info = atom_card_info;
973 atom_card_info->dev = adev->ddev;
974 atom_card_info->reg_read = cail_reg_read;
975 atom_card_info->reg_write = cail_reg_write;
976 /* needed for iio ops */
977 if (adev->rio_mem) {
978 atom_card_info->ioreg_read = cail_ioreg_read;
979 atom_card_info->ioreg_write = cail_ioreg_write;
980 } else {
Amber Linb64a18c2017-01-04 08:06:58 -0500981 DRM_INFO("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400982 atom_card_info->ioreg_read = cail_reg_read;
983 atom_card_info->ioreg_write = cail_reg_write;
984 }
985 atom_card_info->mc_read = cail_mc_read;
986 atom_card_info->mc_write = cail_mc_write;
987 atom_card_info->pll_read = cail_pll_read;
988 atom_card_info->pll_write = cail_pll_write;
989
990 adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
991 if (!adev->mode_info.atom_context) {
992 amdgpu_atombios_fini(adev);
993 return -ENOMEM;
994 }
995
996 mutex_init(&adev->mode_info.atom_context->mutex);
Alex Deuchera5bde2f2016-09-23 16:23:41 -0400997 if (adev->is_atom_fw) {
998 amdgpu_atomfirmware_scratch_regs_init(adev);
999 amdgpu_atomfirmware_allocate_fb_scratch(adev);
1000 } else {
1001 amdgpu_atombios_scratch_regs_init(adev);
1002 amdgpu_atombios_allocate_fb_scratch(adev);
1003 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001004 return 0;
1005}
1006
1007/* if we get transitioned to only one device, take VGA back */
1008/**
1009 * amdgpu_vga_set_decode - enable/disable vga decode
1010 *
1011 * @cookie: amdgpu_device pointer
1012 * @state: enable/disable vga decode
1013 *
1014 * Enable/disable vga decode (all asics).
1015 * Returns VGA resource flags.
1016 */
1017static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
1018{
1019 struct amdgpu_device *adev = cookie;
1020 amdgpu_asic_set_vga_state(adev, state);
1021 if (state)
1022 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1023 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1024 else
1025 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1026}
1027
1028/**
1029 * amdgpu_check_pot_argument - check that argument is a power of two
1030 *
1031 * @arg: value to check
1032 *
1033 * Validates that a certain argument is a power of two (all asics).
1034 * Returns true if argument is valid.
1035 */
1036static bool amdgpu_check_pot_argument(int arg)
1037{
1038 return (arg & (arg - 1)) == 0;
1039}
1040
1041/**
1042 * amdgpu_check_arguments - validate module params
1043 *
1044 * @adev: amdgpu_device pointer
1045 *
1046 * Validates certain module parameters and updates
1047 * the associated values used by the driver (all asics).
1048 */
1049static void amdgpu_check_arguments(struct amdgpu_device *adev)
1050{
Chunming Zhou5b011232015-12-10 17:34:33 +08001051 if (amdgpu_sched_jobs < 4) {
1052 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
1053 amdgpu_sched_jobs);
1054 amdgpu_sched_jobs = 4;
1055 } else if (!amdgpu_check_pot_argument(amdgpu_sched_jobs)){
1056 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
1057 amdgpu_sched_jobs);
1058 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
1059 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001060
1061 if (amdgpu_gart_size != -1) {
Christian Königc4e1a132016-03-17 16:25:15 +01001062 /* gtt size must be greater or equal to 32M */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001063 if (amdgpu_gart_size < 32) {
1064 dev_warn(adev->dev, "gart size (%d) too small\n",
1065 amdgpu_gart_size);
1066 amdgpu_gart_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001067 }
1068 }
1069
1070 if (!amdgpu_check_pot_argument(amdgpu_vm_size)) {
1071 dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
1072 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001073 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001074 }
1075
1076 if (amdgpu_vm_size < 1) {
1077 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1078 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001079 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001080 }
1081
1082 /*
1083 * Max GPUVM size for Cayman, SI and CI are 40 bits.
1084 */
1085 if (amdgpu_vm_size > 1024) {
1086 dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
1087 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001088 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001089 }
1090
1091 /* defines number of bits in page table versus page directory,
1092 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1093 * page table and the remaining bits are in the page directory */
1094 if (amdgpu_vm_block_size == -1) {
1095
1096 /* Total bits covered by PD + PTs */
1097 unsigned bits = ilog2(amdgpu_vm_size) + 18;
1098
1099 /* Make sure the PD is 4K in size up to 8GB address space.
1100 Above that split equal between PD and PTs */
1101 if (amdgpu_vm_size <= 8)
1102 amdgpu_vm_block_size = bits - 9;
1103 else
1104 amdgpu_vm_block_size = (bits + 3) / 2;
1105
1106 } else if (amdgpu_vm_block_size < 9) {
1107 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1108 amdgpu_vm_block_size);
1109 amdgpu_vm_block_size = 9;
1110 }
1111
1112 if (amdgpu_vm_block_size > 24 ||
1113 (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
1114 dev_warn(adev->dev, "VM page table size (%d) too large\n",
1115 amdgpu_vm_block_size);
1116 amdgpu_vm_block_size = 9;
1117 }
Christian König6a7f76e2016-08-24 15:51:49 +02001118
jimqu526bae32016-11-07 09:53:10 +08001119 if (amdgpu_vram_page_split != -1 && (amdgpu_vram_page_split < 16 ||
1120 !amdgpu_check_pot_argument(amdgpu_vram_page_split))) {
Christian König6a7f76e2016-08-24 15:51:49 +02001121 dev_warn(adev->dev, "invalid VRAM page split (%d)\n",
1122 amdgpu_vram_page_split);
1123 amdgpu_vram_page_split = 1024;
1124 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001125}
1126
1127/**
1128 * amdgpu_switcheroo_set_state - set switcheroo state
1129 *
1130 * @pdev: pci dev pointer
Lukas Wunner16944672015-09-05 11:17:35 +02001131 * @state: vga_switcheroo state
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001132 *
1133 * Callback for the switcheroo driver. Suspends or resumes the
1134 * the asics before or after it is powered up using ACPI methods.
1135 */
1136static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1137{
1138 struct drm_device *dev = pci_get_drvdata(pdev);
1139
1140 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1141 return;
1142
1143 if (state == VGA_SWITCHEROO_ON) {
1144 unsigned d3_delay = dev->pdev->d3_delay;
1145
Joe Perches7ca85292017-02-28 04:55:52 -08001146 pr_info("amdgpu: switched on\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001147 /* don't suspend or resume card normally */
1148 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1149
Alex Deucher810ddc32016-08-23 13:25:49 -04001150 amdgpu_device_resume(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001151
1152 dev->pdev->d3_delay = d3_delay;
1153
1154 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1155 drm_kms_helper_poll_enable(dev);
1156 } else {
Joe Perches7ca85292017-02-28 04:55:52 -08001157 pr_info("amdgpu: switched off\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001158 drm_kms_helper_poll_disable(dev);
1159 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Alex Deucher810ddc32016-08-23 13:25:49 -04001160 amdgpu_device_suspend(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001161 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1162 }
1163}
1164
1165/**
1166 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1167 *
1168 * @pdev: pci dev pointer
1169 *
1170 * Callback for the switcheroo driver. Check of the switcheroo
1171 * state can be changed.
1172 * Returns true if the state can be changed, false if not.
1173 */
1174static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1175{
1176 struct drm_device *dev = pci_get_drvdata(pdev);
1177
1178 /*
1179 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1180 * locking inversion with the driver load path. And the access here is
1181 * completely racy anyway. So don't bother with locking for now.
1182 */
1183 return dev->open_count == 0;
1184}
1185
1186static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1187 .set_gpu_state = amdgpu_switcheroo_set_state,
1188 .reprobe = NULL,
1189 .can_switch = amdgpu_switcheroo_can_switch,
1190};
1191
1192int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001193 enum amd_ip_block_type block_type,
1194 enum amd_clockgating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001195{
1196 int i, r = 0;
1197
1198 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001199 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001200 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001201 if (adev->ip_blocks[i].version->type != block_type)
1202 continue;
1203 if (!adev->ip_blocks[i].version->funcs->set_clockgating_state)
1204 continue;
1205 r = adev->ip_blocks[i].version->funcs->set_clockgating_state(
1206 (void *)adev, state);
1207 if (r)
1208 DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n",
1209 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001210 }
1211 return r;
1212}
1213
1214int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001215 enum amd_ip_block_type block_type,
1216 enum amd_powergating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001217{
1218 int i, r = 0;
1219
1220 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001221 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001222 continue;
Rex Zhuc7228652017-02-22 15:33:46 +08001223 if (adev->ip_blocks[i].version->type != block_type)
1224 continue;
1225 if (!adev->ip_blocks[i].version->funcs->set_powergating_state)
1226 continue;
1227 r = adev->ip_blocks[i].version->funcs->set_powergating_state(
1228 (void *)adev, state);
1229 if (r)
1230 DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n",
1231 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001232 }
1233 return r;
1234}
1235
Huang Rui6cb2d4e2017-01-05 18:44:41 +08001236void amdgpu_get_clockgating_state(struct amdgpu_device *adev, u32 *flags)
1237{
1238 int i;
1239
1240 for (i = 0; i < adev->num_ip_blocks; i++) {
1241 if (!adev->ip_blocks[i].status.valid)
1242 continue;
1243 if (adev->ip_blocks[i].version->funcs->get_clockgating_state)
1244 adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags);
1245 }
1246}
1247
Alex Deucher5dbbb602016-06-23 11:41:04 -04001248int amdgpu_wait_for_idle(struct amdgpu_device *adev,
1249 enum amd_ip_block_type block_type)
1250{
1251 int i, r;
1252
1253 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001254 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001255 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001256 if (adev->ip_blocks[i].version->type == block_type) {
1257 r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001258 if (r)
1259 return r;
1260 break;
1261 }
1262 }
1263 return 0;
1264
1265}
1266
1267bool amdgpu_is_idle(struct amdgpu_device *adev,
1268 enum amd_ip_block_type block_type)
1269{
1270 int i;
1271
1272 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001273 if (!adev->ip_blocks[i].status.valid)
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001274 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001275 if (adev->ip_blocks[i].version->type == block_type)
1276 return adev->ip_blocks[i].version->funcs->is_idle((void *)adev);
Alex Deucher5dbbb602016-06-23 11:41:04 -04001277 }
1278 return true;
1279
1280}
1281
Alex Deuchera1255102016-10-13 17:41:13 -04001282struct amdgpu_ip_block * amdgpu_get_ip_block(struct amdgpu_device *adev,
1283 enum amd_ip_block_type type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001284{
1285 int i;
1286
1287 for (i = 0; i < adev->num_ip_blocks; i++)
Alex Deuchera1255102016-10-13 17:41:13 -04001288 if (adev->ip_blocks[i].version->type == type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001289 return &adev->ip_blocks[i];
1290
1291 return NULL;
1292}
1293
1294/**
1295 * amdgpu_ip_block_version_cmp
1296 *
1297 * @adev: amdgpu_device pointer
yanyang15fc3aee2015-05-22 14:39:35 -04001298 * @type: enum amd_ip_block_type
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001299 * @major: major version
1300 * @minor: minor version
1301 *
1302 * return 0 if equal or greater
1303 * return 1 if smaller or the ip_block doesn't exist
1304 */
1305int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001306 enum amd_ip_block_type type,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001307 u32 major, u32 minor)
1308{
Alex Deuchera1255102016-10-13 17:41:13 -04001309 struct amdgpu_ip_block *ip_block = amdgpu_get_ip_block(adev, type);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001310
Alex Deuchera1255102016-10-13 17:41:13 -04001311 if (ip_block && ((ip_block->version->major > major) ||
1312 ((ip_block->version->major == major) &&
1313 (ip_block->version->minor >= minor))))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001314 return 0;
1315
1316 return 1;
1317}
1318
Alex Deuchera1255102016-10-13 17:41:13 -04001319/**
1320 * amdgpu_ip_block_add
1321 *
1322 * @adev: amdgpu_device pointer
1323 * @ip_block_version: pointer to the IP to add
1324 *
1325 * Adds the IP block driver information to the collection of IPs
1326 * on the asic.
1327 */
1328int amdgpu_ip_block_add(struct amdgpu_device *adev,
1329 const struct amdgpu_ip_block_version *ip_block_version)
1330{
1331 if (!ip_block_version)
1332 return -EINVAL;
1333
1334 adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version;
1335
1336 return 0;
1337}
1338
Alex Deucher483ef982016-09-30 12:43:04 -04001339static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
Emily Deng9accf2f2016-08-10 16:01:25 +08001340{
1341 adev->enable_virtual_display = false;
1342
1343 if (amdgpu_virtual_display) {
1344 struct drm_device *ddev = adev->ddev;
1345 const char *pci_address_name = pci_name(ddev->pdev);
Emily Deng0f663562016-09-30 13:02:18 -04001346 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
Emily Deng9accf2f2016-08-10 16:01:25 +08001347
1348 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1349 pciaddstr_tmp = pciaddstr;
Emily Deng0f663562016-09-30 13:02:18 -04001350 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1351 pciaddname = strsep(&pciaddname_tmp, ",");
Yintian Tao967de2a2017-01-22 15:16:51 +08001352 if (!strcmp("all", pciaddname)
1353 || !strcmp(pci_address_name, pciaddname)) {
Emily Deng0f663562016-09-30 13:02:18 -04001354 long num_crtc;
1355 int res = -1;
1356
Emily Deng9accf2f2016-08-10 16:01:25 +08001357 adev->enable_virtual_display = true;
Emily Deng0f663562016-09-30 13:02:18 -04001358
1359 if (pciaddname_tmp)
1360 res = kstrtol(pciaddname_tmp, 10,
1361 &num_crtc);
1362
1363 if (!res) {
1364 if (num_crtc < 1)
1365 num_crtc = 1;
1366 if (num_crtc > 6)
1367 num_crtc = 6;
1368 adev->mode_info.num_crtc = num_crtc;
1369 } else {
1370 adev->mode_info.num_crtc = 1;
1371 }
Emily Deng9accf2f2016-08-10 16:01:25 +08001372 break;
1373 }
1374 }
1375
Emily Deng0f663562016-09-30 13:02:18 -04001376 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1377 amdgpu_virtual_display, pci_address_name,
1378 adev->enable_virtual_display, adev->mode_info.num_crtc);
Emily Deng9accf2f2016-08-10 16:01:25 +08001379
1380 kfree(pciaddstr);
1381 }
1382}
1383
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001384static int amdgpu_early_init(struct amdgpu_device *adev)
1385{
Alex Deucheraaa36a92015-04-20 17:31:14 -04001386 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001387
Alex Deucher483ef982016-09-30 12:43:04 -04001388 amdgpu_device_enable_virtual_display(adev);
Emily Denga6be7572016-08-08 11:37:50 +08001389
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001390 switch (adev->asic_type) {
Alex Deucheraaa36a92015-04-20 17:31:14 -04001391 case CHIP_TOPAZ:
1392 case CHIP_TONGA:
David Zhang48299f92015-07-08 01:05:16 +08001393 case CHIP_FIJI:
Flora Cui2cc0c0b2016-03-14 18:33:29 -04001394 case CHIP_POLARIS11:
1395 case CHIP_POLARIS10:
Junwei Zhangc4642a42016-12-14 15:32:28 -05001396 case CHIP_POLARIS12:
Alex Deucheraaa36a92015-04-20 17:31:14 -04001397 case CHIP_CARRIZO:
Samuel Li39bb0c92015-10-08 16:31:43 -04001398 case CHIP_STONEY:
1399 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
Alex Deucheraaa36a92015-04-20 17:31:14 -04001400 adev->family = AMDGPU_FAMILY_CZ;
1401 else
1402 adev->family = AMDGPU_FAMILY_VI;
1403
1404 r = vi_set_ip_blocks(adev);
1405 if (r)
1406 return r;
1407 break;
Ken Wang33f34802016-01-21 17:29:41 +08001408#ifdef CONFIG_DRM_AMDGPU_SI
1409 case CHIP_VERDE:
1410 case CHIP_TAHITI:
1411 case CHIP_PITCAIRN:
1412 case CHIP_OLAND:
1413 case CHIP_HAINAN:
Ken Wang295d0da2016-05-24 21:02:53 +08001414 adev->family = AMDGPU_FAMILY_SI;
Ken Wang33f34802016-01-21 17:29:41 +08001415 r = si_set_ip_blocks(adev);
1416 if (r)
1417 return r;
1418 break;
1419#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -04001420#ifdef CONFIG_DRM_AMDGPU_CIK
1421 case CHIP_BONAIRE:
1422 case CHIP_HAWAII:
1423 case CHIP_KAVERI:
1424 case CHIP_KABINI:
1425 case CHIP_MULLINS:
1426 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1427 adev->family = AMDGPU_FAMILY_CI;
1428 else
1429 adev->family = AMDGPU_FAMILY_KV;
1430
1431 r = cik_set_ip_blocks(adev);
1432 if (r)
1433 return r;
1434 break;
1435#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001436 default:
1437 /* FIXME: not supported yet */
1438 return -EINVAL;
1439 }
1440
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001441 if (amdgpu_sriov_vf(adev)) {
1442 r = amdgpu_virt_request_full_gpu(adev, true);
1443 if (r)
1444 return r;
1445 }
1446
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001447 for (i = 0; i < adev->num_ip_blocks; i++) {
1448 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1449 DRM_ERROR("disabled ip block: %d\n", i);
Alex Deuchera1255102016-10-13 17:41:13 -04001450 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001451 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001452 if (adev->ip_blocks[i].version->funcs->early_init) {
1453 r = adev->ip_blocks[i].version->funcs->early_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001454 if (r == -ENOENT) {
Alex Deuchera1255102016-10-13 17:41:13 -04001455 adev->ip_blocks[i].status.valid = false;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001456 } else if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001457 DRM_ERROR("early_init of IP block <%s> failed %d\n",
1458 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001459 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001460 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001461 adev->ip_blocks[i].status.valid = true;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001462 }
Alex Deucher974e6b62015-07-10 13:59:44 -04001463 } else {
Alex Deuchera1255102016-10-13 17:41:13 -04001464 adev->ip_blocks[i].status.valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001465 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001466 }
1467 }
1468
Nicolai Hähnle395d1fb2016-06-02 12:32:07 +02001469 adev->cg_flags &= amdgpu_cg_mask;
1470 adev->pg_flags &= amdgpu_pg_mask;
1471
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001472 return 0;
1473}
1474
1475static int amdgpu_init(struct amdgpu_device *adev)
1476{
1477 int i, r;
1478
1479 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001480 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001481 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001482 r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001483 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001484 DRM_ERROR("sw_init of IP block <%s> failed %d\n",
1485 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001486 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001487 }
Alex Deuchera1255102016-10-13 17:41:13 -04001488 adev->ip_blocks[i].status.sw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001489 /* need to do gmc hw init early so we can allocate gpu mem */
Alex Deuchera1255102016-10-13 17:41:13 -04001490 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001491 r = amdgpu_vram_scratch_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001492 if (r) {
1493 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001494 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001495 }
Alex Deuchera1255102016-10-13 17:41:13 -04001496 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001497 if (r) {
1498 DRM_ERROR("hw_init %d failed %d\n", i, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001499 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001500 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001501 r = amdgpu_wb_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001502 if (r) {
1503 DRM_ERROR("amdgpu_wb_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001504 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001505 }
Alex Deuchera1255102016-10-13 17:41:13 -04001506 adev->ip_blocks[i].status.hw = true;
Monk Liu24936642017-01-09 15:54:32 +08001507
1508 /* right after GMC hw init, we create CSA */
1509 if (amdgpu_sriov_vf(adev)) {
1510 r = amdgpu_allocate_static_csa(adev);
1511 if (r) {
1512 DRM_ERROR("allocate CSA failed %d\n", r);
1513 return r;
1514 }
1515 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001516 }
1517 }
1518
1519 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001520 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001521 continue;
1522 /* gmc hw init is done early */
Alex Deuchera1255102016-10-13 17:41:13 -04001523 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001524 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001525 r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001526 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001527 DRM_ERROR("hw_init of IP block <%s> failed %d\n",
1528 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001529 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001530 }
Alex Deuchera1255102016-10-13 17:41:13 -04001531 adev->ip_blocks[i].status.hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001532 }
1533
1534 return 0;
1535}
1536
1537static int amdgpu_late_init(struct amdgpu_device *adev)
1538{
1539 int i = 0, r;
1540
1541 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001542 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001543 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001544 if (adev->ip_blocks[i].version->funcs->late_init) {
1545 r = adev->ip_blocks[i].version->funcs->late_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001546 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001547 DRM_ERROR("late_init of IP block <%s> failed %d\n",
1548 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001549 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001550 }
Alex Deuchera1255102016-10-13 17:41:13 -04001551 adev->ip_blocks[i].status.late_initialized = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001552 }
Alex Deucher4a446d52016-10-07 14:48:18 -04001553 /* skip CG for VCE/UVD, it's handled specially */
Alex Deuchera1255102016-10-13 17:41:13 -04001554 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1555 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
Alex Deucher4a446d52016-10-07 14:48:18 -04001556 /* enable clockgating to save power */
Alex Deuchera1255102016-10-13 17:41:13 -04001557 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1558 AMD_CG_STATE_GATE);
Alex Deucher4a446d52016-10-07 14:48:18 -04001559 if (r) {
1560 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001561 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher4a446d52016-10-07 14:48:18 -04001562 return r;
1563 }
Arindam Nathb0b00ff2016-10-07 19:01:37 +05301564 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001565 }
1566
Tom St Denisd1aff8e2016-08-09 18:01:55 -04001567 amdgpu_dpm_enable_uvd(adev, false);
1568 amdgpu_dpm_enable_vce(adev, false);
1569
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001570 return 0;
1571}
1572
1573static int amdgpu_fini(struct amdgpu_device *adev)
1574{
1575 int i, r;
1576
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001577 /* need to disable SMC first */
1578 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001579 if (!adev->ip_blocks[i].status.hw)
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001580 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001581 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) {
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001582 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
Alex Deuchera1255102016-10-13 17:41:13 -04001583 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1584 AMD_CG_STATE_UNGATE);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001585 if (r) {
1586 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001587 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001588 return r;
1589 }
Alex Deuchera1255102016-10-13 17:41:13 -04001590 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001591 /* XXX handle errors */
1592 if (r) {
1593 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
Alex Deuchera1255102016-10-13 17:41:13 -04001594 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001595 }
Alex Deuchera1255102016-10-13 17:41:13 -04001596 adev->ip_blocks[i].status.hw = false;
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001597 break;
1598 }
1599 }
1600
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001601 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001602 if (!adev->ip_blocks[i].status.hw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001603 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001604 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001605 amdgpu_wb_fini(adev);
1606 amdgpu_vram_scratch_fini(adev);
1607 }
Rex Zhu8201a672016-11-24 21:44:44 +08001608
1609 if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD &&
1610 adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) {
1611 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
1612 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1613 AMD_CG_STATE_UNGATE);
1614 if (r) {
1615 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1616 adev->ip_blocks[i].version->funcs->name, r);
1617 return r;
1618 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001619 }
Rex Zhu8201a672016-11-24 21:44:44 +08001620
Alex Deuchera1255102016-10-13 17:41:13 -04001621 r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001622 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001623 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001624 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1625 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001626 }
Rex Zhu8201a672016-11-24 21:44:44 +08001627
Alex Deuchera1255102016-10-13 17:41:13 -04001628 adev->ip_blocks[i].status.hw = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001629 }
1630
1631 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001632 if (!adev->ip_blocks[i].status.sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001633 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001634 r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001635 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001636 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001637 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n",
1638 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001639 }
Alex Deuchera1255102016-10-13 17:41:13 -04001640 adev->ip_blocks[i].status.sw = false;
1641 adev->ip_blocks[i].status.valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001642 }
1643
Monk Liua6dcfd92016-05-19 14:36:34 +08001644 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001645 if (!adev->ip_blocks[i].status.late_initialized)
Grazvydas Ignotas8a2eef12016-10-03 00:06:44 +03001646 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001647 if (adev->ip_blocks[i].version->funcs->late_fini)
1648 adev->ip_blocks[i].version->funcs->late_fini((void *)adev);
1649 adev->ip_blocks[i].status.late_initialized = false;
Monk Liua6dcfd92016-05-19 14:36:34 +08001650 }
1651
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001652 if (amdgpu_sriov_vf(adev)) {
Monk Liu24936642017-01-09 15:54:32 +08001653 amdgpu_bo_free_kernel(&adev->virt.csa_obj, &adev->virt.csa_vmid0_addr, NULL);
Xiangliang Yu3149d9d2017-01-12 15:14:36 +08001654 amdgpu_virt_release_full_gpu(adev, false);
1655 }
Monk Liu24936642017-01-09 15:54:32 +08001656
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001657 return 0;
1658}
1659
Alex Deucherfaefba92016-12-06 10:38:29 -05001660int amdgpu_suspend(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001661{
1662 int i, r;
1663
Xiangliang Yue941ea92017-01-18 12:47:55 +08001664 if (amdgpu_sriov_vf(adev))
1665 amdgpu_virt_request_full_gpu(adev, false);
1666
Flora Cuic5a93a22016-02-26 10:45:25 +08001667 /* ungate SMC block first */
1668 r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC,
1669 AMD_CG_STATE_UNGATE);
1670 if (r) {
1671 DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r);
1672 }
1673
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001674 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deuchera1255102016-10-13 17:41:13 -04001675 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001676 continue;
1677 /* ungate blocks so that suspend can properly shut them down */
Flora Cuic5a93a22016-02-26 10:45:25 +08001678 if (i != AMD_IP_BLOCK_TYPE_SMC) {
Alex Deuchera1255102016-10-13 17:41:13 -04001679 r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev,
1680 AMD_CG_STATE_UNGATE);
Flora Cuic5a93a22016-02-26 10:45:25 +08001681 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001682 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1683 adev->ip_blocks[i].version->funcs->name, r);
Flora Cuic5a93a22016-02-26 10:45:25 +08001684 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001685 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001686 /* XXX handle errors */
Alex Deuchera1255102016-10-13 17:41:13 -04001687 r = adev->ip_blocks[i].version->funcs->suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001688 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001689 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001690 DRM_ERROR("suspend of IP block <%s> failed %d\n",
1691 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001692 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001693 }
1694
Xiangliang Yue941ea92017-01-18 12:47:55 +08001695 if (amdgpu_sriov_vf(adev))
1696 amdgpu_virt_release_full_gpu(adev, false);
1697
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001698 return 0;
1699}
1700
Monk Liue4f0fdc2017-02-09 11:55:49 +08001701static int amdgpu_sriov_reinit_early(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001702{
1703 int i, r;
1704
1705 for (i = 0; i < adev->num_ip_blocks; i++) {
1706 if (!adev->ip_blocks[i].status.valid)
1707 continue;
1708
1709 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1710 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
1711 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH)
Monk Liue4f0fdc2017-02-09 11:55:49 +08001712 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08001713
1714 if (r) {
1715 DRM_ERROR("resume of IP block <%s> failed %d\n",
1716 adev->ip_blocks[i].version->funcs->name, r);
1717 return r;
1718 }
1719 }
1720
1721 return 0;
1722}
1723
Monk Liue4f0fdc2017-02-09 11:55:49 +08001724static int amdgpu_sriov_reinit_late(struct amdgpu_device *adev)
Monk Liua90ad3c2017-01-23 14:22:08 +08001725{
1726 int i, r;
1727
1728 for (i = 0; i < adev->num_ip_blocks; i++) {
1729 if (!adev->ip_blocks[i].status.valid)
1730 continue;
1731
1732 if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON ||
1733 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC ||
1734 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH )
1735 continue;
1736
Monk Liue4f0fdc2017-02-09 11:55:49 +08001737 r = adev->ip_blocks[i].version->funcs->hw_init(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08001738 if (r) {
1739 DRM_ERROR("resume of IP block <%s> failed %d\n",
1740 adev->ip_blocks[i].version->funcs->name, r);
1741 return r;
1742 }
1743 }
1744
1745 return 0;
1746}
1747
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001748static int amdgpu_resume(struct amdgpu_device *adev)
1749{
1750 int i, r;
1751
1752 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04001753 if (!adev->ip_blocks[i].status.valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001754 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04001755 r = adev->ip_blocks[i].version->funcs->resume(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001756 if (r) {
Alex Deuchera1255102016-10-13 17:41:13 -04001757 DRM_ERROR("resume of IP block <%s> failed %d\n",
1758 adev->ip_blocks[i].version->funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001759 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001760 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001761 }
1762
1763 return 0;
1764}
1765
Monk Liu4e99a442016-03-31 13:26:59 +08001766static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
Andres Rodriguez048765a2016-06-11 02:51:32 -04001767{
Alex Deuchera5bde2f2016-09-23 16:23:41 -04001768 if (adev->is_atom_fw) {
1769 if (amdgpu_atomfirmware_gpu_supports_virtualization(adev))
1770 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
1771 } else {
1772 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
1773 adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
1774 }
Andres Rodriguez048765a2016-06-11 02:51:32 -04001775}
1776
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001777/**
1778 * amdgpu_device_init - initialize the driver
1779 *
1780 * @adev: amdgpu_device pointer
1781 * @pdev: drm dev pointer
1782 * @pdev: pci dev pointer
1783 * @flags: driver flags
1784 *
1785 * Initializes the driver info and hw (all asics).
1786 * Returns 0 for success or an error on failure.
1787 * Called at driver startup.
1788 */
1789int amdgpu_device_init(struct amdgpu_device *adev,
1790 struct drm_device *ddev,
1791 struct pci_dev *pdev,
1792 uint32_t flags)
1793{
1794 int r, i;
1795 bool runtime = false;
Marek Olšák95844d22016-08-17 23:49:27 +02001796 u32 max_MBps;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001797
1798 adev->shutdown = false;
1799 adev->dev = &pdev->dev;
1800 adev->ddev = ddev;
1801 adev->pdev = pdev;
1802 adev->flags = flags;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001803 adev->asic_type = flags & AMD_ASIC_MASK;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001804 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
1805 adev->mc.gtt_size = 512 * 1024 * 1024;
1806 adev->accel_working = false;
1807 adev->num_rings = 0;
1808 adev->mman.buffer_funcs = NULL;
1809 adev->mman.buffer_funcs_ring = NULL;
1810 adev->vm_manager.vm_pte_funcs = NULL;
Christian König2d55e452016-02-08 17:37:38 +01001811 adev->vm_manager.vm_pte_num_rings = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001812 adev->gart.gart_funcs = NULL;
Chris Wilsonf54d1862016-10-25 13:00:45 +01001813 adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001814
1815 adev->smc_rreg = &amdgpu_invalid_rreg;
1816 adev->smc_wreg = &amdgpu_invalid_wreg;
1817 adev->pcie_rreg = &amdgpu_invalid_rreg;
1818 adev->pcie_wreg = &amdgpu_invalid_wreg;
Huang Rui36b9a952016-08-31 13:23:25 +08001819 adev->pciep_rreg = &amdgpu_invalid_rreg;
1820 adev->pciep_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001821 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
1822 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
1823 adev->didt_rreg = &amdgpu_invalid_rreg;
1824 adev->didt_wreg = &amdgpu_invalid_wreg;
Rex Zhuccdbb202016-06-08 12:47:41 +08001825 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
1826 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001827 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
1828 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
1829
Rex Zhuccdbb202016-06-08 12:47:41 +08001830
Alex Deucher3e39ab92015-06-05 15:04:33 -04001831 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1832 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
1833 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001834
1835 /* mutex initialization are all done here so we
1836 * can recall function without having locking issues */
Christian König8d0a7ce2015-11-03 20:58:50 +01001837 mutex_init(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001838 atomic_set(&adev->irq.ih.lock, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001839 mutex_init(&adev->pm.mutex);
1840 mutex_init(&adev->gfx.gpu_clock_mutex);
1841 mutex_init(&adev->srbm_mutex);
1842 mutex_init(&adev->grbm_idx_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001843 mutex_init(&adev->mn_lock);
1844 hash_init(adev->mn_hash);
1845
1846 amdgpu_check_arguments(adev);
1847
1848 /* Registers mapping */
1849 /* TODO: block userspace mapping of io register */
1850 spin_lock_init(&adev->mmio_idx_lock);
1851 spin_lock_init(&adev->smc_idx_lock);
1852 spin_lock_init(&adev->pcie_idx_lock);
1853 spin_lock_init(&adev->uvd_ctx_idx_lock);
1854 spin_lock_init(&adev->didt_idx_lock);
Rex Zhuccdbb202016-06-08 12:47:41 +08001855 spin_lock_init(&adev->gc_cac_idx_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001856 spin_lock_init(&adev->audio_endpt_idx_lock);
Marek Olšák95844d22016-08-17 23:49:27 +02001857 spin_lock_init(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001858
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +08001859 INIT_LIST_HEAD(&adev->shadow_list);
1860 mutex_init(&adev->shadow_list_lock);
1861
Chunming Zhou5c1354b2016-08-30 16:13:10 +08001862 INIT_LIST_HEAD(&adev->gtt_list);
1863 spin_lock_init(&adev->gtt_list_lock);
1864
Ken Wangda69c1612016-01-21 19:08:55 +08001865 if (adev->asic_type >= CHIP_BONAIRE) {
1866 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
1867 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
1868 } else {
1869 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
1870 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
1871 }
Chunming Zhou5c1354b2016-08-30 16:13:10 +08001872
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001873 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
1874 if (adev->rmmio == NULL) {
1875 return -ENOMEM;
1876 }
1877 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
1878 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
1879
Ken Wangda69c1612016-01-21 19:08:55 +08001880 if (adev->asic_type >= CHIP_BONAIRE)
1881 /* doorbell bar mapping */
1882 amdgpu_doorbell_init(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001883
1884 /* io port mapping */
1885 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1886 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
1887 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
1888 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
1889 break;
1890 }
1891 }
1892 if (adev->rio_mem == NULL)
Amber Linb64a18c2017-01-04 08:06:58 -05001893 DRM_INFO("PCI I/O BAR is not found.\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001894
1895 /* early init functions */
1896 r = amdgpu_early_init(adev);
1897 if (r)
1898 return r;
1899
1900 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
1901 /* this will fail for cards that aren't VGA class devices, just
1902 * ignore it */
1903 vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
1904
1905 if (amdgpu_runtime_pm == 1)
1906 runtime = true;
Alex Deuchere9bef452016-04-25 13:12:18 -04001907 if (amdgpu_device_is_px(ddev))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001908 runtime = true;
1909 vga_switcheroo_register_client(adev->pdev, &amdgpu_switcheroo_ops, runtime);
1910 if (runtime)
1911 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
1912
1913 /* Read BIOS */
Alex Deucher83ba1262016-06-03 18:21:41 -04001914 if (!amdgpu_get_bios(adev)) {
1915 r = -EINVAL;
1916 goto failed;
1917 }
Nils Wallméniusf7e9e9f2016-12-14 21:52:45 +01001918
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001919 r = amdgpu_atombios_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001920 if (r) {
1921 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001922 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001923 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001924
Monk Liu4e99a442016-03-31 13:26:59 +08001925 /* detect if we are with an SRIOV vbios */
1926 amdgpu_device_detect_sriov_bios(adev);
Andres Rodriguez048765a2016-06-11 02:51:32 -04001927
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001928 /* Post card if necessary */
Monk Liubec86372016-09-14 19:38:08 +08001929 if (amdgpu_vpost_needed(adev)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001930 if (!adev->bios) {
Monk Liubec86372016-09-14 19:38:08 +08001931 dev_err(adev->dev, "no vBIOS found\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001932 r = -EINVAL;
1933 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001934 }
Monk Liubec86372016-09-14 19:38:08 +08001935 DRM_INFO("GPU posting now...\n");
Monk Liu4e99a442016-03-31 13:26:59 +08001936 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
1937 if (r) {
1938 dev_err(adev->dev, "gpu post error!\n");
1939 goto failed;
1940 }
1941 } else {
1942 DRM_INFO("GPU post is not needed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001943 }
1944
Alex Deuchera5bde2f2016-09-23 16:23:41 -04001945 if (!adev->is_atom_fw) {
1946 /* Initialize clocks */
1947 r = amdgpu_atombios_get_clock_info(adev);
1948 if (r) {
1949 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
1950 return r;
1951 }
1952 /* init i2c buses */
1953 amdgpu_atombios_i2c_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001954 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001955
1956 /* Fence driver */
1957 r = amdgpu_fence_driver_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001958 if (r) {
1959 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001960 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001961 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001962
1963 /* init the mode config */
1964 drm_mode_config_init(adev->ddev);
1965
1966 r = amdgpu_init(adev);
1967 if (r) {
Alex Deucher2c1a2782015-12-07 17:02:53 -05001968 dev_err(adev->dev, "amdgpu_init failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001969 amdgpu_fini(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04001970 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001971 }
1972
1973 adev->accel_working = true;
1974
Marek Olšák95844d22016-08-17 23:49:27 +02001975 /* Initialize the buffer migration limit. */
1976 if (amdgpu_moverate >= 0)
1977 max_MBps = amdgpu_moverate;
1978 else
1979 max_MBps = 8; /* Allow 8 MB/s. */
1980 /* Get a log2 for easy divisions. */
1981 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
1982
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001983 r = amdgpu_ib_pool_init(adev);
1984 if (r) {
1985 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
Alex Deucher83ba1262016-06-03 18:21:41 -04001986 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001987 }
1988
1989 r = amdgpu_ib_ring_tests(adev);
1990 if (r)
1991 DRM_ERROR("ib ring test failed (%d).\n", r);
1992
Monk Liu9bc92b92017-02-08 17:38:13 +08001993 amdgpu_fbdev_init(adev);
1994
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001995 r = amdgpu_gem_debugfs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08001996 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001997 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001998
1999 r = amdgpu_debugfs_regs_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002000 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002001 DRM_ERROR("registering register debugfs failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002002
Huang Rui50ab2532016-06-12 15:51:09 +08002003 r = amdgpu_debugfs_firmware_init(adev);
Monk Liu3f14e622017-02-09 13:42:27 +08002004 if (r)
Huang Rui50ab2532016-06-12 15:51:09 +08002005 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
Huang Rui50ab2532016-06-12 15:51:09 +08002006
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002007 if ((amdgpu_testing & 1)) {
2008 if (adev->accel_working)
2009 amdgpu_test_moves(adev);
2010 else
2011 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
2012 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002013 if (amdgpu_benchmarking) {
2014 if (adev->accel_working)
2015 amdgpu_benchmark(adev, amdgpu_benchmarking);
2016 else
2017 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
2018 }
2019
2020 /* enable clockgating, etc. after ib tests, etc. since some blocks require
2021 * explicit gating rather than handling it automatically.
2022 */
2023 r = amdgpu_late_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05002024 if (r) {
2025 dev_err(adev->dev, "amdgpu_late_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04002026 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05002027 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002028
2029 return 0;
Alex Deucher83ba1262016-06-03 18:21:41 -04002030
2031failed:
2032 if (runtime)
2033 vga_switcheroo_fini_domain_pm_ops(adev->dev);
2034 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002035}
2036
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002037/**
2038 * amdgpu_device_fini - tear down the driver
2039 *
2040 * @adev: amdgpu_device pointer
2041 *
2042 * Tear down the driver info (all asics).
2043 * Called at driver shutdown.
2044 */
2045void amdgpu_device_fini(struct amdgpu_device *adev)
2046{
2047 int r;
2048
2049 DRM_INFO("amdgpu: finishing device.\n");
2050 adev->shutdown = true;
Grazvydas Ignotasa951ed82016-09-25 23:34:48 +03002051 drm_crtc_force_disable_all(adev->ddev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002052 /* evict vram memory */
2053 amdgpu_bo_evict_vram(adev);
2054 amdgpu_ib_pool_fini(adev);
2055 amdgpu_fence_driver_fini(adev);
2056 amdgpu_fbdev_fini(adev);
2057 r = amdgpu_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002058 adev->accel_working = false;
2059 /* free i2c buses */
2060 amdgpu_i2c_fini(adev);
2061 amdgpu_atombios_fini(adev);
2062 kfree(adev->bios);
2063 adev->bios = NULL;
2064 vga_switcheroo_unregister_client(adev->pdev);
Alex Deucher83ba1262016-06-03 18:21:41 -04002065 if (adev->flags & AMD_IS_PX)
2066 vga_switcheroo_fini_domain_pm_ops(adev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002067 vga_client_register(adev->pdev, NULL, NULL, NULL);
2068 if (adev->rio_mem)
2069 pci_iounmap(adev->pdev, adev->rio_mem);
2070 adev->rio_mem = NULL;
2071 iounmap(adev->rmmio);
2072 adev->rmmio = NULL;
Ken Wangda69c1612016-01-21 19:08:55 +08002073 if (adev->asic_type >= CHIP_BONAIRE)
2074 amdgpu_doorbell_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002075 amdgpu_debugfs_regs_cleanup(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002076}
2077
2078
2079/*
2080 * Suspend & resume.
2081 */
2082/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002083 * amdgpu_device_suspend - initiate device suspend
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002084 *
2085 * @pdev: drm dev pointer
2086 * @state: suspend state
2087 *
2088 * Puts the hw in the suspend state (all asics).
2089 * Returns 0 for success or an error on failure.
2090 * Called at driver suspend.
2091 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002092int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002093{
2094 struct amdgpu_device *adev;
2095 struct drm_crtc *crtc;
2096 struct drm_connector *connector;
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002097 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002098
2099 if (dev == NULL || dev->dev_private == NULL) {
2100 return -ENODEV;
2101 }
2102
2103 adev = dev->dev_private;
2104
2105 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2106 return 0;
2107
2108 drm_kms_helper_poll_disable(dev);
2109
2110 /* turn off display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002111 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002112 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2113 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
2114 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002115 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002116
Alex Deucher756e6882015-10-08 00:03:36 -04002117 /* unpin the front buffers and cursors */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002118 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Alex Deucher756e6882015-10-08 00:03:36 -04002119 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002120 struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
2121 struct amdgpu_bo *robj;
2122
Alex Deucher756e6882015-10-08 00:03:36 -04002123 if (amdgpu_crtc->cursor_bo) {
2124 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2125 r = amdgpu_bo_reserve(aobj, false);
2126 if (r == 0) {
2127 amdgpu_bo_unpin(aobj);
2128 amdgpu_bo_unreserve(aobj);
2129 }
2130 }
2131
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002132 if (rfb == NULL || rfb->obj == NULL) {
2133 continue;
2134 }
2135 robj = gem_to_amdgpu_bo(rfb->obj);
2136 /* don't unpin kernel fb objects */
2137 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
2138 r = amdgpu_bo_reserve(robj, false);
2139 if (r == 0) {
2140 amdgpu_bo_unpin(robj);
2141 amdgpu_bo_unreserve(robj);
2142 }
2143 }
2144 }
2145 /* evict vram memory */
2146 amdgpu_bo_evict_vram(adev);
2147
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002148 amdgpu_fence_driver_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002149
2150 r = amdgpu_suspend(adev);
2151
Alex Deuchera0a71e42016-10-10 12:41:36 -04002152 /* evict remaining vram memory
2153 * This second call to evict vram is to evict the gart page table
2154 * using the CPU.
2155 */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002156 amdgpu_bo_evict_vram(adev);
2157
Alex Deuchere695e772016-10-19 14:40:58 -04002158 amdgpu_atombios_scratch_regs_save(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002159 pci_save_state(dev->pdev);
2160 if (suspend) {
2161 /* Shut down the device */
2162 pci_disable_device(dev->pdev);
2163 pci_set_power_state(dev->pdev, PCI_D3hot);
jimqu74b0b152016-09-07 17:09:12 +08002164 } else {
2165 r = amdgpu_asic_reset(adev);
2166 if (r)
2167 DRM_ERROR("amdgpu asic reset failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002168 }
2169
2170 if (fbcon) {
2171 console_lock();
2172 amdgpu_fbdev_set_suspend(adev, 1);
2173 console_unlock();
2174 }
2175 return 0;
2176}
2177
2178/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002179 * amdgpu_device_resume - initiate device resume
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002180 *
2181 * @pdev: drm dev pointer
2182 *
2183 * Bring the hw back to operating state (all asics).
2184 * Returns 0 for success or an error on failure.
2185 * Called at driver resume.
2186 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002187int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002188{
2189 struct drm_connector *connector;
2190 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher756e6882015-10-08 00:03:36 -04002191 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002192 int r;
2193
2194 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2195 return 0;
2196
jimqu74b0b152016-09-07 17:09:12 +08002197 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002198 console_lock();
jimqu74b0b152016-09-07 17:09:12 +08002199
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002200 if (resume) {
2201 pci_set_power_state(dev->pdev, PCI_D0);
2202 pci_restore_state(dev->pdev);
jimqu74b0b152016-09-07 17:09:12 +08002203 r = pci_enable_device(dev->pdev);
2204 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002205 if (fbcon)
2206 console_unlock();
jimqu74b0b152016-09-07 17:09:12 +08002207 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002208 }
2209 }
Alex Deuchere695e772016-10-19 14:40:58 -04002210 amdgpu_atombios_scratch_regs_restore(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002211
2212 /* post card */
Jim Quc836fec2017-02-10 15:59:59 +08002213 if (amdgpu_need_post(adev)) {
jimqu74b0b152016-09-07 17:09:12 +08002214 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2215 if (r)
2216 DRM_ERROR("amdgpu asic init failed\n");
2217 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002218
2219 r = amdgpu_resume(adev);
Flora Cuica198522016-02-04 15:10:08 +08002220 if (r)
2221 DRM_ERROR("amdgpu_resume failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002222
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002223 amdgpu_fence_driver_resume(adev);
2224
Flora Cuica198522016-02-04 15:10:08 +08002225 if (resume) {
2226 r = amdgpu_ib_ring_tests(adev);
2227 if (r)
2228 DRM_ERROR("ib ring test failed (%d).\n", r);
2229 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002230
2231 r = amdgpu_late_init(adev);
Jim Quc085bd52017-03-01 15:53:29 +08002232 if (r) {
2233 if (fbcon)
2234 console_unlock();
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002235 return r;
Jim Quc085bd52017-03-01 15:53:29 +08002236 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002237
Alex Deucher756e6882015-10-08 00:03:36 -04002238 /* pin cursors */
2239 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2240 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2241
2242 if (amdgpu_crtc->cursor_bo) {
2243 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2244 r = amdgpu_bo_reserve(aobj, false);
2245 if (r == 0) {
2246 r = amdgpu_bo_pin(aobj,
2247 AMDGPU_GEM_DOMAIN_VRAM,
2248 &amdgpu_crtc->cursor_addr);
2249 if (r != 0)
2250 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
2251 amdgpu_bo_unreserve(aobj);
2252 }
2253 }
2254 }
2255
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002256 /* blat the mode back in */
2257 if (fbcon) {
2258 drm_helper_resume_force_mode(dev);
2259 /* turn on display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002260 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002261 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2262 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
2263 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002264 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002265 }
2266
2267 drm_kms_helper_poll_enable(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002268
2269 /*
2270 * Most of the connector probing functions try to acquire runtime pm
2271 * refs to ensure that the GPU is powered on when connector polling is
2272 * performed. Since we're calling this from a runtime PM callback,
2273 * trying to acquire rpm refs will cause us to deadlock.
2274 *
2275 * Since we're guaranteed to be holding the rpm lock, it's safe to
2276 * temporarily disable the rpm helpers so this doesn't deadlock us.
2277 */
2278#ifdef CONFIG_PM
2279 dev->dev->power.disable_depth++;
2280#endif
Alex Deucher54fb2a52015-11-24 14:30:56 -05002281 drm_helper_hpd_irq_event(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002282#ifdef CONFIG_PM
2283 dev->dev->power.disable_depth--;
2284#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002285
2286 if (fbcon) {
2287 amdgpu_fbdev_set_suspend(adev, 0);
2288 console_unlock();
2289 }
2290
2291 return 0;
2292}
2293
Chunming Zhou63fbf422016-07-15 11:19:20 +08002294static bool amdgpu_check_soft_reset(struct amdgpu_device *adev)
2295{
2296 int i;
2297 bool asic_hang = false;
2298
2299 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002300 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou63fbf422016-07-15 11:19:20 +08002301 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002302 if (adev->ip_blocks[i].version->funcs->check_soft_reset)
2303 adev->ip_blocks[i].status.hang =
2304 adev->ip_blocks[i].version->funcs->check_soft_reset(adev);
2305 if (adev->ip_blocks[i].status.hang) {
2306 DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name);
Chunming Zhou63fbf422016-07-15 11:19:20 +08002307 asic_hang = true;
2308 }
2309 }
2310 return asic_hang;
2311}
2312
Baoyou Xie4d446652016-09-18 22:09:35 +08002313static int amdgpu_pre_soft_reset(struct amdgpu_device *adev)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002314{
2315 int i, r = 0;
2316
2317 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002318 if (!adev->ip_blocks[i].status.valid)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002319 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002320 if (adev->ip_blocks[i].status.hang &&
2321 adev->ip_blocks[i].version->funcs->pre_soft_reset) {
2322 r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev);
Chunming Zhoud31a5012016-07-18 10:04:34 +08002323 if (r)
2324 return r;
2325 }
2326 }
2327
2328 return 0;
2329}
2330
Chunming Zhou35d782f2016-07-15 15:57:13 +08002331static bool amdgpu_need_full_reset(struct amdgpu_device *adev)
2332{
Alex Deucherda146d32016-10-13 16:07:03 -04002333 int i;
2334
2335 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002336 if (!adev->ip_blocks[i].status.valid)
Alex Deucherda146d32016-10-13 16:07:03 -04002337 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002338 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) ||
2339 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) ||
2340 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) ||
2341 (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)) {
2342 if (adev->ip_blocks[i].status.hang) {
Alex Deucherda146d32016-10-13 16:07:03 -04002343 DRM_INFO("Some block need full reset!\n");
2344 return true;
2345 }
2346 }
Chunming Zhou35d782f2016-07-15 15:57:13 +08002347 }
2348 return false;
2349}
2350
2351static int amdgpu_soft_reset(struct amdgpu_device *adev)
2352{
2353 int i, r = 0;
2354
2355 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002356 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002357 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002358 if (adev->ip_blocks[i].status.hang &&
2359 adev->ip_blocks[i].version->funcs->soft_reset) {
2360 r = adev->ip_blocks[i].version->funcs->soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002361 if (r)
2362 return r;
2363 }
2364 }
2365
2366 return 0;
2367}
2368
2369static int amdgpu_post_soft_reset(struct amdgpu_device *adev)
2370{
2371 int i, r = 0;
2372
2373 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deuchera1255102016-10-13 17:41:13 -04002374 if (!adev->ip_blocks[i].status.valid)
Chunming Zhou35d782f2016-07-15 15:57:13 +08002375 continue;
Alex Deuchera1255102016-10-13 17:41:13 -04002376 if (adev->ip_blocks[i].status.hang &&
2377 adev->ip_blocks[i].version->funcs->post_soft_reset)
2378 r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002379 if (r)
2380 return r;
2381 }
2382
2383 return 0;
2384}
2385
Chunming Zhou3ad81f12016-08-05 17:30:17 +08002386bool amdgpu_need_backup(struct amdgpu_device *adev)
2387{
2388 if (adev->flags & AMD_IS_APU)
2389 return false;
2390
2391 return amdgpu_lockup_timeout > 0 ? true : false;
2392}
2393
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002394static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
2395 struct amdgpu_ring *ring,
2396 struct amdgpu_bo *bo,
Chris Wilsonf54d1862016-10-25 13:00:45 +01002397 struct dma_fence **fence)
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002398{
2399 uint32_t domain;
2400 int r;
2401
2402 if (!bo->shadow)
2403 return 0;
2404
2405 r = amdgpu_bo_reserve(bo, false);
2406 if (r)
2407 return r;
2408 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
2409 /* if bo has been evicted, then no need to recover */
2410 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
2411 r = amdgpu_bo_restore_from_shadow(adev, ring, bo,
2412 NULL, fence, true);
2413 if (r) {
2414 DRM_ERROR("recover page table failed!\n");
2415 goto err;
2416 }
2417 }
2418err:
2419 amdgpu_bo_unreserve(bo);
2420 return r;
2421}
2422
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002423/**
Monk Liua90ad3c2017-01-23 14:22:08 +08002424 * amdgpu_sriov_gpu_reset - reset the asic
2425 *
2426 * @adev: amdgpu device pointer
2427 * @voluntary: if this reset is requested by guest.
2428 * (true means by guest and false means by HYPERVISOR )
2429 *
2430 * Attempt the reset the GPU if it has hung (all asics).
2431 * for SRIOV case.
2432 * Returns 0 for success or an error on failure.
2433 */
2434int amdgpu_sriov_gpu_reset(struct amdgpu_device *adev, bool voluntary)
2435{
2436 int i, r = 0;
2437 int resched;
2438 struct amdgpu_bo *bo, *tmp;
2439 struct amdgpu_ring *ring;
2440 struct dma_fence *fence = NULL, *next = NULL;
2441
Monk Liu147b5982017-01-25 15:48:01 +08002442 mutex_lock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002443 atomic_inc(&adev->gpu_reset_counter);
Monk Liu1fb37a32017-01-26 15:36:37 +08002444 adev->gfx.in_reset = true;
Monk Liua90ad3c2017-01-23 14:22:08 +08002445
2446 /* block TTM */
2447 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2448
2449 /* block scheduler */
2450 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2451 ring = adev->rings[i];
2452
2453 if (!ring || !ring->sched.thread)
2454 continue;
2455
2456 kthread_park(ring->sched.thread);
2457 amd_sched_hw_job_reset(&ring->sched);
2458 }
2459
2460 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2461 amdgpu_fence_driver_force_completion(adev);
2462
2463 /* request to take full control of GPU before re-initialization */
2464 if (voluntary)
2465 amdgpu_virt_reset_gpu(adev);
2466 else
2467 amdgpu_virt_request_full_gpu(adev, true);
2468
2469
2470 /* Resume IP prior to SMC */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002471 amdgpu_sriov_reinit_early(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002472
2473 /* we need recover gart prior to run SMC/CP/SDMA resume */
2474 amdgpu_ttm_recover_gart(adev);
2475
2476 /* now we are okay to resume SMC/CP/SDMA */
Monk Liue4f0fdc2017-02-09 11:55:49 +08002477 amdgpu_sriov_reinit_late(adev);
Monk Liua90ad3c2017-01-23 14:22:08 +08002478
2479 amdgpu_irq_gpu_reset_resume_helper(adev);
2480
2481 if (amdgpu_ib_ring_tests(adev))
2482 dev_err(adev->dev, "[GPU_RESET] ib ring test failed (%d).\n", r);
2483
2484 /* release full control of GPU after ib test */
2485 amdgpu_virt_release_full_gpu(adev, true);
2486
2487 DRM_INFO("recover vram bo from shadow\n");
2488
2489 ring = adev->mman.buffer_funcs_ring;
2490 mutex_lock(&adev->shadow_list_lock);
2491 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
2492 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2493 if (fence) {
2494 r = dma_fence_wait(fence, false);
2495 if (r) {
2496 WARN(r, "recovery from shadow isn't completed\n");
2497 break;
2498 }
2499 }
2500
2501 dma_fence_put(fence);
2502 fence = next;
2503 }
2504 mutex_unlock(&adev->shadow_list_lock);
2505
2506 if (fence) {
2507 r = dma_fence_wait(fence, false);
2508 if (r)
2509 WARN(r, "recovery from shadow isn't completed\n");
2510 }
2511 dma_fence_put(fence);
2512
2513 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2514 struct amdgpu_ring *ring = adev->rings[i];
2515 if (!ring || !ring->sched.thread)
2516 continue;
2517
2518 amd_sched_job_recovery(&ring->sched);
2519 kthread_unpark(ring->sched.thread);
2520 }
2521
2522 drm_helper_resume_force_mode(adev->ddev);
2523 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
2524 if (r) {
2525 /* bad news, how to tell it to userspace ? */
2526 dev_info(adev->dev, "GPU reset failed\n");
2527 }
2528
Monk Liu1fb37a32017-01-26 15:36:37 +08002529 adev->gfx.in_reset = false;
Monk Liu147b5982017-01-25 15:48:01 +08002530 mutex_unlock(&adev->virt.lock_reset);
Monk Liua90ad3c2017-01-23 14:22:08 +08002531 return r;
2532}
2533
2534/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002535 * amdgpu_gpu_reset - reset the asic
2536 *
2537 * @adev: amdgpu device pointer
2538 *
2539 * Attempt the reset the GPU if it has hung (all asics).
2540 * Returns 0 for success or an error on failure.
2541 */
2542int amdgpu_gpu_reset(struct amdgpu_device *adev)
2543{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002544 int i, r;
2545 int resched;
Chunming Zhou35d782f2016-07-15 15:57:13 +08002546 bool need_full_reset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002547
Xiangliang Yufb140b22016-12-17 22:48:57 +08002548 if (amdgpu_sriov_vf(adev))
Monk Liua90ad3c2017-01-23 14:22:08 +08002549 return amdgpu_sriov_gpu_reset(adev, true);
Xiangliang Yufb140b22016-12-17 22:48:57 +08002550
Chunming Zhou63fbf422016-07-15 11:19:20 +08002551 if (!amdgpu_check_soft_reset(adev)) {
2552 DRM_INFO("No hardware hang detected. Did some blocks stall?\n");
2553 return 0;
2554 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002555
Marek Olšákd94aed52015-05-05 21:13:49 +02002556 atomic_inc(&adev->gpu_reset_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002557
Chunming Zhoua3c47d62016-06-30 16:44:41 +08002558 /* block TTM */
2559 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2560
Chunming Zhou0875dc92016-06-12 15:41:58 +08002561 /* block scheduler */
2562 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2563 struct amdgpu_ring *ring = adev->rings[i];
2564
2565 if (!ring)
2566 continue;
2567 kthread_park(ring->sched.thread);
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002568 amd_sched_hw_job_reset(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002569 }
Chunming Zhou2200eda2016-06-30 16:53:02 +08002570 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2571 amdgpu_fence_driver_force_completion(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002572
Chunming Zhou35d782f2016-07-15 15:57:13 +08002573 need_full_reset = amdgpu_need_full_reset(adev);
2574
2575 if (!need_full_reset) {
2576 amdgpu_pre_soft_reset(adev);
2577 r = amdgpu_soft_reset(adev);
2578 amdgpu_post_soft_reset(adev);
2579 if (r || amdgpu_check_soft_reset(adev)) {
2580 DRM_INFO("soft reset failed, will fallback to full reset!\n");
2581 need_full_reset = true;
2582 }
2583 }
2584
2585 if (need_full_reset) {
Chunming Zhou35d782f2016-07-15 15:57:13 +08002586 r = amdgpu_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002587
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002588retry:
Chunming Zhou35d782f2016-07-15 15:57:13 +08002589 /* Disable fb access */
2590 if (adev->mode_info.num_crtc) {
2591 struct amdgpu_mode_mc_save save;
2592 amdgpu_display_stop_mc_access(adev, &save);
2593 amdgpu_wait_for_idle(adev, AMD_IP_BLOCK_TYPE_GMC);
2594 }
Alex Deuchere695e772016-10-19 14:40:58 -04002595 amdgpu_atombios_scratch_regs_save(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002596 r = amdgpu_asic_reset(adev);
Alex Deuchere695e772016-10-19 14:40:58 -04002597 amdgpu_atombios_scratch_regs_restore(adev);
Chunming Zhou35d782f2016-07-15 15:57:13 +08002598 /* post card */
2599 amdgpu_atom_asic_init(adev->mode_info.atom_context);
Alex Deucherbfa99262016-01-15 11:59:48 -05002600
Chunming Zhou35d782f2016-07-15 15:57:13 +08002601 if (!r) {
2602 dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
2603 r = amdgpu_resume(adev);
2604 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002605 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002606 if (!r) {
Chunming Zhoue72cfd52016-07-27 13:15:20 +08002607 amdgpu_irq_gpu_reset_resume_helper(adev);
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002608 if (need_full_reset && amdgpu_need_backup(adev)) {
2609 r = amdgpu_ttm_recover_gart(adev);
2610 if (r)
2611 DRM_ERROR("gart recovery failed!!!\n");
2612 }
Chunming Zhou1f465082016-06-30 15:02:26 +08002613 r = amdgpu_ib_ring_tests(adev);
2614 if (r) {
2615 dev_err(adev->dev, "ib ring test failed (%d).\n", r);
Chunming Zhou40019dc2016-06-29 16:01:49 +08002616 r = amdgpu_suspend(adev);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002617 need_full_reset = true;
Chunming Zhou40019dc2016-06-29 16:01:49 +08002618 goto retry;
Chunming Zhou1f465082016-06-30 15:02:26 +08002619 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002620 /**
2621 * recovery vm page tables, since we cannot depend on VRAM is
2622 * consistent after gpu full reset.
2623 */
2624 if (need_full_reset && amdgpu_need_backup(adev)) {
2625 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
2626 struct amdgpu_bo *bo, *tmp;
Chris Wilsonf54d1862016-10-25 13:00:45 +01002627 struct dma_fence *fence = NULL, *next = NULL;
Chunming Zhou1f465082016-06-30 15:02:26 +08002628
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002629 DRM_INFO("recover vram bo from shadow\n");
2630 mutex_lock(&adev->shadow_list_lock);
2631 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
2632 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2633 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002634 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002635 if (r) {
Monk Liu1d7b17b2017-01-22 18:52:56 +08002636 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002637 break;
2638 }
2639 }
2640
Chris Wilsonf54d1862016-10-25 13:00:45 +01002641 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002642 fence = next;
2643 }
2644 mutex_unlock(&adev->shadow_list_lock);
2645 if (fence) {
Chris Wilsonf54d1862016-10-25 13:00:45 +01002646 r = dma_fence_wait(fence, false);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002647 if (r)
Monk Liu1d7b17b2017-01-22 18:52:56 +08002648 WARN(r, "recovery from shadow isn't completed\n");
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002649 }
Chris Wilsonf54d1862016-10-25 13:00:45 +01002650 dma_fence_put(fence);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002651 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002652 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2653 struct amdgpu_ring *ring = adev->rings[i];
2654 if (!ring)
2655 continue;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002656
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002657 amd_sched_job_recovery(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002658 kthread_unpark(ring->sched.thread);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002659 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002660 } else {
Chunming Zhou2200eda2016-06-30 16:53:02 +08002661 dev_err(adev->dev, "asic resume failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002662 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
Chunming Zhou0875dc92016-06-12 15:41:58 +08002663 if (adev->rings[i]) {
2664 kthread_unpark(adev->rings[i]->sched.thread);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002665 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002666 }
2667 }
2668
2669 drm_helper_resume_force_mode(adev->ddev);
2670
2671 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
2672 if (r) {
2673 /* bad news, how to tell it to userspace ? */
2674 dev_info(adev->dev, "GPU reset failed\n");
2675 }
2676
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002677 return r;
2678}
2679
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002680void amdgpu_get_pcie_info(struct amdgpu_device *adev)
2681{
2682 u32 mask;
2683 int ret;
2684
Alex Deuchercd474ba2016-02-04 10:21:23 -05002685 if (amdgpu_pcie_gen_cap)
2686 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
2687
2688 if (amdgpu_pcie_lane_cap)
2689 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
2690
2691 /* covers APUs as well */
2692 if (pci_is_root_bus(adev->pdev->bus)) {
2693 if (adev->pm.pcie_gen_mask == 0)
2694 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2695 if (adev->pm.pcie_mlw_mask == 0)
2696 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002697 return;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002698 }
Alex Deuchercd474ba2016-02-04 10:21:23 -05002699
2700 if (adev->pm.pcie_gen_mask == 0) {
2701 ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
2702 if (!ret) {
2703 adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
2704 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
2705 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
2706
2707 if (mask & DRM_PCIE_SPEED_25)
2708 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
2709 if (mask & DRM_PCIE_SPEED_50)
2710 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
2711 if (mask & DRM_PCIE_SPEED_80)
2712 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
2713 } else {
2714 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2715 }
2716 }
2717 if (adev->pm.pcie_mlw_mask == 0) {
2718 ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
2719 if (!ret) {
2720 switch (mask) {
2721 case 32:
2722 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
2723 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2724 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2725 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2726 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2727 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2728 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2729 break;
2730 case 16:
2731 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2732 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2733 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2734 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2735 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2736 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2737 break;
2738 case 12:
2739 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2740 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2741 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2742 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2743 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2744 break;
2745 case 8:
2746 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2747 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2748 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2749 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2750 break;
2751 case 4:
2752 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2753 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2754 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2755 break;
2756 case 2:
2757 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2758 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2759 break;
2760 case 1:
2761 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
2762 break;
2763 default:
2764 break;
2765 }
2766 } else {
2767 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002768 }
2769 }
2770}
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002771
2772/*
2773 * Debugfs
2774 */
2775int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04002776 const struct drm_info_list *files,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002777 unsigned nfiles)
2778{
2779 unsigned i;
2780
2781 for (i = 0; i < adev->debugfs_count; i++) {
2782 if (adev->debugfs[i].files == files) {
2783 /* Already registered */
2784 return 0;
2785 }
2786 }
2787
2788 i = adev->debugfs_count + 1;
2789 if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
2790 DRM_ERROR("Reached maximum number of debugfs components.\n");
2791 DRM_ERROR("Report so we increase "
2792 "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
2793 return -EINVAL;
2794 }
2795 adev->debugfs[adev->debugfs_count].files = files;
2796 adev->debugfs[adev->debugfs_count].num_files = nfiles;
2797 adev->debugfs_count = i;
2798#if defined(CONFIG_DEBUG_FS)
2799 drm_debugfs_create_files(files, nfiles,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002800 adev->ddev->primary->debugfs_root,
2801 adev->ddev->primary);
2802#endif
2803 return 0;
2804}
2805
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002806#if defined(CONFIG_DEBUG_FS)
2807
2808static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
2809 size_t size, loff_t *pos)
2810{
Al Viro45063092016-12-04 18:24:56 -05002811 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002812 ssize_t result = 0;
2813 int r;
Tom St Denisbd122672016-07-28 09:39:22 -04002814 bool pm_pg_lock, use_bank;
Tom St Denis566281592016-06-27 11:55:07 -04002815 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002816
2817 if (size & 0x3 || *pos & 0x3)
2818 return -EINVAL;
2819
Tom St Denisbd122672016-07-28 09:39:22 -04002820 /* are we reading registers for which a PG lock is necessary? */
2821 pm_pg_lock = (*pos >> 23) & 1;
2822
Tom St Denis566281592016-06-27 11:55:07 -04002823 if (*pos & (1ULL << 62)) {
2824 se_bank = (*pos >> 24) & 0x3FF;
2825 sh_bank = (*pos >> 34) & 0x3FF;
2826 instance_bank = (*pos >> 44) & 0x3FF;
Tom St Denis32977f92016-10-09 07:41:26 -04002827
2828 if (se_bank == 0x3FF)
2829 se_bank = 0xFFFFFFFF;
2830 if (sh_bank == 0x3FF)
2831 sh_bank = 0xFFFFFFFF;
2832 if (instance_bank == 0x3FF)
2833 instance_bank = 0xFFFFFFFF;
Tom St Denis566281592016-06-27 11:55:07 -04002834 use_bank = 1;
Tom St Denis566281592016-06-27 11:55:07 -04002835 } else {
2836 use_bank = 0;
2837 }
2838
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04002839 *pos &= (1UL << 22) - 1;
Tom St Denisbd122672016-07-28 09:39:22 -04002840
Tom St Denis566281592016-06-27 11:55:07 -04002841 if (use_bank) {
Tom St Denis32977f92016-10-09 07:41:26 -04002842 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
2843 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
Tom St Denis566281592016-06-27 11:55:07 -04002844 return -EINVAL;
2845 mutex_lock(&adev->grbm_idx_mutex);
2846 amdgpu_gfx_select_se_sh(adev, se_bank,
2847 sh_bank, instance_bank);
2848 }
2849
Tom St Denisbd122672016-07-28 09:39:22 -04002850 if (pm_pg_lock)
2851 mutex_lock(&adev->pm.mutex);
2852
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002853 while (size) {
2854 uint32_t value;
2855
2856 if (*pos > adev->rmmio_size)
Tom St Denis566281592016-06-27 11:55:07 -04002857 goto end;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002858
2859 value = RREG32(*pos >> 2);
2860 r = put_user(value, (uint32_t *)buf);
Tom St Denis566281592016-06-27 11:55:07 -04002861 if (r) {
2862 result = r;
2863 goto end;
2864 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002865
2866 result += 4;
2867 buf += 4;
2868 *pos += 4;
2869 size -= 4;
2870 }
2871
Tom St Denis566281592016-06-27 11:55:07 -04002872end:
2873 if (use_bank) {
2874 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
2875 mutex_unlock(&adev->grbm_idx_mutex);
2876 }
2877
Tom St Denisbd122672016-07-28 09:39:22 -04002878 if (pm_pg_lock)
2879 mutex_unlock(&adev->pm.mutex);
2880
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002881 return result;
2882}
2883
2884static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
2885 size_t size, loff_t *pos)
2886{
Al Viro45063092016-12-04 18:24:56 -05002887 struct amdgpu_device *adev = file_inode(f)->i_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002888 ssize_t result = 0;
2889 int r;
Tom St Denis394fdde2016-10-10 07:31:23 -04002890 bool pm_pg_lock, use_bank;
2891 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002892
2893 if (size & 0x3 || *pos & 0x3)
2894 return -EINVAL;
2895
Tom St Denis394fdde2016-10-10 07:31:23 -04002896 /* are we reading registers for which a PG lock is necessary? */
2897 pm_pg_lock = (*pos >> 23) & 1;
2898
2899 if (*pos & (1ULL << 62)) {
2900 se_bank = (*pos >> 24) & 0x3FF;
2901 sh_bank = (*pos >> 34) & 0x3FF;
2902 instance_bank = (*pos >> 44) & 0x3FF;
2903
2904 if (se_bank == 0x3FF)
2905 se_bank = 0xFFFFFFFF;
2906 if (sh_bank == 0x3FF)
2907 sh_bank = 0xFFFFFFFF;
2908 if (instance_bank == 0x3FF)
2909 instance_bank = 0xFFFFFFFF;
2910 use_bank = 1;
2911 } else {
2912 use_bank = 0;
2913 }
2914
Tom St Denis801a6aa9a62017-03-15 05:34:25 -04002915 *pos &= (1UL << 22) - 1;
Tom St Denis394fdde2016-10-10 07:31:23 -04002916
2917 if (use_bank) {
2918 if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) ||
2919 (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines))
2920 return -EINVAL;
2921 mutex_lock(&adev->grbm_idx_mutex);
2922 amdgpu_gfx_select_se_sh(adev, se_bank,
2923 sh_bank, instance_bank);
2924 }
2925
2926 if (pm_pg_lock)
2927 mutex_lock(&adev->pm.mutex);
2928
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002929 while (size) {
2930 uint32_t value;
2931
2932 if (*pos > adev->rmmio_size)
2933 return result;
2934
2935 r = get_user(value, (uint32_t *)buf);
2936 if (r)
2937 return r;
2938
2939 WREG32(*pos >> 2, value);
2940
2941 result += 4;
2942 buf += 4;
2943 *pos += 4;
2944 size -= 4;
2945 }
2946
Tom St Denis394fdde2016-10-10 07:31:23 -04002947 if (use_bank) {
2948 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
2949 mutex_unlock(&adev->grbm_idx_mutex);
2950 }
2951
2952 if (pm_pg_lock)
2953 mutex_unlock(&adev->pm.mutex);
2954
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002955 return result;
2956}
2957
Tom St Denisadcec282016-04-15 13:08:44 -04002958static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
2959 size_t size, loff_t *pos)
2960{
Al Viro45063092016-12-04 18:24:56 -05002961 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04002962 ssize_t result = 0;
2963 int r;
2964
2965 if (size & 0x3 || *pos & 0x3)
2966 return -EINVAL;
2967
2968 while (size) {
2969 uint32_t value;
2970
2971 value = RREG32_PCIE(*pos >> 2);
2972 r = put_user(value, (uint32_t *)buf);
2973 if (r)
2974 return r;
2975
2976 result += 4;
2977 buf += 4;
2978 *pos += 4;
2979 size -= 4;
2980 }
2981
2982 return result;
2983}
2984
2985static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
2986 size_t size, loff_t *pos)
2987{
Al Viro45063092016-12-04 18:24:56 -05002988 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04002989 ssize_t result = 0;
2990 int r;
2991
2992 if (size & 0x3 || *pos & 0x3)
2993 return -EINVAL;
2994
2995 while (size) {
2996 uint32_t value;
2997
2998 r = get_user(value, (uint32_t *)buf);
2999 if (r)
3000 return r;
3001
3002 WREG32_PCIE(*pos >> 2, value);
3003
3004 result += 4;
3005 buf += 4;
3006 *pos += 4;
3007 size -= 4;
3008 }
3009
3010 return result;
3011}
3012
3013static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
3014 size_t size, loff_t *pos)
3015{
Al Viro45063092016-12-04 18:24:56 -05003016 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003017 ssize_t result = 0;
3018 int r;
3019
3020 if (size & 0x3 || *pos & 0x3)
3021 return -EINVAL;
3022
3023 while (size) {
3024 uint32_t value;
3025
3026 value = RREG32_DIDT(*pos >> 2);
3027 r = put_user(value, (uint32_t *)buf);
3028 if (r)
3029 return r;
3030
3031 result += 4;
3032 buf += 4;
3033 *pos += 4;
3034 size -= 4;
3035 }
3036
3037 return result;
3038}
3039
3040static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
3041 size_t size, loff_t *pos)
3042{
Al Viro45063092016-12-04 18:24:56 -05003043 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003044 ssize_t result = 0;
3045 int r;
3046
3047 if (size & 0x3 || *pos & 0x3)
3048 return -EINVAL;
3049
3050 while (size) {
3051 uint32_t value;
3052
3053 r = get_user(value, (uint32_t *)buf);
3054 if (r)
3055 return r;
3056
3057 WREG32_DIDT(*pos >> 2, value);
3058
3059 result += 4;
3060 buf += 4;
3061 *pos += 4;
3062 size -= 4;
3063 }
3064
3065 return result;
3066}
3067
3068static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
3069 size_t size, loff_t *pos)
3070{
Al Viro45063092016-12-04 18:24:56 -05003071 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003072 ssize_t result = 0;
3073 int r;
3074
3075 if (size & 0x3 || *pos & 0x3)
3076 return -EINVAL;
3077
3078 while (size) {
3079 uint32_t value;
3080
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003081 value = RREG32_SMC(*pos);
Tom St Denisadcec282016-04-15 13:08:44 -04003082 r = put_user(value, (uint32_t *)buf);
3083 if (r)
3084 return r;
3085
3086 result += 4;
3087 buf += 4;
3088 *pos += 4;
3089 size -= 4;
3090 }
3091
3092 return result;
3093}
3094
3095static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
3096 size_t size, loff_t *pos)
3097{
Al Viro45063092016-12-04 18:24:56 -05003098 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denisadcec282016-04-15 13:08:44 -04003099 ssize_t result = 0;
3100 int r;
3101
3102 if (size & 0x3 || *pos & 0x3)
3103 return -EINVAL;
3104
3105 while (size) {
3106 uint32_t value;
3107
3108 r = get_user(value, (uint32_t *)buf);
3109 if (r)
3110 return r;
3111
Tom St Denis6fc0dea2016-08-29 08:39:29 -04003112 WREG32_SMC(*pos, value);
Tom St Denisadcec282016-04-15 13:08:44 -04003113
3114 result += 4;
3115 buf += 4;
3116 *pos += 4;
3117 size -= 4;
3118 }
3119
3120 return result;
3121}
3122
Tom St Denis1e051412016-06-27 09:57:18 -04003123static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
3124 size_t size, loff_t *pos)
3125{
Al Viro45063092016-12-04 18:24:56 -05003126 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis1e051412016-06-27 09:57:18 -04003127 ssize_t result = 0;
3128 int r;
3129 uint32_t *config, no_regs = 0;
3130
3131 if (size & 0x3 || *pos & 0x3)
3132 return -EINVAL;
3133
Markus Elfringecab7662016-09-18 17:00:52 +02003134 config = kmalloc_array(256, sizeof(*config), GFP_KERNEL);
Tom St Denis1e051412016-06-27 09:57:18 -04003135 if (!config)
3136 return -ENOMEM;
3137
3138 /* version, increment each time something is added */
Tom St Denis9a999352017-01-18 13:01:25 -05003139 config[no_regs++] = 3;
Tom St Denis1e051412016-06-27 09:57:18 -04003140 config[no_regs++] = adev->gfx.config.max_shader_engines;
3141 config[no_regs++] = adev->gfx.config.max_tile_pipes;
3142 config[no_regs++] = adev->gfx.config.max_cu_per_sh;
3143 config[no_regs++] = adev->gfx.config.max_sh_per_se;
3144 config[no_regs++] = adev->gfx.config.max_backends_per_se;
3145 config[no_regs++] = adev->gfx.config.max_texture_channel_caches;
3146 config[no_regs++] = adev->gfx.config.max_gprs;
3147 config[no_regs++] = adev->gfx.config.max_gs_threads;
3148 config[no_regs++] = adev->gfx.config.max_hw_contexts;
3149 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend;
3150 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend;
3151 config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size;
3152 config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size;
3153 config[no_regs++] = adev->gfx.config.num_tile_pipes;
3154 config[no_regs++] = adev->gfx.config.backend_enable_mask;
3155 config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes;
3156 config[no_regs++] = adev->gfx.config.mem_row_size_in_kb;
3157 config[no_regs++] = adev->gfx.config.shader_engine_tile_size;
3158 config[no_regs++] = adev->gfx.config.num_gpus;
3159 config[no_regs++] = adev->gfx.config.multi_gpu_tile_size;
3160 config[no_regs++] = adev->gfx.config.mc_arb_ramcfg;
3161 config[no_regs++] = adev->gfx.config.gb_addr_config;
3162 config[no_regs++] = adev->gfx.config.num_rbs;
3163
Tom St Denis89a8f302016-08-12 15:14:31 -04003164 /* rev==1 */
3165 config[no_regs++] = adev->rev_id;
3166 config[no_regs++] = adev->pg_flags;
3167 config[no_regs++] = adev->cg_flags;
3168
Tom St Denise9f11dc2016-08-17 12:00:51 -04003169 /* rev==2 */
3170 config[no_regs++] = adev->family;
3171 config[no_regs++] = adev->external_rev_id;
3172
Tom St Denis9a999352017-01-18 13:01:25 -05003173 /* rev==3 */
3174 config[no_regs++] = adev->pdev->device;
3175 config[no_regs++] = adev->pdev->revision;
3176 config[no_regs++] = adev->pdev->subsystem_device;
3177 config[no_regs++] = adev->pdev->subsystem_vendor;
3178
Tom St Denis1e051412016-06-27 09:57:18 -04003179 while (size && (*pos < no_regs * 4)) {
3180 uint32_t value;
3181
3182 value = config[*pos >> 2];
3183 r = put_user(value, (uint32_t *)buf);
3184 if (r) {
3185 kfree(config);
3186 return r;
3187 }
3188
3189 result += 4;
3190 buf += 4;
3191 *pos += 4;
3192 size -= 4;
3193 }
3194
3195 kfree(config);
3196 return result;
3197}
3198
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003199static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf,
3200 size_t size, loff_t *pos)
3201{
Al Viro45063092016-12-04 18:24:56 -05003202 struct amdgpu_device *adev = file_inode(f)->i_private;
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003203 int idx, x, outsize, r, valuesize;
3204 uint32_t values[16];
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003205
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003206 if (size & 3 || *pos & 0x3)
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003207 return -EINVAL;
3208
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003209 if (amdgpu_dpm == 0)
3210 return -EINVAL;
3211
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003212 /* convert offset to sensor number */
3213 idx = *pos >> 2;
3214
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003215 valuesize = sizeof(values);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003216 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003217 r = adev->powerplay.pp_funcs->read_sensor(adev->powerplay.pp_handle, idx, &values[0], &valuesize);
Samuel Pitoiset3cbc6142017-02-15 19:32:29 +01003218 else if (adev->pm.funcs && adev->pm.funcs->read_sensor)
3219 r = adev->pm.funcs->read_sensor(adev, idx, &values[0],
3220 &valuesize);
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003221 else
3222 return -EINVAL;
3223
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003224 if (size > valuesize)
3225 return -EINVAL;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003226
Tom St Denis9f8df7d2017-02-09 14:29:01 -05003227 outsize = 0;
3228 x = 0;
3229 if (!r) {
3230 while (size) {
3231 r = put_user(values[x++], (int32_t *)buf);
3232 buf += 4;
3233 size -= 4;
3234 outsize += 4;
3235 }
3236 }
3237
3238 return !r ? outsize : r;
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003239}
Tom St Denis1e051412016-06-27 09:57:18 -04003240
Tom St Denis273d7aa2016-10-11 14:48:55 -04003241static ssize_t amdgpu_debugfs_wave_read(struct file *f, char __user *buf,
3242 size_t size, loff_t *pos)
3243{
3244 struct amdgpu_device *adev = f->f_inode->i_private;
3245 int r, x;
3246 ssize_t result=0;
Tom St Denis472259f2016-10-14 09:49:09 -04003247 uint32_t offset, se, sh, cu, wave, simd, data[32];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003248
3249 if (size & 3 || *pos & 3)
3250 return -EINVAL;
3251
3252 /* decode offset */
3253 offset = (*pos & 0x7F);
3254 se = ((*pos >> 7) & 0xFF);
3255 sh = ((*pos >> 15) & 0xFF);
3256 cu = ((*pos >> 23) & 0xFF);
3257 wave = ((*pos >> 31) & 0xFF);
3258 simd = ((*pos >> 37) & 0xFF);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003259
3260 /* switch to the specific se/sh/cu */
3261 mutex_lock(&adev->grbm_idx_mutex);
3262 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3263
3264 x = 0;
Tom St Denis472259f2016-10-14 09:49:09 -04003265 if (adev->gfx.funcs->read_wave_data)
3266 adev->gfx.funcs->read_wave_data(adev, simd, wave, data, &x);
Tom St Denis273d7aa2016-10-11 14:48:55 -04003267
3268 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3269 mutex_unlock(&adev->grbm_idx_mutex);
3270
Tom St Denis5ecfb3b2016-10-13 12:15:03 -04003271 if (!x)
3272 return -EINVAL;
3273
Tom St Denis472259f2016-10-14 09:49:09 -04003274 while (size && (offset < x * 4)) {
Tom St Denis273d7aa2016-10-11 14:48:55 -04003275 uint32_t value;
3276
Tom St Denis472259f2016-10-14 09:49:09 -04003277 value = data[offset >> 2];
Tom St Denis273d7aa2016-10-11 14:48:55 -04003278 r = put_user(value, (uint32_t *)buf);
3279 if (r)
3280 return r;
3281
3282 result += 4;
3283 buf += 4;
Tom St Denis472259f2016-10-14 09:49:09 -04003284 offset += 4;
Tom St Denis273d7aa2016-10-11 14:48:55 -04003285 size -= 4;
3286 }
3287
3288 return result;
3289}
3290
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003291static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf,
3292 size_t size, loff_t *pos)
3293{
3294 struct amdgpu_device *adev = f->f_inode->i_private;
3295 int r;
3296 ssize_t result = 0;
3297 uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data;
3298
3299 if (size & 3 || *pos & 3)
3300 return -EINVAL;
3301
3302 /* decode offset */
3303 offset = (*pos & 0xFFF); /* in dwords */
3304 se = ((*pos >> 12) & 0xFF);
3305 sh = ((*pos >> 20) & 0xFF);
3306 cu = ((*pos >> 28) & 0xFF);
3307 wave = ((*pos >> 36) & 0xFF);
3308 simd = ((*pos >> 44) & 0xFF);
3309 thread = ((*pos >> 52) & 0xFF);
3310 bank = ((*pos >> 60) & 1);
3311
3312 data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL);
3313 if (!data)
3314 return -ENOMEM;
3315
3316 /* switch to the specific se/sh/cu */
3317 mutex_lock(&adev->grbm_idx_mutex);
3318 amdgpu_gfx_select_se_sh(adev, se, sh, cu);
3319
3320 if (bank == 0) {
3321 if (adev->gfx.funcs->read_wave_vgprs)
3322 adev->gfx.funcs->read_wave_vgprs(adev, simd, wave, thread, offset, size>>2, data);
3323 } else {
3324 if (adev->gfx.funcs->read_wave_sgprs)
3325 adev->gfx.funcs->read_wave_sgprs(adev, simd, wave, offset, size>>2, data);
3326 }
3327
3328 amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
3329 mutex_unlock(&adev->grbm_idx_mutex);
3330
3331 while (size) {
3332 uint32_t value;
3333
3334 value = data[offset++];
3335 r = put_user(value, (uint32_t *)buf);
3336 if (r) {
3337 result = r;
3338 goto err;
3339 }
3340
3341 result += 4;
3342 buf += 4;
3343 size -= 4;
3344 }
3345
3346err:
3347 kfree(data);
3348 return result;
3349}
3350
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003351static const struct file_operations amdgpu_debugfs_regs_fops = {
3352 .owner = THIS_MODULE,
3353 .read = amdgpu_debugfs_regs_read,
3354 .write = amdgpu_debugfs_regs_write,
3355 .llseek = default_llseek
3356};
Tom St Denisadcec282016-04-15 13:08:44 -04003357static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
3358 .owner = THIS_MODULE,
3359 .read = amdgpu_debugfs_regs_didt_read,
3360 .write = amdgpu_debugfs_regs_didt_write,
3361 .llseek = default_llseek
3362};
3363static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
3364 .owner = THIS_MODULE,
3365 .read = amdgpu_debugfs_regs_pcie_read,
3366 .write = amdgpu_debugfs_regs_pcie_write,
3367 .llseek = default_llseek
3368};
3369static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
3370 .owner = THIS_MODULE,
3371 .read = amdgpu_debugfs_regs_smc_read,
3372 .write = amdgpu_debugfs_regs_smc_write,
3373 .llseek = default_llseek
3374};
3375
Tom St Denis1e051412016-06-27 09:57:18 -04003376static const struct file_operations amdgpu_debugfs_gca_config_fops = {
3377 .owner = THIS_MODULE,
3378 .read = amdgpu_debugfs_gca_config_read,
3379 .llseek = default_llseek
3380};
3381
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003382static const struct file_operations amdgpu_debugfs_sensors_fops = {
3383 .owner = THIS_MODULE,
3384 .read = amdgpu_debugfs_sensor_read,
3385 .llseek = default_llseek
3386};
3387
Tom St Denis273d7aa2016-10-11 14:48:55 -04003388static const struct file_operations amdgpu_debugfs_wave_fops = {
3389 .owner = THIS_MODULE,
3390 .read = amdgpu_debugfs_wave_read,
3391 .llseek = default_llseek
3392};
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003393static const struct file_operations amdgpu_debugfs_gpr_fops = {
3394 .owner = THIS_MODULE,
3395 .read = amdgpu_debugfs_gpr_read,
3396 .llseek = default_llseek
3397};
Tom St Denis273d7aa2016-10-11 14:48:55 -04003398
Tom St Denisadcec282016-04-15 13:08:44 -04003399static const struct file_operations *debugfs_regs[] = {
3400 &amdgpu_debugfs_regs_fops,
3401 &amdgpu_debugfs_regs_didt_fops,
3402 &amdgpu_debugfs_regs_pcie_fops,
3403 &amdgpu_debugfs_regs_smc_fops,
Tom St Denis1e051412016-06-27 09:57:18 -04003404 &amdgpu_debugfs_gca_config_fops,
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003405 &amdgpu_debugfs_sensors_fops,
Tom St Denis273d7aa2016-10-11 14:48:55 -04003406 &amdgpu_debugfs_wave_fops,
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003407 &amdgpu_debugfs_gpr_fops,
Tom St Denisadcec282016-04-15 13:08:44 -04003408};
3409
3410static const char *debugfs_regs_names[] = {
3411 "amdgpu_regs",
3412 "amdgpu_regs_didt",
3413 "amdgpu_regs_pcie",
3414 "amdgpu_regs_smc",
Tom St Denis1e051412016-06-27 09:57:18 -04003415 "amdgpu_gca_config",
Tom St Denisf2cdaf22016-09-15 10:08:44 -04003416 "amdgpu_sensors",
Tom St Denis273d7aa2016-10-11 14:48:55 -04003417 "amdgpu_wave",
Tom St Denisc5a60ce2016-12-05 11:39:19 -05003418 "amdgpu_gpr",
Tom St Denisadcec282016-04-15 13:08:44 -04003419};
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003420
3421static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3422{
3423 struct drm_minor *minor = adev->ddev->primary;
3424 struct dentry *ent, *root = minor->debugfs_root;
Tom St Denisadcec282016-04-15 13:08:44 -04003425 unsigned i, j;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003426
Tom St Denisadcec282016-04-15 13:08:44 -04003427 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3428 ent = debugfs_create_file(debugfs_regs_names[i],
3429 S_IFREG | S_IRUGO, root,
3430 adev, debugfs_regs[i]);
3431 if (IS_ERR(ent)) {
3432 for (j = 0; j < i; j++) {
3433 debugfs_remove(adev->debugfs_regs[i]);
3434 adev->debugfs_regs[i] = NULL;
3435 }
3436 return PTR_ERR(ent);
3437 }
3438
3439 if (!i)
3440 i_size_write(ent->d_inode, adev->rmmio_size);
3441 adev->debugfs_regs[i] = ent;
3442 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003443
3444 return 0;
3445}
3446
3447static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
3448{
Tom St Denisadcec282016-04-15 13:08:44 -04003449 unsigned i;
3450
3451 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
3452 if (adev->debugfs_regs[i]) {
3453 debugfs_remove(adev->debugfs_regs[i]);
3454 adev->debugfs_regs[i] = NULL;
3455 }
3456 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003457}
3458
3459int amdgpu_debugfs_init(struct drm_minor *minor)
3460{
3461 return 0;
3462}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003463#else
3464static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3465{
3466 return 0;
3467}
3468static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003469#endif