blob: afeb7ab16d09b456564aac1ee15c90b49c336be1 [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 Deucherd0dd7f02015-11-11 19:45:06 -050043#include "amd_pcie.h"
Ken Wang33f34802016-01-21 17:29:41 +080044#ifdef CONFIG_DRM_AMDGPU_SI
45#include "si.h"
46#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -040047#ifdef CONFIG_DRM_AMDGPU_CIK
48#include "cik.h"
49#endif
Alex Deucheraaa36a92015-04-20 17:31:14 -040050#include "vi.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040051#include "bif/bif_4_1_d.h"
Emily Deng9accf2f2016-08-10 16:01:25 +080052#include <linux/pci.h>
Monk Liubec86372016-09-14 19:38:08 +080053#include <linux/firmware.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040054
55static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
56static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
57
58static const char *amdgpu_asic_name[] = {
Ken Wangda69c1612016-01-21 19:08:55 +080059 "TAHITI",
60 "PITCAIRN",
61 "VERDE",
62 "OLAND",
63 "HAINAN",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040064 "BONAIRE",
65 "KAVERI",
66 "KABINI",
67 "HAWAII",
68 "MULLINS",
69 "TOPAZ",
70 "TONGA",
David Zhang48299f92015-07-08 01:05:16 +080071 "FIJI",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040072 "CARRIZO",
Samuel Li139f4912015-10-08 14:50:27 -040073 "STONEY",
Flora Cui2cc0c0b2016-03-14 18:33:29 -040074 "POLARIS10",
75 "POLARIS11",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040076 "LAST",
77};
78
79bool amdgpu_device_is_px(struct drm_device *dev)
80{
81 struct amdgpu_device *adev = dev->dev_private;
82
Jammy Zhou2f7d10b2015-07-22 11:29:01 +080083 if (adev->flags & AMD_IS_PX)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040084 return true;
85 return false;
86}
87
88/*
89 * MMIO register access helper functions.
90 */
91uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
92 bool always_indirect)
93{
Tom St Denisf4b373f2016-05-31 08:02:27 -040094 uint32_t ret;
95
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096 if ((reg * 4) < adev->rmmio_size && !always_indirect)
Tom St Denisf4b373f2016-05-31 08:02:27 -040097 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
Alex Deucherd38ceaf2015-04-20 16:55:21 -040098 else {
99 unsigned long flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400100
101 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
102 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
103 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
104 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400105 }
Tom St Denisf4b373f2016-05-31 08:02:27 -0400106 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
107 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400108}
109
110void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
111 bool always_indirect)
112{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400113 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
Monk Liu4e99a442016-03-31 13:26:59 +0800114
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115 if ((reg * 4) < adev->rmmio_size && !always_indirect)
116 writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
117 else {
118 unsigned long flags;
119
120 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
121 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
122 writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
123 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
124 }
125}
126
127u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
128{
129 if ((reg * 4) < adev->rio_mem_size)
130 return ioread32(adev->rio_mem + (reg * 4));
131 else {
132 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
133 return ioread32(adev->rio_mem + (mmMM_DATA * 4));
134 }
135}
136
137void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
138{
139
140 if ((reg * 4) < adev->rio_mem_size)
141 iowrite32(v, adev->rio_mem + (reg * 4));
142 else {
143 iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
144 iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
145 }
146}
147
148/**
149 * amdgpu_mm_rdoorbell - read a doorbell dword
150 *
151 * @adev: amdgpu_device pointer
152 * @index: doorbell index
153 *
154 * Returns the value in the doorbell aperture at the
155 * requested doorbell index (CIK).
156 */
157u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
158{
159 if (index < adev->doorbell.num_doorbells) {
160 return readl(adev->doorbell.ptr + index);
161 } else {
162 DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
163 return 0;
164 }
165}
166
167/**
168 * amdgpu_mm_wdoorbell - write a doorbell dword
169 *
170 * @adev: amdgpu_device pointer
171 * @index: doorbell index
172 * @v: value to write
173 *
174 * Writes @v to the doorbell aperture at the
175 * requested doorbell index (CIK).
176 */
177void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
178{
179 if (index < adev->doorbell.num_doorbells) {
180 writel(v, adev->doorbell.ptr + index);
181 } else {
182 DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
183 }
184}
185
186/**
187 * amdgpu_invalid_rreg - dummy reg read function
188 *
189 * @adev: amdgpu device pointer
190 * @reg: offset of register
191 *
192 * Dummy register read function. Used for register blocks
193 * that certain asics don't have (all asics).
194 * Returns the value in the register.
195 */
196static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
197{
198 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
199 BUG();
200 return 0;
201}
202
203/**
204 * amdgpu_invalid_wreg - dummy reg write function
205 *
206 * @adev: amdgpu device pointer
207 * @reg: offset of register
208 * @v: value to write to the register
209 *
210 * Dummy register read function. Used for register blocks
211 * that certain asics don't have (all asics).
212 */
213static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
214{
215 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
216 reg, v);
217 BUG();
218}
219
220/**
221 * amdgpu_block_invalid_rreg - dummy reg read function
222 *
223 * @adev: amdgpu device pointer
224 * @block: offset of instance
225 * @reg: offset of register
226 *
227 * Dummy register read function. Used for register blocks
228 * that certain asics don't have (all asics).
229 * Returns the value in the register.
230 */
231static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
232 uint32_t block, uint32_t reg)
233{
234 DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
235 reg, block);
236 BUG();
237 return 0;
238}
239
240/**
241 * amdgpu_block_invalid_wreg - dummy reg write function
242 *
243 * @adev: amdgpu device pointer
244 * @block: offset of instance
245 * @reg: offset of register
246 * @v: value to write to the register
247 *
248 * Dummy register read function. Used for register blocks
249 * that certain asics don't have (all asics).
250 */
251static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
252 uint32_t block,
253 uint32_t reg, uint32_t v)
254{
255 DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
256 reg, block, v);
257 BUG();
258}
259
260static int amdgpu_vram_scratch_init(struct amdgpu_device *adev)
261{
262 int r;
263
264 if (adev->vram_scratch.robj == NULL) {
265 r = amdgpu_bo_create(adev, AMDGPU_GPU_PAGE_SIZE,
Alex Deucher857d9132015-08-27 00:14:16 -0400266 PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_VRAM,
Christian König03f48dd2016-08-15 17:00:22 +0200267 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
268 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS,
Christian König72d76682015-09-03 17:34:59 +0200269 NULL, NULL, &adev->vram_scratch.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400270 if (r) {
271 return r;
272 }
273 }
274
275 r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
276 if (unlikely(r != 0))
277 return r;
278 r = amdgpu_bo_pin(adev->vram_scratch.robj,
279 AMDGPU_GEM_DOMAIN_VRAM, &adev->vram_scratch.gpu_addr);
280 if (r) {
281 amdgpu_bo_unreserve(adev->vram_scratch.robj);
282 return r;
283 }
284 r = amdgpu_bo_kmap(adev->vram_scratch.robj,
285 (void **)&adev->vram_scratch.ptr);
286 if (r)
287 amdgpu_bo_unpin(adev->vram_scratch.robj);
288 amdgpu_bo_unreserve(adev->vram_scratch.robj);
289
290 return r;
291}
292
293static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev)
294{
295 int r;
296
297 if (adev->vram_scratch.robj == NULL) {
298 return;
299 }
300 r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
301 if (likely(r == 0)) {
302 amdgpu_bo_kunmap(adev->vram_scratch.robj);
303 amdgpu_bo_unpin(adev->vram_scratch.robj);
304 amdgpu_bo_unreserve(adev->vram_scratch.robj);
305 }
306 amdgpu_bo_unref(&adev->vram_scratch.robj);
307}
308
309/**
310 * amdgpu_program_register_sequence - program an array of registers.
311 *
312 * @adev: amdgpu_device pointer
313 * @registers: pointer to the register array
314 * @array_size: size of the register array
315 *
316 * Programs an array or registers with and and or masks.
317 * This is a helper for setting golden registers.
318 */
319void amdgpu_program_register_sequence(struct amdgpu_device *adev,
320 const u32 *registers,
321 const u32 array_size)
322{
323 u32 tmp, reg, and_mask, or_mask;
324 int i;
325
326 if (array_size % 3)
327 return;
328
329 for (i = 0; i < array_size; i +=3) {
330 reg = registers[i + 0];
331 and_mask = registers[i + 1];
332 or_mask = registers[i + 2];
333
334 if (and_mask == 0xffffffff) {
335 tmp = or_mask;
336 } else {
337 tmp = RREG32(reg);
338 tmp &= ~and_mask;
339 tmp |= or_mask;
340 }
341 WREG32(reg, tmp);
342 }
343}
344
345void amdgpu_pci_config_reset(struct amdgpu_device *adev)
346{
347 pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
348}
349
350/*
351 * GPU doorbell aperture helpers function.
352 */
353/**
354 * amdgpu_doorbell_init - Init doorbell driver information.
355 *
356 * @adev: amdgpu_device pointer
357 *
358 * Init doorbell driver information (CIK)
359 * Returns 0 on success, error on failure.
360 */
361static int amdgpu_doorbell_init(struct amdgpu_device *adev)
362{
363 /* doorbell bar mapping */
364 adev->doorbell.base = pci_resource_start(adev->pdev, 2);
365 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
366
Christian Königedf600d2016-05-03 15:54:54 +0200367 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400368 AMDGPU_DOORBELL_MAX_ASSIGNMENT+1);
369 if (adev->doorbell.num_doorbells == 0)
370 return -EINVAL;
371
372 adev->doorbell.ptr = ioremap(adev->doorbell.base, adev->doorbell.num_doorbells * sizeof(u32));
373 if (adev->doorbell.ptr == NULL) {
374 return -ENOMEM;
375 }
376 DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)adev->doorbell.base);
377 DRM_INFO("doorbell mmio size: %u\n", (unsigned)adev->doorbell.size);
378
379 return 0;
380}
381
382/**
383 * amdgpu_doorbell_fini - Tear down doorbell driver information.
384 *
385 * @adev: amdgpu_device pointer
386 *
387 * Tear down doorbell driver information (CIK)
388 */
389static void amdgpu_doorbell_fini(struct amdgpu_device *adev)
390{
391 iounmap(adev->doorbell.ptr);
392 adev->doorbell.ptr = NULL;
393}
394
395/**
396 * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
397 * setup amdkfd
398 *
399 * @adev: amdgpu_device pointer
400 * @aperture_base: output returning doorbell aperture base physical address
401 * @aperture_size: output returning doorbell aperture size in bytes
402 * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
403 *
404 * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
405 * takes doorbells required for its own rings and reports the setup to amdkfd.
406 * amdgpu reserved doorbells are at the start of the doorbell aperture.
407 */
408void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
409 phys_addr_t *aperture_base,
410 size_t *aperture_size,
411 size_t *start_offset)
412{
413 /*
414 * The first num_doorbells are used by amdgpu.
415 * amdkfd takes whatever's left in the aperture.
416 */
417 if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
418 *aperture_base = adev->doorbell.base;
419 *aperture_size = adev->doorbell.size;
420 *start_offset = adev->doorbell.num_doorbells * sizeof(u32);
421 } else {
422 *aperture_base = 0;
423 *aperture_size = 0;
424 *start_offset = 0;
425 }
426}
427
428/*
429 * amdgpu_wb_*()
430 * Writeback is the the method by which the the GPU updates special pages
431 * in memory with the status of certain GPU events (fences, ring pointers,
432 * etc.).
433 */
434
435/**
436 * amdgpu_wb_fini - Disable Writeback and free memory
437 *
438 * @adev: amdgpu_device pointer
439 *
440 * Disables Writeback and frees the Writeback memory (all asics).
441 * Used at driver shutdown.
442 */
443static void amdgpu_wb_fini(struct amdgpu_device *adev)
444{
445 if (adev->wb.wb_obj) {
446 if (!amdgpu_bo_reserve(adev->wb.wb_obj, false)) {
447 amdgpu_bo_kunmap(adev->wb.wb_obj);
448 amdgpu_bo_unpin(adev->wb.wb_obj);
449 amdgpu_bo_unreserve(adev->wb.wb_obj);
450 }
451 amdgpu_bo_unref(&adev->wb.wb_obj);
452 adev->wb.wb = NULL;
453 adev->wb.wb_obj = NULL;
454 }
455}
456
457/**
458 * amdgpu_wb_init- Init Writeback driver info and allocate memory
459 *
460 * @adev: amdgpu_device pointer
461 *
462 * Disables Writeback and frees the Writeback memory (all asics).
463 * Used at driver startup.
464 * Returns 0 on success or an -error on failure.
465 */
466static int amdgpu_wb_init(struct amdgpu_device *adev)
467{
468 int r;
469
470 if (adev->wb.wb_obj == NULL) {
471 r = amdgpu_bo_create(adev, AMDGPU_MAX_WB * 4, PAGE_SIZE, true,
Christian König72d76682015-09-03 17:34:59 +0200472 AMDGPU_GEM_DOMAIN_GTT, 0, NULL, NULL,
473 &adev->wb.wb_obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400474 if (r) {
475 dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
476 return r;
477 }
478 r = amdgpu_bo_reserve(adev->wb.wb_obj, false);
479 if (unlikely(r != 0)) {
480 amdgpu_wb_fini(adev);
481 return r;
482 }
483 r = amdgpu_bo_pin(adev->wb.wb_obj, AMDGPU_GEM_DOMAIN_GTT,
484 &adev->wb.gpu_addr);
485 if (r) {
486 amdgpu_bo_unreserve(adev->wb.wb_obj);
487 dev_warn(adev->dev, "(%d) pin WB bo failed\n", r);
488 amdgpu_wb_fini(adev);
489 return r;
490 }
491 r = amdgpu_bo_kmap(adev->wb.wb_obj, (void **)&adev->wb.wb);
492 amdgpu_bo_unreserve(adev->wb.wb_obj);
493 if (r) {
494 dev_warn(adev->dev, "(%d) map WB bo failed\n", r);
495 amdgpu_wb_fini(adev);
496 return r;
497 }
498
499 adev->wb.num_wb = AMDGPU_MAX_WB;
500 memset(&adev->wb.used, 0, sizeof(adev->wb.used));
501
502 /* clear wb memory */
503 memset((char *)adev->wb.wb, 0, AMDGPU_GPU_PAGE_SIZE);
504 }
505
506 return 0;
507}
508
509/**
510 * amdgpu_wb_get - Allocate a wb entry
511 *
512 * @adev: amdgpu_device pointer
513 * @wb: wb index
514 *
515 * Allocate a wb slot for use by the driver (all asics).
516 * Returns 0 on success or -EINVAL on failure.
517 */
518int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb)
519{
520 unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
521 if (offset < adev->wb.num_wb) {
522 __set_bit(offset, adev->wb.used);
523 *wb = offset;
524 return 0;
525 } else {
526 return -EINVAL;
527 }
528}
529
530/**
531 * amdgpu_wb_free - Free a wb entry
532 *
533 * @adev: amdgpu_device pointer
534 * @wb: wb index
535 *
536 * Free a wb slot allocated for use by the driver (all asics)
537 */
538void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb)
539{
540 if (wb < adev->wb.num_wb)
541 __clear_bit(wb, adev->wb.used);
542}
543
544/**
545 * amdgpu_vram_location - try to find VRAM location
546 * @adev: amdgpu device structure holding all necessary informations
547 * @mc: memory controller structure holding memory informations
548 * @base: base address at which to put VRAM
549 *
550 * Function will place try to place VRAM at base address provided
551 * as parameter (which is so far either PCI aperture address or
552 * for IGP TOM base address).
553 *
554 * If there is not enough space to fit the unvisible VRAM in the 32bits
555 * address space then we limit the VRAM size to the aperture.
556 *
557 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
558 * this shouldn't be a problem as we are using the PCI aperture as a reference.
559 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
560 * not IGP.
561 *
562 * Note: we use mc_vram_size as on some board we need to program the mc to
563 * cover the whole aperture even if VRAM size is inferior to aperture size
564 * Novell bug 204882 + along with lots of ubuntu ones
565 *
566 * Note: when limiting vram it's safe to overwritte real_vram_size because
567 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
568 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
569 * ones)
570 *
571 * Note: IGP TOM addr should be the same as the aperture addr, we don't
572 * explicitly check for that thought.
573 *
574 * FIXME: when reducing VRAM size align new size on power of 2.
575 */
576void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base)
577{
578 uint64_t limit = (uint64_t)amdgpu_vram_limit << 20;
579
580 mc->vram_start = base;
581 if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) {
582 dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n");
583 mc->real_vram_size = mc->aper_size;
584 mc->mc_vram_size = mc->aper_size;
585 }
586 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
587 if (limit && limit < mc->real_vram_size)
588 mc->real_vram_size = limit;
589 dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
590 mc->mc_vram_size >> 20, mc->vram_start,
591 mc->vram_end, mc->real_vram_size >> 20);
592}
593
594/**
595 * amdgpu_gtt_location - try to find GTT location
596 * @adev: amdgpu device structure holding all necessary informations
597 * @mc: memory controller structure holding memory informations
598 *
599 * Function will place try to place GTT before or after VRAM.
600 *
601 * If GTT size is bigger than space left then we ajust GTT size.
602 * Thus function will never fails.
603 *
604 * FIXME: when reducing GTT size align new size on power of 2.
605 */
606void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc)
607{
608 u64 size_af, size_bf;
609
610 size_af = ((adev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align;
611 size_bf = mc->vram_start & ~mc->gtt_base_align;
612 if (size_bf > size_af) {
613 if (mc->gtt_size > size_bf) {
614 dev_warn(adev->dev, "limiting GTT\n");
615 mc->gtt_size = size_bf;
616 }
617 mc->gtt_start = (mc->vram_start & ~mc->gtt_base_align) - mc->gtt_size;
618 } else {
619 if (mc->gtt_size > size_af) {
620 dev_warn(adev->dev, "limiting GTT\n");
621 mc->gtt_size = size_af;
622 }
623 mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align;
624 }
625 mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
626 dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
627 mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
628}
629
630/*
631 * GPU helpers function.
632 */
633/**
634 * amdgpu_card_posted - check if the hw has already been initialized
635 *
636 * @adev: amdgpu_device pointer
637 *
638 * Check if the asic has been initialized (all asics).
639 * Used at driver startup.
640 * Returns true if initialized or false if not.
641 */
642bool amdgpu_card_posted(struct amdgpu_device *adev)
643{
644 uint32_t reg;
645
646 /* then check MEM_SIZE, in case the crtcs are off */
647 reg = RREG32(mmCONFIG_MEMSIZE);
648
649 if (reg)
650 return true;
651
652 return false;
653
654}
655
Monk Liubec86372016-09-14 19:38:08 +0800656static bool amdgpu_vpost_needed(struct amdgpu_device *adev)
657{
658 if (amdgpu_sriov_vf(adev))
659 return false;
660
661 if (amdgpu_passthrough(adev)) {
662 /* for FIJI: In whole GPU pass-through virtualization case
663 * old smc fw won't clear some registers (e.g. MEM_SIZE, BIOS_SCRATCH)
664 * so amdgpu_card_posted return false and driver will incorrectly skip vPost.
665 * but if we force vPost do in pass-through case, the driver reload will hang.
666 * whether doing vPost depends on amdgpu_card_posted if smc version is above
667 * 00160e00 for FIJI.
668 */
669 if (adev->asic_type == CHIP_FIJI) {
670 int err;
671 uint32_t fw_ver;
672 err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev);
673 /* force vPost if error occured */
674 if (err)
675 return true;
676
677 fw_ver = *((uint32_t *)adev->pm.fw->data + 69);
678 if (fw_ver >= 0x00160e00)
679 return !amdgpu_card_posted(adev);
680 }
681 } else {
682 /* in bare-metal case, amdgpu_card_posted return false
683 * after system reboot/boot, and return true if driver
684 * reloaded.
685 * we shouldn't do vPost after driver reload otherwise GPU
686 * could hang.
687 */
688 if (amdgpu_card_posted(adev))
689 return false;
690 }
691
692 /* we assume vPost is neede for all other cases */
693 return true;
694}
695
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400696/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400697 * amdgpu_dummy_page_init - init dummy page used by the driver
698 *
699 * @adev: amdgpu_device pointer
700 *
701 * Allocate the dummy page used by the driver (all asics).
702 * This dummy page is used by the driver as a filler for gart entries
703 * when pages are taken out of the GART
704 * Returns 0 on sucess, -ENOMEM on failure.
705 */
706int amdgpu_dummy_page_init(struct amdgpu_device *adev)
707{
708 if (adev->dummy_page.page)
709 return 0;
710 adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
711 if (adev->dummy_page.page == NULL)
712 return -ENOMEM;
713 adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page,
714 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
715 if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) {
716 dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n");
717 __free_page(adev->dummy_page.page);
718 adev->dummy_page.page = NULL;
719 return -ENOMEM;
720 }
721 return 0;
722}
723
724/**
725 * amdgpu_dummy_page_fini - free dummy page used by the driver
726 *
727 * @adev: amdgpu_device pointer
728 *
729 * Frees the dummy page used by the driver (all asics).
730 */
731void amdgpu_dummy_page_fini(struct amdgpu_device *adev)
732{
733 if (adev->dummy_page.page == NULL)
734 return;
735 pci_unmap_page(adev->pdev, adev->dummy_page.addr,
736 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
737 __free_page(adev->dummy_page.page);
738 adev->dummy_page.page = NULL;
739}
740
741
742/* ATOM accessor methods */
743/*
744 * ATOM is an interpreted byte code stored in tables in the vbios. The
745 * driver registers callbacks to access registers and the interpreter
746 * in the driver parses the tables and executes then to program specific
747 * actions (set display modes, asic init, etc.). See amdgpu_atombios.c,
748 * atombios.h, and atom.c
749 */
750
751/**
752 * cail_pll_read - read PLL register
753 *
754 * @info: atom card_info pointer
755 * @reg: PLL register offset
756 *
757 * Provides a PLL register accessor for the atom interpreter (r4xx+).
758 * Returns the value of the PLL register.
759 */
760static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
761{
762 return 0;
763}
764
765/**
766 * cail_pll_write - write PLL register
767 *
768 * @info: atom card_info pointer
769 * @reg: PLL register offset
770 * @val: value to write to the pll register
771 *
772 * Provides a PLL register accessor for the atom interpreter (r4xx+).
773 */
774static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
775{
776
777}
778
779/**
780 * cail_mc_read - read MC (Memory Controller) register
781 *
782 * @info: atom card_info pointer
783 * @reg: MC register offset
784 *
785 * Provides an MC register accessor for the atom interpreter (r4xx+).
786 * Returns the value of the MC register.
787 */
788static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
789{
790 return 0;
791}
792
793/**
794 * cail_mc_write - write MC (Memory Controller) register
795 *
796 * @info: atom card_info pointer
797 * @reg: MC register offset
798 * @val: value to write to the pll register
799 *
800 * Provides a MC register accessor for the atom interpreter (r4xx+).
801 */
802static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
803{
804
805}
806
807/**
808 * cail_reg_write - write MMIO register
809 *
810 * @info: atom card_info pointer
811 * @reg: MMIO register offset
812 * @val: value to write to the pll register
813 *
814 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
815 */
816static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
817{
818 struct amdgpu_device *adev = info->dev->dev_private;
819
820 WREG32(reg, val);
821}
822
823/**
824 * cail_reg_read - read MMIO register
825 *
826 * @info: atom card_info pointer
827 * @reg: MMIO register offset
828 *
829 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
830 * Returns the value of the MMIO register.
831 */
832static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
833{
834 struct amdgpu_device *adev = info->dev->dev_private;
835 uint32_t r;
836
837 r = RREG32(reg);
838 return r;
839}
840
841/**
842 * cail_ioreg_write - write IO register
843 *
844 * @info: atom card_info pointer
845 * @reg: IO register offset
846 * @val: value to write to the pll register
847 *
848 * Provides a IO register accessor for the atom interpreter (r4xx+).
849 */
850static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
851{
852 struct amdgpu_device *adev = info->dev->dev_private;
853
854 WREG32_IO(reg, val);
855}
856
857/**
858 * cail_ioreg_read - read IO register
859 *
860 * @info: atom card_info pointer
861 * @reg: IO register offset
862 *
863 * Provides an IO register accessor for the atom interpreter (r4xx+).
864 * Returns the value of the IO register.
865 */
866static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
867{
868 struct amdgpu_device *adev = info->dev->dev_private;
869 uint32_t r;
870
871 r = RREG32_IO(reg);
872 return r;
873}
874
875/**
876 * amdgpu_atombios_fini - free the driver info and callbacks for atombios
877 *
878 * @adev: amdgpu_device pointer
879 *
880 * Frees the driver info and register access callbacks for the ATOM
881 * interpreter (r4xx+).
882 * Called at driver shutdown.
883 */
884static void amdgpu_atombios_fini(struct amdgpu_device *adev)
885{
Monk Liu89e0ec92016-05-27 19:34:11 +0800886 if (adev->mode_info.atom_context) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400887 kfree(adev->mode_info.atom_context->scratch);
Monk Liu89e0ec92016-05-27 19:34:11 +0800888 kfree(adev->mode_info.atom_context->iio);
889 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400890 kfree(adev->mode_info.atom_context);
891 adev->mode_info.atom_context = NULL;
892 kfree(adev->mode_info.atom_card_info);
893 adev->mode_info.atom_card_info = NULL;
894}
895
896/**
897 * amdgpu_atombios_init - init the driver info and callbacks for atombios
898 *
899 * @adev: amdgpu_device pointer
900 *
901 * Initializes the driver info and register access callbacks for the
902 * ATOM interpreter (r4xx+).
903 * Returns 0 on sucess, -ENOMEM on failure.
904 * Called at driver startup.
905 */
906static int amdgpu_atombios_init(struct amdgpu_device *adev)
907{
908 struct card_info *atom_card_info =
909 kzalloc(sizeof(struct card_info), GFP_KERNEL);
910
911 if (!atom_card_info)
912 return -ENOMEM;
913
914 adev->mode_info.atom_card_info = atom_card_info;
915 atom_card_info->dev = adev->ddev;
916 atom_card_info->reg_read = cail_reg_read;
917 atom_card_info->reg_write = cail_reg_write;
918 /* needed for iio ops */
919 if (adev->rio_mem) {
920 atom_card_info->ioreg_read = cail_ioreg_read;
921 atom_card_info->ioreg_write = cail_ioreg_write;
922 } else {
923 DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
924 atom_card_info->ioreg_read = cail_reg_read;
925 atom_card_info->ioreg_write = cail_reg_write;
926 }
927 atom_card_info->mc_read = cail_mc_read;
928 atom_card_info->mc_write = cail_mc_write;
929 atom_card_info->pll_read = cail_pll_read;
930 atom_card_info->pll_write = cail_pll_write;
931
932 adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
933 if (!adev->mode_info.atom_context) {
934 amdgpu_atombios_fini(adev);
935 return -ENOMEM;
936 }
937
938 mutex_init(&adev->mode_info.atom_context->mutex);
939 amdgpu_atombios_scratch_regs_init(adev);
940 amdgpu_atom_allocate_fb_scratch(adev->mode_info.atom_context);
941 return 0;
942}
943
944/* if we get transitioned to only one device, take VGA back */
945/**
946 * amdgpu_vga_set_decode - enable/disable vga decode
947 *
948 * @cookie: amdgpu_device pointer
949 * @state: enable/disable vga decode
950 *
951 * Enable/disable vga decode (all asics).
952 * Returns VGA resource flags.
953 */
954static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
955{
956 struct amdgpu_device *adev = cookie;
957 amdgpu_asic_set_vga_state(adev, state);
958 if (state)
959 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
960 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
961 else
962 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
963}
964
965/**
966 * amdgpu_check_pot_argument - check that argument is a power of two
967 *
968 * @arg: value to check
969 *
970 * Validates that a certain argument is a power of two (all asics).
971 * Returns true if argument is valid.
972 */
973static bool amdgpu_check_pot_argument(int arg)
974{
975 return (arg & (arg - 1)) == 0;
976}
977
978/**
979 * amdgpu_check_arguments - validate module params
980 *
981 * @adev: amdgpu_device pointer
982 *
983 * Validates certain module parameters and updates
984 * the associated values used by the driver (all asics).
985 */
986static void amdgpu_check_arguments(struct amdgpu_device *adev)
987{
Chunming Zhou5b011232015-12-10 17:34:33 +0800988 if (amdgpu_sched_jobs < 4) {
989 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
990 amdgpu_sched_jobs);
991 amdgpu_sched_jobs = 4;
992 } else if (!amdgpu_check_pot_argument(amdgpu_sched_jobs)){
993 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
994 amdgpu_sched_jobs);
995 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
996 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400997
998 if (amdgpu_gart_size != -1) {
Christian Königc4e1a132016-03-17 16:25:15 +0100999 /* gtt size must be greater or equal to 32M */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001000 if (amdgpu_gart_size < 32) {
1001 dev_warn(adev->dev, "gart size (%d) too small\n",
1002 amdgpu_gart_size);
1003 amdgpu_gart_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001004 }
1005 }
1006
1007 if (!amdgpu_check_pot_argument(amdgpu_vm_size)) {
1008 dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
1009 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001010 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001011 }
1012
1013 if (amdgpu_vm_size < 1) {
1014 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
1015 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001016 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001017 }
1018
1019 /*
1020 * Max GPUVM size for Cayman, SI and CI are 40 bits.
1021 */
1022 if (amdgpu_vm_size > 1024) {
1023 dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
1024 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -04001025 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001026 }
1027
1028 /* defines number of bits in page table versus page directory,
1029 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1030 * page table and the remaining bits are in the page directory */
1031 if (amdgpu_vm_block_size == -1) {
1032
1033 /* Total bits covered by PD + PTs */
1034 unsigned bits = ilog2(amdgpu_vm_size) + 18;
1035
1036 /* Make sure the PD is 4K in size up to 8GB address space.
1037 Above that split equal between PD and PTs */
1038 if (amdgpu_vm_size <= 8)
1039 amdgpu_vm_block_size = bits - 9;
1040 else
1041 amdgpu_vm_block_size = (bits + 3) / 2;
1042
1043 } else if (amdgpu_vm_block_size < 9) {
1044 dev_warn(adev->dev, "VM page table size (%d) too small\n",
1045 amdgpu_vm_block_size);
1046 amdgpu_vm_block_size = 9;
1047 }
1048
1049 if (amdgpu_vm_block_size > 24 ||
1050 (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
1051 dev_warn(adev->dev, "VM page table size (%d) too large\n",
1052 amdgpu_vm_block_size);
1053 amdgpu_vm_block_size = 9;
1054 }
Christian König6a7f76e2016-08-24 15:51:49 +02001055
1056 if ((amdgpu_vram_page_split != -1 && amdgpu_vram_page_split < 16) ||
1057 !amdgpu_check_pot_argument(amdgpu_vram_page_split)) {
1058 dev_warn(adev->dev, "invalid VRAM page split (%d)\n",
1059 amdgpu_vram_page_split);
1060 amdgpu_vram_page_split = 1024;
1061 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001062}
1063
1064/**
1065 * amdgpu_switcheroo_set_state - set switcheroo state
1066 *
1067 * @pdev: pci dev pointer
Lukas Wunner16944672015-09-05 11:17:35 +02001068 * @state: vga_switcheroo state
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001069 *
1070 * Callback for the switcheroo driver. Suspends or resumes the
1071 * the asics before or after it is powered up using ACPI methods.
1072 */
1073static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1074{
1075 struct drm_device *dev = pci_get_drvdata(pdev);
1076
1077 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1078 return;
1079
1080 if (state == VGA_SWITCHEROO_ON) {
1081 unsigned d3_delay = dev->pdev->d3_delay;
1082
1083 printk(KERN_INFO "amdgpu: switched on\n");
1084 /* don't suspend or resume card normally */
1085 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1086
Alex Deucher810ddc32016-08-23 13:25:49 -04001087 amdgpu_device_resume(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001088
1089 dev->pdev->d3_delay = d3_delay;
1090
1091 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1092 drm_kms_helper_poll_enable(dev);
1093 } else {
1094 printk(KERN_INFO "amdgpu: switched off\n");
1095 drm_kms_helper_poll_disable(dev);
1096 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
Alex Deucher810ddc32016-08-23 13:25:49 -04001097 amdgpu_device_suspend(dev, true, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001098 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1099 }
1100}
1101
1102/**
1103 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1104 *
1105 * @pdev: pci dev pointer
1106 *
1107 * Callback for the switcheroo driver. Check of the switcheroo
1108 * state can be changed.
1109 * Returns true if the state can be changed, false if not.
1110 */
1111static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1112{
1113 struct drm_device *dev = pci_get_drvdata(pdev);
1114
1115 /*
1116 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1117 * locking inversion with the driver load path. And the access here is
1118 * completely racy anyway. So don't bother with locking for now.
1119 */
1120 return dev->open_count == 0;
1121}
1122
1123static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1124 .set_gpu_state = amdgpu_switcheroo_set_state,
1125 .reprobe = NULL,
1126 .can_switch = amdgpu_switcheroo_can_switch,
1127};
1128
1129int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001130 enum amd_ip_block_type block_type,
1131 enum amd_clockgating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001132{
1133 int i, r = 0;
1134
1135 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001136 if (!adev->ip_block_status[i].valid)
1137 continue;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001138 if (adev->ip_blocks[i].type == block_type) {
yanyang15fc3aee2015-05-22 14:39:35 -04001139 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001140 state);
1141 if (r)
1142 return r;
Alex Deuchera225bf12016-06-23 11:48:30 -04001143 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001144 }
1145 }
1146 return r;
1147}
1148
1149int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001150 enum amd_ip_block_type block_type,
1151 enum amd_powergating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001152{
1153 int i, r = 0;
1154
1155 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001156 if (!adev->ip_block_status[i].valid)
1157 continue;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001158 if (adev->ip_blocks[i].type == block_type) {
yanyang15fc3aee2015-05-22 14:39:35 -04001159 r = adev->ip_blocks[i].funcs->set_powergating_state((void *)adev,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001160 state);
1161 if (r)
1162 return r;
Alex Deuchera225bf12016-06-23 11:48:30 -04001163 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001164 }
1165 }
1166 return r;
1167}
1168
Alex Deucher5dbbb602016-06-23 11:41:04 -04001169int amdgpu_wait_for_idle(struct amdgpu_device *adev,
1170 enum amd_ip_block_type block_type)
1171{
1172 int i, r;
1173
1174 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001175 if (!adev->ip_block_status[i].valid)
1176 continue;
Alex Deucher5dbbb602016-06-23 11:41:04 -04001177 if (adev->ip_blocks[i].type == block_type) {
1178 r = adev->ip_blocks[i].funcs->wait_for_idle((void *)adev);
1179 if (r)
1180 return r;
1181 break;
1182 }
1183 }
1184 return 0;
1185
1186}
1187
1188bool amdgpu_is_idle(struct amdgpu_device *adev,
1189 enum amd_ip_block_type block_type)
1190{
1191 int i;
1192
1193 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher9ecbe7f2016-06-23 11:53:12 -04001194 if (!adev->ip_block_status[i].valid)
1195 continue;
Alex Deucher5dbbb602016-06-23 11:41:04 -04001196 if (adev->ip_blocks[i].type == block_type)
1197 return adev->ip_blocks[i].funcs->is_idle((void *)adev);
1198 }
1199 return true;
1200
1201}
1202
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001203const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
1204 struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001205 enum amd_ip_block_type type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001206{
1207 int i;
1208
1209 for (i = 0; i < adev->num_ip_blocks; i++)
1210 if (adev->ip_blocks[i].type == type)
1211 return &adev->ip_blocks[i];
1212
1213 return NULL;
1214}
1215
1216/**
1217 * amdgpu_ip_block_version_cmp
1218 *
1219 * @adev: amdgpu_device pointer
yanyang15fc3aee2015-05-22 14:39:35 -04001220 * @type: enum amd_ip_block_type
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001221 * @major: major version
1222 * @minor: minor version
1223 *
1224 * return 0 if equal or greater
1225 * return 1 if smaller or the ip_block doesn't exist
1226 */
1227int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001228 enum amd_ip_block_type type,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001229 u32 major, u32 minor)
1230{
1231 const struct amdgpu_ip_block_version *ip_block;
1232 ip_block = amdgpu_get_ip_block(adev, type);
1233
1234 if (ip_block && ((ip_block->major > major) ||
1235 ((ip_block->major == major) &&
1236 (ip_block->minor >= minor))))
1237 return 0;
1238
1239 return 1;
1240}
1241
Alex Deucher483ef982016-09-30 12:43:04 -04001242static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev)
Emily Deng9accf2f2016-08-10 16:01:25 +08001243{
1244 adev->enable_virtual_display = false;
1245
1246 if (amdgpu_virtual_display) {
1247 struct drm_device *ddev = adev->ddev;
1248 const char *pci_address_name = pci_name(ddev->pdev);
Emily Deng0f663562016-09-30 13:02:18 -04001249 char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname;
Emily Deng9accf2f2016-08-10 16:01:25 +08001250
1251 pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL);
1252 pciaddstr_tmp = pciaddstr;
Emily Deng0f663562016-09-30 13:02:18 -04001253 while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) {
1254 pciaddname = strsep(&pciaddname_tmp, ",");
Emily Deng9accf2f2016-08-10 16:01:25 +08001255 if (!strcmp(pci_address_name, pciaddname)) {
Emily Deng0f663562016-09-30 13:02:18 -04001256 long num_crtc;
1257 int res = -1;
1258
Emily Deng9accf2f2016-08-10 16:01:25 +08001259 adev->enable_virtual_display = true;
Emily Deng0f663562016-09-30 13:02:18 -04001260
1261 if (pciaddname_tmp)
1262 res = kstrtol(pciaddname_tmp, 10,
1263 &num_crtc);
1264
1265 if (!res) {
1266 if (num_crtc < 1)
1267 num_crtc = 1;
1268 if (num_crtc > 6)
1269 num_crtc = 6;
1270 adev->mode_info.num_crtc = num_crtc;
1271 } else {
1272 adev->mode_info.num_crtc = 1;
1273 }
Emily Deng9accf2f2016-08-10 16:01:25 +08001274 break;
1275 }
1276 }
1277
Emily Deng0f663562016-09-30 13:02:18 -04001278 DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n",
1279 amdgpu_virtual_display, pci_address_name,
1280 adev->enable_virtual_display, adev->mode_info.num_crtc);
Emily Deng9accf2f2016-08-10 16:01:25 +08001281
1282 kfree(pciaddstr);
1283 }
1284}
1285
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001286static int amdgpu_early_init(struct amdgpu_device *adev)
1287{
Alex Deucheraaa36a92015-04-20 17:31:14 -04001288 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001289
Alex Deucher483ef982016-09-30 12:43:04 -04001290 amdgpu_device_enable_virtual_display(adev);
Emily Denga6be7572016-08-08 11:37:50 +08001291
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001292 switch (adev->asic_type) {
Alex Deucheraaa36a92015-04-20 17:31:14 -04001293 case CHIP_TOPAZ:
1294 case CHIP_TONGA:
David Zhang48299f92015-07-08 01:05:16 +08001295 case CHIP_FIJI:
Flora Cui2cc0c0b2016-03-14 18:33:29 -04001296 case CHIP_POLARIS11:
1297 case CHIP_POLARIS10:
Alex Deucheraaa36a92015-04-20 17:31:14 -04001298 case CHIP_CARRIZO:
Samuel Li39bb0c92015-10-08 16:31:43 -04001299 case CHIP_STONEY:
1300 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
Alex Deucheraaa36a92015-04-20 17:31:14 -04001301 adev->family = AMDGPU_FAMILY_CZ;
1302 else
1303 adev->family = AMDGPU_FAMILY_VI;
1304
1305 r = vi_set_ip_blocks(adev);
1306 if (r)
1307 return r;
1308 break;
Ken Wang33f34802016-01-21 17:29:41 +08001309#ifdef CONFIG_DRM_AMDGPU_SI
1310 case CHIP_VERDE:
1311 case CHIP_TAHITI:
1312 case CHIP_PITCAIRN:
1313 case CHIP_OLAND:
1314 case CHIP_HAINAN:
Ken Wang295d0da2016-05-24 21:02:53 +08001315 adev->family = AMDGPU_FAMILY_SI;
Ken Wang33f34802016-01-21 17:29:41 +08001316 r = si_set_ip_blocks(adev);
1317 if (r)
1318 return r;
1319 break;
1320#endif
Alex Deuchera2e73f52015-04-20 17:09:27 -04001321#ifdef CONFIG_DRM_AMDGPU_CIK
1322 case CHIP_BONAIRE:
1323 case CHIP_HAWAII:
1324 case CHIP_KAVERI:
1325 case CHIP_KABINI:
1326 case CHIP_MULLINS:
1327 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1328 adev->family = AMDGPU_FAMILY_CI;
1329 else
1330 adev->family = AMDGPU_FAMILY_KV;
1331
1332 r = cik_set_ip_blocks(adev);
1333 if (r)
1334 return r;
1335 break;
1336#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001337 default:
1338 /* FIXME: not supported yet */
1339 return -EINVAL;
1340 }
1341
Alex Deucher8faf0e082015-07-28 11:50:31 -04001342 adev->ip_block_status = kcalloc(adev->num_ip_blocks,
1343 sizeof(struct amdgpu_ip_block_status), GFP_KERNEL);
1344 if (adev->ip_block_status == NULL)
Alex Deucherd8d090b2015-06-26 13:02:57 -04001345 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001346
1347 if (adev->ip_blocks == NULL) {
1348 DRM_ERROR("No IP blocks found!\n");
1349 return r;
1350 }
1351
1352 for (i = 0; i < adev->num_ip_blocks; i++) {
1353 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1354 DRM_ERROR("disabled ip block: %d\n", i);
Alex Deucher8faf0e082015-07-28 11:50:31 -04001355 adev->ip_block_status[i].valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001356 } else {
1357 if (adev->ip_blocks[i].funcs->early_init) {
yanyang15fc3aee2015-05-22 14:39:35 -04001358 r = adev->ip_blocks[i].funcs->early_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001359 if (r == -ENOENT) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001360 adev->ip_block_status[i].valid = false;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001361 } else if (r) {
Tom St Denis88a907d2016-05-04 14:28:35 -04001362 DRM_ERROR("early_init of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001363 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001364 } else {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001365 adev->ip_block_status[i].valid = true;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001366 }
Alex Deucher974e6b62015-07-10 13:59:44 -04001367 } else {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001368 adev->ip_block_status[i].valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001369 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001370 }
1371 }
1372
Nicolai Hähnle395d1fb2016-06-02 12:32:07 +02001373 adev->cg_flags &= amdgpu_cg_mask;
1374 adev->pg_flags &= amdgpu_pg_mask;
1375
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001376 return 0;
1377}
1378
1379static int amdgpu_init(struct amdgpu_device *adev)
1380{
1381 int i, r;
1382
1383 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001384 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001385 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001386 r = adev->ip_blocks[i].funcs->sw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001387 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001388 DRM_ERROR("sw_init of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001389 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001390 }
Alex Deucher8faf0e082015-07-28 11:50:31 -04001391 adev->ip_block_status[i].sw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001392 /* need to do gmc hw init early so we can allocate gpu mem */
yanyang15fc3aee2015-05-22 14:39:35 -04001393 if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001394 r = amdgpu_vram_scratch_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001395 if (r) {
1396 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001397 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001398 }
yanyang15fc3aee2015-05-22 14:39:35 -04001399 r = adev->ip_blocks[i].funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001400 if (r) {
1401 DRM_ERROR("hw_init %d failed %d\n", i, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001402 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001403 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001404 r = amdgpu_wb_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001405 if (r) {
1406 DRM_ERROR("amdgpu_wb_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001407 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001408 }
Alex Deucher8faf0e082015-07-28 11:50:31 -04001409 adev->ip_block_status[i].hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001410 }
1411 }
1412
1413 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001414 if (!adev->ip_block_status[i].sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001415 continue;
1416 /* gmc hw init is done early */
yanyang15fc3aee2015-05-22 14:39:35 -04001417 if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001418 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001419 r = adev->ip_blocks[i].funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001420 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001421 DRM_ERROR("hw_init of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001422 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001423 }
Alex Deucher8faf0e082015-07-28 11:50:31 -04001424 adev->ip_block_status[i].hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001425 }
1426
1427 return 0;
1428}
1429
1430static int amdgpu_late_init(struct amdgpu_device *adev)
1431{
1432 int i = 0, r;
1433
1434 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001435 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001436 continue;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001437 if (adev->ip_blocks[i].funcs->late_init) {
yanyang15fc3aee2015-05-22 14:39:35 -04001438 r = adev->ip_blocks[i].funcs->late_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001439 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001440 DRM_ERROR("late_init of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001441 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001442 }
Grazvydas Ignotas8a2eef12016-10-03 00:06:44 +03001443 adev->ip_block_status[i].late_initialized = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001444 }
Alex Deucher4a446d52016-10-07 14:48:18 -04001445 /* skip CG for VCE/UVD, it's handled specially */
1446 if (adev->ip_blocks[i].type != AMD_IP_BLOCK_TYPE_UVD &&
1447 adev->ip_blocks[i].type != AMD_IP_BLOCK_TYPE_VCE) {
1448 /* enable clockgating to save power */
1449 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1450 AMD_CG_STATE_GATE);
1451 if (r) {
1452 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n",
1453 adev->ip_blocks[i].funcs->name, r);
1454 return r;
1455 }
Arindam Nathb0b00ff2016-10-07 19:01:37 +05301456 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001457 }
1458
1459 return 0;
1460}
1461
1462static int amdgpu_fini(struct amdgpu_device *adev)
1463{
1464 int i, r;
1465
Alex Deucher3e96dbf2016-10-13 11:22:17 -04001466 /* need to disable SMC first */
1467 for (i = 0; i < adev->num_ip_blocks; i++) {
1468 if (!adev->ip_block_status[i].hw)
1469 continue;
1470 if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_SMC) {
1471 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
1472 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1473 AMD_CG_STATE_UNGATE);
1474 if (r) {
1475 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n",
1476 adev->ip_blocks[i].funcs->name, r);
1477 return r;
1478 }
1479 r = adev->ip_blocks[i].funcs->hw_fini((void *)adev);
1480 /* XXX handle errors */
1481 if (r) {
1482 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n",
1483 adev->ip_blocks[i].funcs->name, r);
1484 }
1485 adev->ip_block_status[i].hw = false;
1486 break;
1487 }
1488 }
1489
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001490 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001491 if (!adev->ip_block_status[i].hw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001492 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001493 if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001494 amdgpu_wb_fini(adev);
1495 amdgpu_vram_scratch_fini(adev);
1496 }
1497 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
yanyang15fc3aee2015-05-22 14:39:35 -04001498 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1499 AMD_CG_STATE_UNGATE);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001500 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001501 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001502 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001503 }
yanyang15fc3aee2015-05-22 14:39:35 -04001504 r = adev->ip_blocks[i].funcs->hw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001505 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001506 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001507 DRM_DEBUG("hw_fini of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001508 }
Alex Deucher8faf0e082015-07-28 11:50:31 -04001509 adev->ip_block_status[i].hw = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001510 }
1511
1512 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001513 if (!adev->ip_block_status[i].sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001514 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001515 r = adev->ip_blocks[i].funcs->sw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001516 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001517 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001518 DRM_DEBUG("sw_fini of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001519 }
Alex Deucher8faf0e082015-07-28 11:50:31 -04001520 adev->ip_block_status[i].sw = false;
1521 adev->ip_block_status[i].valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001522 }
1523
Monk Liua6dcfd92016-05-19 14:36:34 +08001524 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Grazvydas Ignotas8a2eef12016-10-03 00:06:44 +03001525 if (!adev->ip_block_status[i].late_initialized)
1526 continue;
Monk Liua6dcfd92016-05-19 14:36:34 +08001527 if (adev->ip_blocks[i].funcs->late_fini)
1528 adev->ip_blocks[i].funcs->late_fini((void *)adev);
Grazvydas Ignotas8a2eef12016-10-03 00:06:44 +03001529 adev->ip_block_status[i].late_initialized = false;
Monk Liua6dcfd92016-05-19 14:36:34 +08001530 }
1531
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001532 return 0;
1533}
1534
1535static int amdgpu_suspend(struct amdgpu_device *adev)
1536{
1537 int i, r;
1538
Flora Cuic5a93a22016-02-26 10:45:25 +08001539 /* ungate SMC block first */
1540 r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC,
1541 AMD_CG_STATE_UNGATE);
1542 if (r) {
1543 DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r);
1544 }
1545
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001546 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001547 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001548 continue;
1549 /* ungate blocks so that suspend can properly shut them down */
Flora Cuic5a93a22016-02-26 10:45:25 +08001550 if (i != AMD_IP_BLOCK_TYPE_SMC) {
1551 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1552 AMD_CG_STATE_UNGATE);
1553 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001554 DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Flora Cuic5a93a22016-02-26 10:45:25 +08001555 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001556 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001557 /* XXX handle errors */
1558 r = adev->ip_blocks[i].funcs->suspend(adev);
1559 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001560 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001561 DRM_ERROR("suspend of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001562 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001563 }
1564
1565 return 0;
1566}
1567
1568static int amdgpu_resume(struct amdgpu_device *adev)
1569{
1570 int i, r;
1571
1572 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e082015-07-28 11:50:31 -04001573 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001574 continue;
1575 r = adev->ip_blocks[i].funcs->resume(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001576 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001577 DRM_ERROR("resume of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001578 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001579 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001580 }
1581
1582 return 0;
1583}
1584
Monk Liu4e99a442016-03-31 13:26:59 +08001585static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev)
Andres Rodriguez048765a2016-06-11 02:51:32 -04001586{
Monk Liu4e99a442016-03-31 13:26:59 +08001587 if (amdgpu_atombios_has_gpu_virtualization_table(adev))
1588 adev->virtualization.virtual_caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS;
Andres Rodriguez048765a2016-06-11 02:51:32 -04001589}
1590
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001591/**
1592 * amdgpu_device_init - initialize the driver
1593 *
1594 * @adev: amdgpu_device pointer
1595 * @pdev: drm dev pointer
1596 * @pdev: pci dev pointer
1597 * @flags: driver flags
1598 *
1599 * Initializes the driver info and hw (all asics).
1600 * Returns 0 for success or an error on failure.
1601 * Called at driver startup.
1602 */
1603int amdgpu_device_init(struct amdgpu_device *adev,
1604 struct drm_device *ddev,
1605 struct pci_dev *pdev,
1606 uint32_t flags)
1607{
1608 int r, i;
1609 bool runtime = false;
Marek Olšák95844d22016-08-17 23:49:27 +02001610 u32 max_MBps;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001611
1612 adev->shutdown = false;
1613 adev->dev = &pdev->dev;
1614 adev->ddev = ddev;
1615 adev->pdev = pdev;
1616 adev->flags = flags;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001617 adev->asic_type = flags & AMD_ASIC_MASK;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001618 adev->is_atom_bios = false;
1619 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
1620 adev->mc.gtt_size = 512 * 1024 * 1024;
1621 adev->accel_working = false;
1622 adev->num_rings = 0;
1623 adev->mman.buffer_funcs = NULL;
1624 adev->mman.buffer_funcs_ring = NULL;
1625 adev->vm_manager.vm_pte_funcs = NULL;
Christian König2d55e452016-02-08 17:37:38 +01001626 adev->vm_manager.vm_pte_num_rings = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001627 adev->gart.gart_funcs = NULL;
1628 adev->fence_context = fence_context_alloc(AMDGPU_MAX_RINGS);
1629
1630 adev->smc_rreg = &amdgpu_invalid_rreg;
1631 adev->smc_wreg = &amdgpu_invalid_wreg;
1632 adev->pcie_rreg = &amdgpu_invalid_rreg;
1633 adev->pcie_wreg = &amdgpu_invalid_wreg;
Huang Rui36b9a952016-08-31 13:23:25 +08001634 adev->pciep_rreg = &amdgpu_invalid_rreg;
1635 adev->pciep_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001636 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
1637 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
1638 adev->didt_rreg = &amdgpu_invalid_rreg;
1639 adev->didt_wreg = &amdgpu_invalid_wreg;
Rex Zhuccdbb202016-06-08 12:47:41 +08001640 adev->gc_cac_rreg = &amdgpu_invalid_rreg;
1641 adev->gc_cac_wreg = &amdgpu_invalid_wreg;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001642 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
1643 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
1644
Rex Zhuccdbb202016-06-08 12:47:41 +08001645
Alex Deucher3e39ab92015-06-05 15:04:33 -04001646 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1647 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
1648 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001649
1650 /* mutex initialization are all done here so we
1651 * can recall function without having locking issues */
Christian König8d0a7ce2015-11-03 20:58:50 +01001652 mutex_init(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001653 atomic_set(&adev->irq.ih.lock, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001654 mutex_init(&adev->pm.mutex);
1655 mutex_init(&adev->gfx.gpu_clock_mutex);
1656 mutex_init(&adev->srbm_mutex);
1657 mutex_init(&adev->grbm_idx_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001658 mutex_init(&adev->mn_lock);
1659 hash_init(adev->mn_hash);
1660
1661 amdgpu_check_arguments(adev);
1662
1663 /* Registers mapping */
1664 /* TODO: block userspace mapping of io register */
1665 spin_lock_init(&adev->mmio_idx_lock);
1666 spin_lock_init(&adev->smc_idx_lock);
1667 spin_lock_init(&adev->pcie_idx_lock);
1668 spin_lock_init(&adev->uvd_ctx_idx_lock);
1669 spin_lock_init(&adev->didt_idx_lock);
Rex Zhuccdbb202016-06-08 12:47:41 +08001670 spin_lock_init(&adev->gc_cac_idx_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001671 spin_lock_init(&adev->audio_endpt_idx_lock);
Marek Olšák95844d22016-08-17 23:49:27 +02001672 spin_lock_init(&adev->mm_stats.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001673
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +08001674 INIT_LIST_HEAD(&adev->shadow_list);
1675 mutex_init(&adev->shadow_list_lock);
1676
Chunming Zhou5c1354b2016-08-30 16:13:10 +08001677 INIT_LIST_HEAD(&adev->gtt_list);
1678 spin_lock_init(&adev->gtt_list_lock);
1679
Ken Wangda69c1612016-01-21 19:08:55 +08001680 if (adev->asic_type >= CHIP_BONAIRE) {
1681 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
1682 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
1683 } else {
1684 adev->rmmio_base = pci_resource_start(adev->pdev, 2);
1685 adev->rmmio_size = pci_resource_len(adev->pdev, 2);
1686 }
Chunming Zhou5c1354b2016-08-30 16:13:10 +08001687
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001688 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
1689 if (adev->rmmio == NULL) {
1690 return -ENOMEM;
1691 }
1692 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
1693 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
1694
Ken Wangda69c1612016-01-21 19:08:55 +08001695 if (adev->asic_type >= CHIP_BONAIRE)
1696 /* doorbell bar mapping */
1697 amdgpu_doorbell_init(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001698
1699 /* io port mapping */
1700 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1701 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
1702 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
1703 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
1704 break;
1705 }
1706 }
1707 if (adev->rio_mem == NULL)
1708 DRM_ERROR("Unable to find PCI I/O BAR\n");
1709
1710 /* early init functions */
1711 r = amdgpu_early_init(adev);
1712 if (r)
1713 return r;
1714
1715 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
1716 /* this will fail for cards that aren't VGA class devices, just
1717 * ignore it */
1718 vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
1719
1720 if (amdgpu_runtime_pm == 1)
1721 runtime = true;
Alex Deuchere9bef452016-04-25 13:12:18 -04001722 if (amdgpu_device_is_px(ddev))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001723 runtime = true;
1724 vga_switcheroo_register_client(adev->pdev, &amdgpu_switcheroo_ops, runtime);
1725 if (runtime)
1726 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
1727
1728 /* Read BIOS */
Alex Deucher83ba1262016-06-03 18:21:41 -04001729 if (!amdgpu_get_bios(adev)) {
1730 r = -EINVAL;
1731 goto failed;
1732 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001733 /* Must be an ATOMBIOS */
1734 if (!adev->is_atom_bios) {
1735 dev_err(adev->dev, "Expecting atombios for GPU\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001736 r = -EINVAL;
1737 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001738 }
1739 r = amdgpu_atombios_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001740 if (r) {
1741 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001742 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001743 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001744
Monk Liu4e99a442016-03-31 13:26:59 +08001745 /* detect if we are with an SRIOV vbios */
1746 amdgpu_device_detect_sriov_bios(adev);
Andres Rodriguez048765a2016-06-11 02:51:32 -04001747
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001748 /* Post card if necessary */
Monk Liubec86372016-09-14 19:38:08 +08001749 if (amdgpu_vpost_needed(adev)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001750 if (!adev->bios) {
Monk Liubec86372016-09-14 19:38:08 +08001751 dev_err(adev->dev, "no vBIOS found\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001752 r = -EINVAL;
1753 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001754 }
Monk Liubec86372016-09-14 19:38:08 +08001755 DRM_INFO("GPU posting now...\n");
Monk Liu4e99a442016-03-31 13:26:59 +08001756 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
1757 if (r) {
1758 dev_err(adev->dev, "gpu post error!\n");
1759 goto failed;
1760 }
1761 } else {
1762 DRM_INFO("GPU post is not needed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001763 }
1764
1765 /* Initialize clocks */
1766 r = amdgpu_atombios_get_clock_info(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001767 if (r) {
1768 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001769 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001770 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001771 /* init i2c buses */
1772 amdgpu_atombios_i2c_init(adev);
1773
1774 /* Fence driver */
1775 r = amdgpu_fence_driver_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001776 if (r) {
1777 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001778 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001779 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001780
1781 /* init the mode config */
1782 drm_mode_config_init(adev->ddev);
1783
1784 r = amdgpu_init(adev);
1785 if (r) {
Alex Deucher2c1a2782015-12-07 17:02:53 -05001786 dev_err(adev->dev, "amdgpu_init failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001787 amdgpu_fini(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04001788 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001789 }
1790
1791 adev->accel_working = true;
1792
Marek Olšák95844d22016-08-17 23:49:27 +02001793 /* Initialize the buffer migration limit. */
1794 if (amdgpu_moverate >= 0)
1795 max_MBps = amdgpu_moverate;
1796 else
1797 max_MBps = 8; /* Allow 8 MB/s. */
1798 /* Get a log2 for easy divisions. */
1799 adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps));
1800
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001801 amdgpu_fbdev_init(adev);
1802
1803 r = amdgpu_ib_pool_init(adev);
1804 if (r) {
1805 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
Alex Deucher83ba1262016-06-03 18:21:41 -04001806 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001807 }
1808
1809 r = amdgpu_ib_ring_tests(adev);
1810 if (r)
1811 DRM_ERROR("ib ring test failed (%d).\n", r);
1812
1813 r = amdgpu_gem_debugfs_init(adev);
1814 if (r) {
1815 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
1816 }
1817
1818 r = amdgpu_debugfs_regs_init(adev);
1819 if (r) {
1820 DRM_ERROR("registering register debugfs failed (%d).\n", r);
1821 }
1822
Huang Rui50ab2532016-06-12 15:51:09 +08001823 r = amdgpu_debugfs_firmware_init(adev);
1824 if (r) {
1825 DRM_ERROR("registering firmware debugfs failed (%d).\n", r);
1826 return r;
1827 }
1828
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001829 if ((amdgpu_testing & 1)) {
1830 if (adev->accel_working)
1831 amdgpu_test_moves(adev);
1832 else
1833 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
1834 }
1835 if ((amdgpu_testing & 2)) {
1836 if (adev->accel_working)
1837 amdgpu_test_syncing(adev);
1838 else
1839 DRM_INFO("amdgpu: acceleration disabled, skipping sync tests\n");
1840 }
1841 if (amdgpu_benchmarking) {
1842 if (adev->accel_working)
1843 amdgpu_benchmark(adev, amdgpu_benchmarking);
1844 else
1845 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
1846 }
1847
1848 /* enable clockgating, etc. after ib tests, etc. since some blocks require
1849 * explicit gating rather than handling it automatically.
1850 */
1851 r = amdgpu_late_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001852 if (r) {
1853 dev_err(adev->dev, "amdgpu_late_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001854 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001855 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001856
1857 return 0;
Alex Deucher83ba1262016-06-03 18:21:41 -04001858
1859failed:
1860 if (runtime)
1861 vga_switcheroo_fini_domain_pm_ops(adev->dev);
1862 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001863}
1864
1865static void amdgpu_debugfs_remove_files(struct amdgpu_device *adev);
1866
1867/**
1868 * amdgpu_device_fini - tear down the driver
1869 *
1870 * @adev: amdgpu_device pointer
1871 *
1872 * Tear down the driver info (all asics).
1873 * Called at driver shutdown.
1874 */
1875void amdgpu_device_fini(struct amdgpu_device *adev)
1876{
1877 int r;
1878
1879 DRM_INFO("amdgpu: finishing device.\n");
1880 adev->shutdown = true;
Grazvydas Ignotasa951ed82016-09-25 23:34:48 +03001881 drm_crtc_force_disable_all(adev->ddev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001882 /* evict vram memory */
1883 amdgpu_bo_evict_vram(adev);
1884 amdgpu_ib_pool_fini(adev);
1885 amdgpu_fence_driver_fini(adev);
1886 amdgpu_fbdev_fini(adev);
1887 r = amdgpu_fini(adev);
Alex Deucher8faf0e082015-07-28 11:50:31 -04001888 kfree(adev->ip_block_status);
1889 adev->ip_block_status = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001890 adev->accel_working = false;
1891 /* free i2c buses */
1892 amdgpu_i2c_fini(adev);
1893 amdgpu_atombios_fini(adev);
1894 kfree(adev->bios);
1895 adev->bios = NULL;
1896 vga_switcheroo_unregister_client(adev->pdev);
Alex Deucher83ba1262016-06-03 18:21:41 -04001897 if (adev->flags & AMD_IS_PX)
1898 vga_switcheroo_fini_domain_pm_ops(adev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001899 vga_client_register(adev->pdev, NULL, NULL, NULL);
1900 if (adev->rio_mem)
1901 pci_iounmap(adev->pdev, adev->rio_mem);
1902 adev->rio_mem = NULL;
1903 iounmap(adev->rmmio);
1904 adev->rmmio = NULL;
Ken Wangda69c1612016-01-21 19:08:55 +08001905 if (adev->asic_type >= CHIP_BONAIRE)
1906 amdgpu_doorbell_fini(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001907 amdgpu_debugfs_regs_cleanup(adev);
1908 amdgpu_debugfs_remove_files(adev);
1909}
1910
1911
1912/*
1913 * Suspend & resume.
1914 */
1915/**
Alex Deucher810ddc32016-08-23 13:25:49 -04001916 * amdgpu_device_suspend - initiate device suspend
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001917 *
1918 * @pdev: drm dev pointer
1919 * @state: suspend state
1920 *
1921 * Puts the hw in the suspend state (all asics).
1922 * Returns 0 for success or an error on failure.
1923 * Called at driver suspend.
1924 */
Alex Deucher810ddc32016-08-23 13:25:49 -04001925int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001926{
1927 struct amdgpu_device *adev;
1928 struct drm_crtc *crtc;
1929 struct drm_connector *connector;
Alex Deucher5ceb54c2015-08-05 12:41:48 -04001930 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001931
1932 if (dev == NULL || dev->dev_private == NULL) {
1933 return -ENODEV;
1934 }
1935
1936 adev = dev->dev_private;
1937
1938 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1939 return 0;
1940
1941 drm_kms_helper_poll_disable(dev);
1942
1943 /* turn off display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04001944 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001945 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1946 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
1947 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04001948 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001949
Alex Deucher756e6882015-10-08 00:03:36 -04001950 /* unpin the front buffers and cursors */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001951 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Alex Deucher756e6882015-10-08 00:03:36 -04001952 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001953 struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
1954 struct amdgpu_bo *robj;
1955
Alex Deucher756e6882015-10-08 00:03:36 -04001956 if (amdgpu_crtc->cursor_bo) {
1957 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
1958 r = amdgpu_bo_reserve(aobj, false);
1959 if (r == 0) {
1960 amdgpu_bo_unpin(aobj);
1961 amdgpu_bo_unreserve(aobj);
1962 }
1963 }
1964
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001965 if (rfb == NULL || rfb->obj == NULL) {
1966 continue;
1967 }
1968 robj = gem_to_amdgpu_bo(rfb->obj);
1969 /* don't unpin kernel fb objects */
1970 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
1971 r = amdgpu_bo_reserve(robj, false);
1972 if (r == 0) {
1973 amdgpu_bo_unpin(robj);
1974 amdgpu_bo_unreserve(robj);
1975 }
1976 }
1977 }
1978 /* evict vram memory */
1979 amdgpu_bo_evict_vram(adev);
1980
Alex Deucher5ceb54c2015-08-05 12:41:48 -04001981 amdgpu_fence_driver_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001982
1983 r = amdgpu_suspend(adev);
1984
Alex Deuchera0a71e42016-10-10 12:41:36 -04001985 /* evict remaining vram memory
1986 * This second call to evict vram is to evict the gart page table
1987 * using the CPU.
1988 */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001989 amdgpu_bo_evict_vram(adev);
1990
1991 pci_save_state(dev->pdev);
1992 if (suspend) {
1993 /* Shut down the device */
1994 pci_disable_device(dev->pdev);
1995 pci_set_power_state(dev->pdev, PCI_D3hot);
jimqu74b0b152016-09-07 17:09:12 +08001996 } else {
1997 r = amdgpu_asic_reset(adev);
1998 if (r)
1999 DRM_ERROR("amdgpu asic reset failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002000 }
2001
2002 if (fbcon) {
2003 console_lock();
2004 amdgpu_fbdev_set_suspend(adev, 1);
2005 console_unlock();
2006 }
2007 return 0;
2008}
2009
2010/**
Alex Deucher810ddc32016-08-23 13:25:49 -04002011 * amdgpu_device_resume - initiate device resume
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002012 *
2013 * @pdev: drm dev pointer
2014 *
2015 * Bring the hw back to operating state (all asics).
2016 * Returns 0 for success or an error on failure.
2017 * Called at driver resume.
2018 */
Alex Deucher810ddc32016-08-23 13:25:49 -04002019int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002020{
2021 struct drm_connector *connector;
2022 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher756e6882015-10-08 00:03:36 -04002023 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002024 int r;
2025
2026 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
2027 return 0;
2028
jimqu74b0b152016-09-07 17:09:12 +08002029 if (fbcon)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002030 console_lock();
jimqu74b0b152016-09-07 17:09:12 +08002031
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002032 if (resume) {
2033 pci_set_power_state(dev->pdev, PCI_D0);
2034 pci_restore_state(dev->pdev);
jimqu74b0b152016-09-07 17:09:12 +08002035 r = pci_enable_device(dev->pdev);
2036 if (r) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002037 if (fbcon)
2038 console_unlock();
jimqu74b0b152016-09-07 17:09:12 +08002039 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002040 }
2041 }
2042
2043 /* post card */
jimqu74b0b152016-09-07 17:09:12 +08002044 if (!amdgpu_card_posted(adev) || !resume) {
2045 r = amdgpu_atom_asic_init(adev->mode_info.atom_context);
2046 if (r)
2047 DRM_ERROR("amdgpu asic init failed\n");
2048 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002049
2050 r = amdgpu_resume(adev);
Flora Cuica198522016-02-04 15:10:08 +08002051 if (r)
2052 DRM_ERROR("amdgpu_resume failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002053
Alex Deucher5ceb54c2015-08-05 12:41:48 -04002054 amdgpu_fence_driver_resume(adev);
2055
Flora Cuica198522016-02-04 15:10:08 +08002056 if (resume) {
2057 r = amdgpu_ib_ring_tests(adev);
2058 if (r)
2059 DRM_ERROR("ib ring test failed (%d).\n", r);
2060 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002061
2062 r = amdgpu_late_init(adev);
2063 if (r)
2064 return r;
2065
Alex Deucher756e6882015-10-08 00:03:36 -04002066 /* pin cursors */
2067 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2068 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
2069
2070 if (amdgpu_crtc->cursor_bo) {
2071 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
2072 r = amdgpu_bo_reserve(aobj, false);
2073 if (r == 0) {
2074 r = amdgpu_bo_pin(aobj,
2075 AMDGPU_GEM_DOMAIN_VRAM,
2076 &amdgpu_crtc->cursor_addr);
2077 if (r != 0)
2078 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
2079 amdgpu_bo_unreserve(aobj);
2080 }
2081 }
2082 }
2083
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002084 /* blat the mode back in */
2085 if (fbcon) {
2086 drm_helper_resume_force_mode(dev);
2087 /* turn on display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002088 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002089 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2090 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
2091 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04002092 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002093 }
2094
2095 drm_kms_helper_poll_enable(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002096
2097 /*
2098 * Most of the connector probing functions try to acquire runtime pm
2099 * refs to ensure that the GPU is powered on when connector polling is
2100 * performed. Since we're calling this from a runtime PM callback,
2101 * trying to acquire rpm refs will cause us to deadlock.
2102 *
2103 * Since we're guaranteed to be holding the rpm lock, it's safe to
2104 * temporarily disable the rpm helpers so this doesn't deadlock us.
2105 */
2106#ifdef CONFIG_PM
2107 dev->dev->power.disable_depth++;
2108#endif
Alex Deucher54fb2a52015-11-24 14:30:56 -05002109 drm_helper_hpd_irq_event(dev);
Lyude23a1a9e2016-07-18 11:41:37 -04002110#ifdef CONFIG_PM
2111 dev->dev->power.disable_depth--;
2112#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002113
2114 if (fbcon) {
2115 amdgpu_fbdev_set_suspend(adev, 0);
2116 console_unlock();
2117 }
2118
2119 return 0;
2120}
2121
Chunming Zhou63fbf422016-07-15 11:19:20 +08002122static bool amdgpu_check_soft_reset(struct amdgpu_device *adev)
2123{
2124 int i;
2125 bool asic_hang = false;
2126
2127 for (i = 0; i < adev->num_ip_blocks; i++) {
2128 if (!adev->ip_block_status[i].valid)
2129 continue;
2130 if (adev->ip_blocks[i].funcs->check_soft_reset)
Alex Deucherda146d32016-10-13 16:07:03 -04002131 adev->ip_block_status[i].hang =
2132 adev->ip_blocks[i].funcs->check_soft_reset(adev);
Chunming Zhou63fbf422016-07-15 11:19:20 +08002133 if (adev->ip_block_status[i].hang) {
2134 DRM_INFO("IP block:%d is hang!\n", i);
2135 asic_hang = true;
2136 }
2137 }
2138 return asic_hang;
2139}
2140
Baoyou Xie4d446652016-09-18 22:09:35 +08002141static int amdgpu_pre_soft_reset(struct amdgpu_device *adev)
Chunming Zhoud31a5012016-07-18 10:04:34 +08002142{
2143 int i, r = 0;
2144
2145 for (i = 0; i < adev->num_ip_blocks; i++) {
2146 if (!adev->ip_block_status[i].valid)
2147 continue;
Chunming Zhou35d782f2016-07-15 15:57:13 +08002148 if (adev->ip_block_status[i].hang &&
2149 adev->ip_blocks[i].funcs->pre_soft_reset) {
Chunming Zhoud31a5012016-07-18 10:04:34 +08002150 r = adev->ip_blocks[i].funcs->pre_soft_reset(adev);
2151 if (r)
2152 return r;
2153 }
2154 }
2155
2156 return 0;
2157}
2158
Chunming Zhou35d782f2016-07-15 15:57:13 +08002159static bool amdgpu_need_full_reset(struct amdgpu_device *adev)
2160{
Alex Deucherda146d32016-10-13 16:07:03 -04002161 int i;
2162
2163 for (i = 0; i < adev->num_ip_blocks; i++) {
2164 if (!adev->ip_block_status[i].valid)
2165 continue;
2166 if ((adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC) ||
2167 (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_SMC) ||
2168 (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_ACP) ||
2169 (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_DCE)) {
2170 if (adev->ip_block_status[i].hang) {
2171 DRM_INFO("Some block need full reset!\n");
2172 return true;
2173 }
2174 }
Chunming Zhou35d782f2016-07-15 15:57:13 +08002175 }
2176 return false;
2177}
2178
2179static int amdgpu_soft_reset(struct amdgpu_device *adev)
2180{
2181 int i, r = 0;
2182
2183 for (i = 0; i < adev->num_ip_blocks; i++) {
2184 if (!adev->ip_block_status[i].valid)
2185 continue;
2186 if (adev->ip_block_status[i].hang &&
2187 adev->ip_blocks[i].funcs->soft_reset) {
2188 r = adev->ip_blocks[i].funcs->soft_reset(adev);
2189 if (r)
2190 return r;
2191 }
2192 }
2193
2194 return 0;
2195}
2196
2197static int amdgpu_post_soft_reset(struct amdgpu_device *adev)
2198{
2199 int i, r = 0;
2200
2201 for (i = 0; i < adev->num_ip_blocks; i++) {
2202 if (!adev->ip_block_status[i].valid)
2203 continue;
2204 if (adev->ip_block_status[i].hang &&
2205 adev->ip_blocks[i].funcs->post_soft_reset)
2206 r = adev->ip_blocks[i].funcs->post_soft_reset(adev);
2207 if (r)
2208 return r;
2209 }
2210
2211 return 0;
2212}
2213
Chunming Zhou3ad81f12016-08-05 17:30:17 +08002214bool amdgpu_need_backup(struct amdgpu_device *adev)
2215{
2216 if (adev->flags & AMD_IS_APU)
2217 return false;
2218
2219 return amdgpu_lockup_timeout > 0 ? true : false;
2220}
2221
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002222static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev,
2223 struct amdgpu_ring *ring,
2224 struct amdgpu_bo *bo,
2225 struct fence **fence)
2226{
2227 uint32_t domain;
2228 int r;
2229
2230 if (!bo->shadow)
2231 return 0;
2232
2233 r = amdgpu_bo_reserve(bo, false);
2234 if (r)
2235 return r;
2236 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
2237 /* if bo has been evicted, then no need to recover */
2238 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
2239 r = amdgpu_bo_restore_from_shadow(adev, ring, bo,
2240 NULL, fence, true);
2241 if (r) {
2242 DRM_ERROR("recover page table failed!\n");
2243 goto err;
2244 }
2245 }
2246err:
2247 amdgpu_bo_unreserve(bo);
2248 return r;
2249}
2250
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002251/**
2252 * amdgpu_gpu_reset - reset the asic
2253 *
2254 * @adev: amdgpu device pointer
2255 *
2256 * Attempt the reset the GPU if it has hung (all asics).
2257 * Returns 0 for success or an error on failure.
2258 */
2259int amdgpu_gpu_reset(struct amdgpu_device *adev)
2260{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002261 int i, r;
2262 int resched;
Chunming Zhou35d782f2016-07-15 15:57:13 +08002263 bool need_full_reset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002264
Chunming Zhou63fbf422016-07-15 11:19:20 +08002265 if (!amdgpu_check_soft_reset(adev)) {
2266 DRM_INFO("No hardware hang detected. Did some blocks stall?\n");
2267 return 0;
2268 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002269
Marek Olšákd94aed52015-05-05 21:13:49 +02002270 atomic_inc(&adev->gpu_reset_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002271
Chunming Zhoua3c47d62016-06-30 16:44:41 +08002272 /* block TTM */
2273 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
2274
Chunming Zhou0875dc92016-06-12 15:41:58 +08002275 /* block scheduler */
2276 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2277 struct amdgpu_ring *ring = adev->rings[i];
2278
2279 if (!ring)
2280 continue;
2281 kthread_park(ring->sched.thread);
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002282 amd_sched_hw_job_reset(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002283 }
Chunming Zhou2200eda2016-06-30 16:53:02 +08002284 /* after all hw jobs are reset, hw fence is meaningless, so force_completion */
2285 amdgpu_fence_driver_force_completion(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002286
Chunming Zhou35d782f2016-07-15 15:57:13 +08002287 need_full_reset = amdgpu_need_full_reset(adev);
2288
2289 if (!need_full_reset) {
2290 amdgpu_pre_soft_reset(adev);
2291 r = amdgpu_soft_reset(adev);
2292 amdgpu_post_soft_reset(adev);
2293 if (r || amdgpu_check_soft_reset(adev)) {
2294 DRM_INFO("soft reset failed, will fallback to full reset!\n");
2295 need_full_reset = true;
2296 }
2297 }
2298
2299 if (need_full_reset) {
2300 /* save scratch */
2301 amdgpu_atombios_scratch_regs_save(adev);
2302 r = amdgpu_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002303
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002304retry:
Chunming Zhou35d782f2016-07-15 15:57:13 +08002305 /* Disable fb access */
2306 if (adev->mode_info.num_crtc) {
2307 struct amdgpu_mode_mc_save save;
2308 amdgpu_display_stop_mc_access(adev, &save);
2309 amdgpu_wait_for_idle(adev, AMD_IP_BLOCK_TYPE_GMC);
2310 }
Chunming Zhouf1aa7e02016-06-28 10:38:50 +08002311
Chunming Zhou35d782f2016-07-15 15:57:13 +08002312 r = amdgpu_asic_reset(adev);
2313 /* post card */
2314 amdgpu_atom_asic_init(adev->mode_info.atom_context);
Alex Deucherbfa99262016-01-15 11:59:48 -05002315
Chunming Zhou35d782f2016-07-15 15:57:13 +08002316 if (!r) {
2317 dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
2318 r = amdgpu_resume(adev);
2319 }
2320 /* restore scratch */
2321 amdgpu_atombios_scratch_regs_restore(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002322 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002323 if (!r) {
Chunming Zhoue72cfd52016-07-27 13:15:20 +08002324 amdgpu_irq_gpu_reset_resume_helper(adev);
Chunming Zhou2c0d7312016-08-30 16:36:25 +08002325 if (need_full_reset && amdgpu_need_backup(adev)) {
2326 r = amdgpu_ttm_recover_gart(adev);
2327 if (r)
2328 DRM_ERROR("gart recovery failed!!!\n");
2329 }
Chunming Zhou1f465082016-06-30 15:02:26 +08002330 r = amdgpu_ib_ring_tests(adev);
2331 if (r) {
2332 dev_err(adev->dev, "ib ring test failed (%d).\n", r);
Chunming Zhou40019dc2016-06-29 16:01:49 +08002333 r = amdgpu_suspend(adev);
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002334 need_full_reset = true;
Chunming Zhou40019dc2016-06-29 16:01:49 +08002335 goto retry;
Chunming Zhou1f465082016-06-30 15:02:26 +08002336 }
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002337 /**
2338 * recovery vm page tables, since we cannot depend on VRAM is
2339 * consistent after gpu full reset.
2340 */
2341 if (need_full_reset && amdgpu_need_backup(adev)) {
2342 struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring;
2343 struct amdgpu_bo *bo, *tmp;
2344 struct fence *fence = NULL, *next = NULL;
Chunming Zhou1f465082016-06-30 15:02:26 +08002345
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002346 DRM_INFO("recover vram bo from shadow\n");
2347 mutex_lock(&adev->shadow_list_lock);
2348 list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) {
2349 amdgpu_recover_vram_from_shadow(adev, ring, bo, &next);
2350 if (fence) {
2351 r = fence_wait(fence, false);
2352 if (r) {
2353 WARN(r, "recovery from shadow isn't comleted\n");
2354 break;
2355 }
2356 }
2357
2358 fence_put(fence);
2359 fence = next;
2360 }
2361 mutex_unlock(&adev->shadow_list_lock);
2362 if (fence) {
2363 r = fence_wait(fence, false);
2364 if (r)
2365 WARN(r, "recovery from shadow isn't comleted\n");
2366 }
2367 fence_put(fence);
2368 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002369 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
2370 struct amdgpu_ring *ring = adev->rings[i];
2371 if (!ring)
2372 continue;
Chunming Zhou53cdccd2016-07-21 17:20:52 +08002373
Chunming Zhouaa1c8902016-06-30 13:56:02 +08002374 amd_sched_job_recovery(&ring->sched);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002375 kthread_unpark(ring->sched.thread);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002376 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002377 } else {
Chunming Zhou2200eda2016-06-30 16:53:02 +08002378 dev_err(adev->dev, "asic resume failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002379 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
Chunming Zhou0875dc92016-06-12 15:41:58 +08002380 if (adev->rings[i]) {
2381 kthread_unpark(adev->rings[i]->sched.thread);
Chunming Zhou0875dc92016-06-12 15:41:58 +08002382 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002383 }
2384 }
2385
2386 drm_helper_resume_force_mode(adev->ddev);
2387
2388 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
2389 if (r) {
2390 /* bad news, how to tell it to userspace ? */
2391 dev_info(adev->dev, "GPU reset failed\n");
2392 }
2393
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002394 return r;
2395}
2396
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002397void amdgpu_get_pcie_info(struct amdgpu_device *adev)
2398{
2399 u32 mask;
2400 int ret;
2401
Alex Deuchercd474ba2016-02-04 10:21:23 -05002402 if (amdgpu_pcie_gen_cap)
2403 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
2404
2405 if (amdgpu_pcie_lane_cap)
2406 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
2407
2408 /* covers APUs as well */
2409 if (pci_is_root_bus(adev->pdev->bus)) {
2410 if (adev->pm.pcie_gen_mask == 0)
2411 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2412 if (adev->pm.pcie_mlw_mask == 0)
2413 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002414 return;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002415 }
Alex Deuchercd474ba2016-02-04 10:21:23 -05002416
2417 if (adev->pm.pcie_gen_mask == 0) {
2418 ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
2419 if (!ret) {
2420 adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
2421 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
2422 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
2423
2424 if (mask & DRM_PCIE_SPEED_25)
2425 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
2426 if (mask & DRM_PCIE_SPEED_50)
2427 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
2428 if (mask & DRM_PCIE_SPEED_80)
2429 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
2430 } else {
2431 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
2432 }
2433 }
2434 if (adev->pm.pcie_mlw_mask == 0) {
2435 ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
2436 if (!ret) {
2437 switch (mask) {
2438 case 32:
2439 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
2440 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2441 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2442 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2443 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2444 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2445 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2446 break;
2447 case 16:
2448 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2449 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2450 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2451 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2452 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2453 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2454 break;
2455 case 12:
2456 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2457 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2458 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2459 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2460 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2461 break;
2462 case 8:
2463 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2464 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2465 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2466 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2467 break;
2468 case 4:
2469 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2470 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2471 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2472 break;
2473 case 2:
2474 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2475 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2476 break;
2477 case 1:
2478 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
2479 break;
2480 default:
2481 break;
2482 }
2483 } else {
2484 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002485 }
2486 }
2487}
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002488
2489/*
2490 * Debugfs
2491 */
2492int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04002493 const struct drm_info_list *files,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002494 unsigned nfiles)
2495{
2496 unsigned i;
2497
2498 for (i = 0; i < adev->debugfs_count; i++) {
2499 if (adev->debugfs[i].files == files) {
2500 /* Already registered */
2501 return 0;
2502 }
2503 }
2504
2505 i = adev->debugfs_count + 1;
2506 if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
2507 DRM_ERROR("Reached maximum number of debugfs components.\n");
2508 DRM_ERROR("Report so we increase "
2509 "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
2510 return -EINVAL;
2511 }
2512 adev->debugfs[adev->debugfs_count].files = files;
2513 adev->debugfs[adev->debugfs_count].num_files = nfiles;
2514 adev->debugfs_count = i;
2515#if defined(CONFIG_DEBUG_FS)
2516 drm_debugfs_create_files(files, nfiles,
2517 adev->ddev->control->debugfs_root,
2518 adev->ddev->control);
2519 drm_debugfs_create_files(files, nfiles,
2520 adev->ddev->primary->debugfs_root,
2521 adev->ddev->primary);
2522#endif
2523 return 0;
2524}
2525
2526static void amdgpu_debugfs_remove_files(struct amdgpu_device *adev)
2527{
2528#if defined(CONFIG_DEBUG_FS)
2529 unsigned i;
2530
2531 for (i = 0; i < adev->debugfs_count; i++) {
2532 drm_debugfs_remove_files(adev->debugfs[i].files,
2533 adev->debugfs[i].num_files,
2534 adev->ddev->control);
2535 drm_debugfs_remove_files(adev->debugfs[i].files,
2536 adev->debugfs[i].num_files,
2537 adev->ddev->primary);
2538 }
2539#endif
2540}
2541
2542#if defined(CONFIG_DEBUG_FS)
2543
2544static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
2545 size_t size, loff_t *pos)
2546{
2547 struct amdgpu_device *adev = f->f_inode->i_private;
2548 ssize_t result = 0;
2549 int r;
Tom St Denisbd122672016-07-28 09:39:22 -04002550 bool pm_pg_lock, use_bank;
Tom St Denis566281592016-06-27 11:55:07 -04002551 unsigned instance_bank, sh_bank, se_bank;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002552
2553 if (size & 0x3 || *pos & 0x3)
2554 return -EINVAL;
2555
Tom St Denisbd122672016-07-28 09:39:22 -04002556 /* are we reading registers for which a PG lock is necessary? */
2557 pm_pg_lock = (*pos >> 23) & 1;
2558
Tom St Denis566281592016-06-27 11:55:07 -04002559 if (*pos & (1ULL << 62)) {
2560 se_bank = (*pos >> 24) & 0x3FF;
2561 sh_bank = (*pos >> 34) & 0x3FF;
2562 instance_bank = (*pos >> 44) & 0x3FF;
2563 use_bank = 1;
Tom St Denis566281592016-06-27 11:55:07 -04002564 } else {
2565 use_bank = 0;
2566 }
2567
Tom St Denisbd122672016-07-28 09:39:22 -04002568 *pos &= 0x3FFFF;
2569
Tom St Denis566281592016-06-27 11:55:07 -04002570 if (use_bank) {
2571 if (sh_bank >= adev->gfx.config.max_sh_per_se ||
2572 se_bank >= adev->gfx.config.max_shader_engines)
2573 return -EINVAL;
2574 mutex_lock(&adev->grbm_idx_mutex);
2575 amdgpu_gfx_select_se_sh(adev, se_bank,
2576 sh_bank, instance_bank);
2577 }
2578
Tom St Denisbd122672016-07-28 09:39:22 -04002579 if (pm_pg_lock)
2580 mutex_lock(&adev->pm.mutex);
2581
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002582 while (size) {
2583 uint32_t value;
2584
2585 if (*pos > adev->rmmio_size)
Tom St Denis566281592016-06-27 11:55:07 -04002586 goto end;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002587
2588 value = RREG32(*pos >> 2);
2589 r = put_user(value, (uint32_t *)buf);
Tom St Denis566281592016-06-27 11:55:07 -04002590 if (r) {
2591 result = r;
2592 goto end;
2593 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002594
2595 result += 4;
2596 buf += 4;
2597 *pos += 4;
2598 size -= 4;
2599 }
2600
Tom St Denis566281592016-06-27 11:55:07 -04002601end:
2602 if (use_bank) {
2603 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff);
2604 mutex_unlock(&adev->grbm_idx_mutex);
2605 }
2606
Tom St Denisbd122672016-07-28 09:39:22 -04002607 if (pm_pg_lock)
2608 mutex_unlock(&adev->pm.mutex);
2609
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002610 return result;
2611}
2612
2613static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
2614 size_t size, loff_t *pos)
2615{
2616 struct amdgpu_device *adev = f->f_inode->i_private;
2617 ssize_t result = 0;
2618 int r;
2619
2620 if (size & 0x3 || *pos & 0x3)
2621 return -EINVAL;
2622
2623 while (size) {
2624 uint32_t value;
2625
2626 if (*pos > adev->rmmio_size)
2627 return result;
2628
2629 r = get_user(value, (uint32_t *)buf);
2630 if (r)
2631 return r;
2632
2633 WREG32(*pos >> 2, value);
2634
2635 result += 4;
2636 buf += 4;
2637 *pos += 4;
2638 size -= 4;
2639 }
2640
2641 return result;
2642}
2643
Tom St Denisadcec282016-04-15 13:08:44 -04002644static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
2645 size_t size, loff_t *pos)
2646{
2647 struct amdgpu_device *adev = f->f_inode->i_private;
2648 ssize_t result = 0;
2649 int r;
2650
2651 if (size & 0x3 || *pos & 0x3)
2652 return -EINVAL;
2653
2654 while (size) {
2655 uint32_t value;
2656
2657 value = RREG32_PCIE(*pos >> 2);
2658 r = put_user(value, (uint32_t *)buf);
2659 if (r)
2660 return r;
2661
2662 result += 4;
2663 buf += 4;
2664 *pos += 4;
2665 size -= 4;
2666 }
2667
2668 return result;
2669}
2670
2671static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
2672 size_t size, loff_t *pos)
2673{
2674 struct amdgpu_device *adev = f->f_inode->i_private;
2675 ssize_t result = 0;
2676 int r;
2677
2678 if (size & 0x3 || *pos & 0x3)
2679 return -EINVAL;
2680
2681 while (size) {
2682 uint32_t value;
2683
2684 r = get_user(value, (uint32_t *)buf);
2685 if (r)
2686 return r;
2687
2688 WREG32_PCIE(*pos >> 2, value);
2689
2690 result += 4;
2691 buf += 4;
2692 *pos += 4;
2693 size -= 4;
2694 }
2695
2696 return result;
2697}
2698
2699static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
2700 size_t size, loff_t *pos)
2701{
2702 struct amdgpu_device *adev = f->f_inode->i_private;
2703 ssize_t result = 0;
2704 int r;
2705
2706 if (size & 0x3 || *pos & 0x3)
2707 return -EINVAL;
2708
2709 while (size) {
2710 uint32_t value;
2711
2712 value = RREG32_DIDT(*pos >> 2);
2713 r = put_user(value, (uint32_t *)buf);
2714 if (r)
2715 return r;
2716
2717 result += 4;
2718 buf += 4;
2719 *pos += 4;
2720 size -= 4;
2721 }
2722
2723 return result;
2724}
2725
2726static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
2727 size_t size, loff_t *pos)
2728{
2729 struct amdgpu_device *adev = f->f_inode->i_private;
2730 ssize_t result = 0;
2731 int r;
2732
2733 if (size & 0x3 || *pos & 0x3)
2734 return -EINVAL;
2735
2736 while (size) {
2737 uint32_t value;
2738
2739 r = get_user(value, (uint32_t *)buf);
2740 if (r)
2741 return r;
2742
2743 WREG32_DIDT(*pos >> 2, value);
2744
2745 result += 4;
2746 buf += 4;
2747 *pos += 4;
2748 size -= 4;
2749 }
2750
2751 return result;
2752}
2753
2754static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
2755 size_t size, loff_t *pos)
2756{
2757 struct amdgpu_device *adev = f->f_inode->i_private;
2758 ssize_t result = 0;
2759 int r;
2760
2761 if (size & 0x3 || *pos & 0x3)
2762 return -EINVAL;
2763
2764 while (size) {
2765 uint32_t value;
2766
Tom St Denis6fc0dea2016-08-29 08:39:29 -04002767 value = RREG32_SMC(*pos);
Tom St Denisadcec282016-04-15 13:08:44 -04002768 r = put_user(value, (uint32_t *)buf);
2769 if (r)
2770 return r;
2771
2772 result += 4;
2773 buf += 4;
2774 *pos += 4;
2775 size -= 4;
2776 }
2777
2778 return result;
2779}
2780
2781static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
2782 size_t size, loff_t *pos)
2783{
2784 struct amdgpu_device *adev = f->f_inode->i_private;
2785 ssize_t result = 0;
2786 int r;
2787
2788 if (size & 0x3 || *pos & 0x3)
2789 return -EINVAL;
2790
2791 while (size) {
2792 uint32_t value;
2793
2794 r = get_user(value, (uint32_t *)buf);
2795 if (r)
2796 return r;
2797
Tom St Denis6fc0dea2016-08-29 08:39:29 -04002798 WREG32_SMC(*pos, value);
Tom St Denisadcec282016-04-15 13:08:44 -04002799
2800 result += 4;
2801 buf += 4;
2802 *pos += 4;
2803 size -= 4;
2804 }
2805
2806 return result;
2807}
2808
Tom St Denis1e051412016-06-27 09:57:18 -04002809static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf,
2810 size_t size, loff_t *pos)
2811{
2812 struct amdgpu_device *adev = f->f_inode->i_private;
2813 ssize_t result = 0;
2814 int r;
2815 uint32_t *config, no_regs = 0;
2816
2817 if (size & 0x3 || *pos & 0x3)
2818 return -EINVAL;
2819
Markus Elfringecab7662016-09-18 17:00:52 +02002820 config = kmalloc_array(256, sizeof(*config), GFP_KERNEL);
Tom St Denis1e051412016-06-27 09:57:18 -04002821 if (!config)
2822 return -ENOMEM;
2823
2824 /* version, increment each time something is added */
Tom St Denise9f11dc2016-08-17 12:00:51 -04002825 config[no_regs++] = 2;
Tom St Denis1e051412016-06-27 09:57:18 -04002826 config[no_regs++] = adev->gfx.config.max_shader_engines;
2827 config[no_regs++] = adev->gfx.config.max_tile_pipes;
2828 config[no_regs++] = adev->gfx.config.max_cu_per_sh;
2829 config[no_regs++] = adev->gfx.config.max_sh_per_se;
2830 config[no_regs++] = adev->gfx.config.max_backends_per_se;
2831 config[no_regs++] = adev->gfx.config.max_texture_channel_caches;
2832 config[no_regs++] = adev->gfx.config.max_gprs;
2833 config[no_regs++] = adev->gfx.config.max_gs_threads;
2834 config[no_regs++] = adev->gfx.config.max_hw_contexts;
2835 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend;
2836 config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend;
2837 config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size;
2838 config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size;
2839 config[no_regs++] = adev->gfx.config.num_tile_pipes;
2840 config[no_regs++] = adev->gfx.config.backend_enable_mask;
2841 config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes;
2842 config[no_regs++] = adev->gfx.config.mem_row_size_in_kb;
2843 config[no_regs++] = adev->gfx.config.shader_engine_tile_size;
2844 config[no_regs++] = adev->gfx.config.num_gpus;
2845 config[no_regs++] = adev->gfx.config.multi_gpu_tile_size;
2846 config[no_regs++] = adev->gfx.config.mc_arb_ramcfg;
2847 config[no_regs++] = adev->gfx.config.gb_addr_config;
2848 config[no_regs++] = adev->gfx.config.num_rbs;
2849
Tom St Denis89a8f302016-08-12 15:14:31 -04002850 /* rev==1 */
2851 config[no_regs++] = adev->rev_id;
2852 config[no_regs++] = adev->pg_flags;
2853 config[no_regs++] = adev->cg_flags;
2854
Tom St Denise9f11dc2016-08-17 12:00:51 -04002855 /* rev==2 */
2856 config[no_regs++] = adev->family;
2857 config[no_regs++] = adev->external_rev_id;
2858
Tom St Denis1e051412016-06-27 09:57:18 -04002859 while (size && (*pos < no_regs * 4)) {
2860 uint32_t value;
2861
2862 value = config[*pos >> 2];
2863 r = put_user(value, (uint32_t *)buf);
2864 if (r) {
2865 kfree(config);
2866 return r;
2867 }
2868
2869 result += 4;
2870 buf += 4;
2871 *pos += 4;
2872 size -= 4;
2873 }
2874
2875 kfree(config);
2876 return result;
2877}
2878
Tom St Denisf2cdaf22016-09-15 10:08:44 -04002879static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf,
2880 size_t size, loff_t *pos)
2881{
2882 struct amdgpu_device *adev = f->f_inode->i_private;
2883 int idx, r;
2884 int32_t value;
2885
2886 if (size != 4 || *pos & 0x3)
2887 return -EINVAL;
2888
2889 /* convert offset to sensor number */
2890 idx = *pos >> 2;
2891
2892 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
2893 r = adev->powerplay.pp_funcs->read_sensor(adev->powerplay.pp_handle, idx, &value);
2894 else
2895 return -EINVAL;
2896
2897 if (!r)
2898 r = put_user(value, (int32_t *)buf);
2899
2900 return !r ? 4 : r;
2901}
Tom St Denis1e051412016-06-27 09:57:18 -04002902
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002903static const struct file_operations amdgpu_debugfs_regs_fops = {
2904 .owner = THIS_MODULE,
2905 .read = amdgpu_debugfs_regs_read,
2906 .write = amdgpu_debugfs_regs_write,
2907 .llseek = default_llseek
2908};
Tom St Denisadcec282016-04-15 13:08:44 -04002909static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
2910 .owner = THIS_MODULE,
2911 .read = amdgpu_debugfs_regs_didt_read,
2912 .write = amdgpu_debugfs_regs_didt_write,
2913 .llseek = default_llseek
2914};
2915static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
2916 .owner = THIS_MODULE,
2917 .read = amdgpu_debugfs_regs_pcie_read,
2918 .write = amdgpu_debugfs_regs_pcie_write,
2919 .llseek = default_llseek
2920};
2921static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
2922 .owner = THIS_MODULE,
2923 .read = amdgpu_debugfs_regs_smc_read,
2924 .write = amdgpu_debugfs_regs_smc_write,
2925 .llseek = default_llseek
2926};
2927
Tom St Denis1e051412016-06-27 09:57:18 -04002928static const struct file_operations amdgpu_debugfs_gca_config_fops = {
2929 .owner = THIS_MODULE,
2930 .read = amdgpu_debugfs_gca_config_read,
2931 .llseek = default_llseek
2932};
2933
Tom St Denisf2cdaf22016-09-15 10:08:44 -04002934static const struct file_operations amdgpu_debugfs_sensors_fops = {
2935 .owner = THIS_MODULE,
2936 .read = amdgpu_debugfs_sensor_read,
2937 .llseek = default_llseek
2938};
2939
Tom St Denisadcec282016-04-15 13:08:44 -04002940static const struct file_operations *debugfs_regs[] = {
2941 &amdgpu_debugfs_regs_fops,
2942 &amdgpu_debugfs_regs_didt_fops,
2943 &amdgpu_debugfs_regs_pcie_fops,
2944 &amdgpu_debugfs_regs_smc_fops,
Tom St Denis1e051412016-06-27 09:57:18 -04002945 &amdgpu_debugfs_gca_config_fops,
Tom St Denisf2cdaf22016-09-15 10:08:44 -04002946 &amdgpu_debugfs_sensors_fops,
Tom St Denisadcec282016-04-15 13:08:44 -04002947};
2948
2949static const char *debugfs_regs_names[] = {
2950 "amdgpu_regs",
2951 "amdgpu_regs_didt",
2952 "amdgpu_regs_pcie",
2953 "amdgpu_regs_smc",
Tom St Denis1e051412016-06-27 09:57:18 -04002954 "amdgpu_gca_config",
Tom St Denisf2cdaf22016-09-15 10:08:44 -04002955 "amdgpu_sensors",
Tom St Denisadcec282016-04-15 13:08:44 -04002956};
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002957
2958static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
2959{
2960 struct drm_minor *minor = adev->ddev->primary;
2961 struct dentry *ent, *root = minor->debugfs_root;
Tom St Denisadcec282016-04-15 13:08:44 -04002962 unsigned i, j;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002963
Tom St Denisadcec282016-04-15 13:08:44 -04002964 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
2965 ent = debugfs_create_file(debugfs_regs_names[i],
2966 S_IFREG | S_IRUGO, root,
2967 adev, debugfs_regs[i]);
2968 if (IS_ERR(ent)) {
2969 for (j = 0; j < i; j++) {
2970 debugfs_remove(adev->debugfs_regs[i]);
2971 adev->debugfs_regs[i] = NULL;
2972 }
2973 return PTR_ERR(ent);
2974 }
2975
2976 if (!i)
2977 i_size_write(ent->d_inode, adev->rmmio_size);
2978 adev->debugfs_regs[i] = ent;
2979 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002980
2981 return 0;
2982}
2983
2984static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
2985{
Tom St Denisadcec282016-04-15 13:08:44 -04002986 unsigned i;
2987
2988 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
2989 if (adev->debugfs_regs[i]) {
2990 debugfs_remove(adev->debugfs_regs[i]);
2991 adev->debugfs_regs[i] = NULL;
2992 }
2993 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002994}
2995
2996int amdgpu_debugfs_init(struct drm_minor *minor)
2997{
2998 return 0;
2999}
3000
3001void amdgpu_debugfs_cleanup(struct drm_minor *minor)
3002{
3003}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06003004#else
3005static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
3006{
3007 return 0;
3008}
3009static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04003010#endif