xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c (revision 110e6f26af80dfd90b6e5c645b1aed7228aa580d)
1 /*
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  */
28 #include <linux/console.h>
29 #include <linux/slab.h>
30 #include <linux/debugfs.h>
31 #include <drm/drmP.h>
32 #include <drm/drm_crtc_helper.h>
33 #include <drm/amdgpu_drm.h>
34 #include <linux/vgaarb.h>
35 #include <linux/vga_switcheroo.h>
36 #include <linux/efi.h>
37 #include "amdgpu.h"
38 #include "amdgpu_i2c.h"
39 #include "atom.h"
40 #include "amdgpu_atombios.h"
41 #include "amd_pcie.h"
42 #ifdef CONFIG_DRM_AMDGPU_CIK
43 #include "cik.h"
44 #endif
45 #include "vi.h"
46 #include "bif/bif_4_1_d.h"
47 
48 static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
49 static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
50 
51 static const char *amdgpu_asic_name[] = {
52 	"BONAIRE",
53 	"KAVERI",
54 	"KABINI",
55 	"HAWAII",
56 	"MULLINS",
57 	"TOPAZ",
58 	"TONGA",
59 	"FIJI",
60 	"CARRIZO",
61 	"STONEY",
62 	"LAST",
63 };
64 
65 #if defined(CONFIG_VGA_SWITCHEROO)
66 bool amdgpu_has_atpx_dgpu_power_cntl(void);
67 #else
68 static inline bool amdgpu_has_atpx_dgpu_power_cntl(void) { return false; }
69 #endif
70 
71 bool amdgpu_device_is_px(struct drm_device *dev)
72 {
73 	struct amdgpu_device *adev = dev->dev_private;
74 
75 	if (adev->flags & AMD_IS_PX)
76 		return true;
77 	return false;
78 }
79 
80 /*
81  * MMIO register access helper functions.
82  */
83 uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
84 			bool always_indirect)
85 {
86 	if ((reg * 4) < adev->rmmio_size && !always_indirect)
87 		return readl(((void __iomem *)adev->rmmio) + (reg * 4));
88 	else {
89 		unsigned long flags;
90 		uint32_t ret;
91 
92 		spin_lock_irqsave(&adev->mmio_idx_lock, flags);
93 		writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
94 		ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
95 		spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
96 
97 		return ret;
98 	}
99 }
100 
101 void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
102 		    bool always_indirect)
103 {
104 	if ((reg * 4) < adev->rmmio_size && !always_indirect)
105 		writel(v, ((void __iomem *)adev->rmmio) + (reg * 4));
106 	else {
107 		unsigned long flags;
108 
109 		spin_lock_irqsave(&adev->mmio_idx_lock, flags);
110 		writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
111 		writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
112 		spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
113 	}
114 }
115 
116 u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg)
117 {
118 	if ((reg * 4) < adev->rio_mem_size)
119 		return ioread32(adev->rio_mem + (reg * 4));
120 	else {
121 		iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
122 		return ioread32(adev->rio_mem + (mmMM_DATA * 4));
123 	}
124 }
125 
126 void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v)
127 {
128 
129 	if ((reg * 4) < adev->rio_mem_size)
130 		iowrite32(v, adev->rio_mem + (reg * 4));
131 	else {
132 		iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4));
133 		iowrite32(v, adev->rio_mem + (mmMM_DATA * 4));
134 	}
135 }
136 
137 /**
138  * amdgpu_mm_rdoorbell - read a doorbell dword
139  *
140  * @adev: amdgpu_device pointer
141  * @index: doorbell index
142  *
143  * Returns the value in the doorbell aperture at the
144  * requested doorbell index (CIK).
145  */
146 u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index)
147 {
148 	if (index < adev->doorbell.num_doorbells) {
149 		return readl(adev->doorbell.ptr + index);
150 	} else {
151 		DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index);
152 		return 0;
153 	}
154 }
155 
156 /**
157  * amdgpu_mm_wdoorbell - write a doorbell dword
158  *
159  * @adev: amdgpu_device pointer
160  * @index: doorbell index
161  * @v: value to write
162  *
163  * Writes @v to the doorbell aperture at the
164  * requested doorbell index (CIK).
165  */
166 void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v)
167 {
168 	if (index < adev->doorbell.num_doorbells) {
169 		writel(v, adev->doorbell.ptr + index);
170 	} else {
171 		DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index);
172 	}
173 }
174 
175 /**
176  * amdgpu_invalid_rreg - dummy reg read function
177  *
178  * @adev: amdgpu device pointer
179  * @reg: offset of register
180  *
181  * Dummy register read function.  Used for register blocks
182  * that certain asics don't have (all asics).
183  * Returns the value in the register.
184  */
185 static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg)
186 {
187 	DRM_ERROR("Invalid callback to read register 0x%04X\n", reg);
188 	BUG();
189 	return 0;
190 }
191 
192 /**
193  * amdgpu_invalid_wreg - dummy reg write function
194  *
195  * @adev: amdgpu device pointer
196  * @reg: offset of register
197  * @v: value to write to the register
198  *
199  * Dummy register read function.  Used for register blocks
200  * that certain asics don't have (all asics).
201  */
202 static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v)
203 {
204 	DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
205 		  reg, v);
206 	BUG();
207 }
208 
209 /**
210  * amdgpu_block_invalid_rreg - dummy reg read function
211  *
212  * @adev: amdgpu device pointer
213  * @block: offset of instance
214  * @reg: offset of register
215  *
216  * Dummy register read function.  Used for register blocks
217  * that certain asics don't have (all asics).
218  * Returns the value in the register.
219  */
220 static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev,
221 					  uint32_t block, uint32_t reg)
222 {
223 	DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n",
224 		  reg, block);
225 	BUG();
226 	return 0;
227 }
228 
229 /**
230  * amdgpu_block_invalid_wreg - dummy reg write function
231  *
232  * @adev: amdgpu device pointer
233  * @block: offset of instance
234  * @reg: offset of register
235  * @v: value to write to the register
236  *
237  * Dummy register read function.  Used for register blocks
238  * that certain asics don't have (all asics).
239  */
240 static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev,
241 				      uint32_t block,
242 				      uint32_t reg, uint32_t v)
243 {
244 	DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n",
245 		  reg, block, v);
246 	BUG();
247 }
248 
249 static int amdgpu_vram_scratch_init(struct amdgpu_device *adev)
250 {
251 	int r;
252 
253 	if (adev->vram_scratch.robj == NULL) {
254 		r = amdgpu_bo_create(adev, AMDGPU_GPU_PAGE_SIZE,
255 				     PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_VRAM,
256 				     AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
257 				     NULL, NULL, &adev->vram_scratch.robj);
258 		if (r) {
259 			return r;
260 		}
261 	}
262 
263 	r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
264 	if (unlikely(r != 0))
265 		return r;
266 	r = amdgpu_bo_pin(adev->vram_scratch.robj,
267 			  AMDGPU_GEM_DOMAIN_VRAM, &adev->vram_scratch.gpu_addr);
268 	if (r) {
269 		amdgpu_bo_unreserve(adev->vram_scratch.robj);
270 		return r;
271 	}
272 	r = amdgpu_bo_kmap(adev->vram_scratch.robj,
273 				(void **)&adev->vram_scratch.ptr);
274 	if (r)
275 		amdgpu_bo_unpin(adev->vram_scratch.robj);
276 	amdgpu_bo_unreserve(adev->vram_scratch.robj);
277 
278 	return r;
279 }
280 
281 static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev)
282 {
283 	int r;
284 
285 	if (adev->vram_scratch.robj == NULL) {
286 		return;
287 	}
288 	r = amdgpu_bo_reserve(adev->vram_scratch.robj, false);
289 	if (likely(r == 0)) {
290 		amdgpu_bo_kunmap(adev->vram_scratch.robj);
291 		amdgpu_bo_unpin(adev->vram_scratch.robj);
292 		amdgpu_bo_unreserve(adev->vram_scratch.robj);
293 	}
294 	amdgpu_bo_unref(&adev->vram_scratch.robj);
295 }
296 
297 /**
298  * amdgpu_program_register_sequence - program an array of registers.
299  *
300  * @adev: amdgpu_device pointer
301  * @registers: pointer to the register array
302  * @array_size: size of the register array
303  *
304  * Programs an array or registers with and and or masks.
305  * This is a helper for setting golden registers.
306  */
307 void amdgpu_program_register_sequence(struct amdgpu_device *adev,
308 				      const u32 *registers,
309 				      const u32 array_size)
310 {
311 	u32 tmp, reg, and_mask, or_mask;
312 	int i;
313 
314 	if (array_size % 3)
315 		return;
316 
317 	for (i = 0; i < array_size; i +=3) {
318 		reg = registers[i + 0];
319 		and_mask = registers[i + 1];
320 		or_mask = registers[i + 2];
321 
322 		if (and_mask == 0xffffffff) {
323 			tmp = or_mask;
324 		} else {
325 			tmp = RREG32(reg);
326 			tmp &= ~and_mask;
327 			tmp |= or_mask;
328 		}
329 		WREG32(reg, tmp);
330 	}
331 }
332 
333 void amdgpu_pci_config_reset(struct amdgpu_device *adev)
334 {
335 	pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA);
336 }
337 
338 /*
339  * GPU doorbell aperture helpers function.
340  */
341 /**
342  * amdgpu_doorbell_init - Init doorbell driver information.
343  *
344  * @adev: amdgpu_device pointer
345  *
346  * Init doorbell driver information (CIK)
347  * Returns 0 on success, error on failure.
348  */
349 static int amdgpu_doorbell_init(struct amdgpu_device *adev)
350 {
351 	/* doorbell bar mapping */
352 	adev->doorbell.base = pci_resource_start(adev->pdev, 2);
353 	adev->doorbell.size = pci_resource_len(adev->pdev, 2);
354 
355 	adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
356 					     AMDGPU_DOORBELL_MAX_ASSIGNMENT+1);
357 	if (adev->doorbell.num_doorbells == 0)
358 		return -EINVAL;
359 
360 	adev->doorbell.ptr = ioremap(adev->doorbell.base, adev->doorbell.num_doorbells * sizeof(u32));
361 	if (adev->doorbell.ptr == NULL) {
362 		return -ENOMEM;
363 	}
364 	DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)adev->doorbell.base);
365 	DRM_INFO("doorbell mmio size: %u\n", (unsigned)adev->doorbell.size);
366 
367 	return 0;
368 }
369 
370 /**
371  * amdgpu_doorbell_fini - Tear down doorbell driver information.
372  *
373  * @adev: amdgpu_device pointer
374  *
375  * Tear down doorbell driver information (CIK)
376  */
377 static void amdgpu_doorbell_fini(struct amdgpu_device *adev)
378 {
379 	iounmap(adev->doorbell.ptr);
380 	adev->doorbell.ptr = NULL;
381 }
382 
383 /**
384  * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
385  *                                setup amdkfd
386  *
387  * @adev: amdgpu_device pointer
388  * @aperture_base: output returning doorbell aperture base physical address
389  * @aperture_size: output returning doorbell aperture size in bytes
390  * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
391  *
392  * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
393  * takes doorbells required for its own rings and reports the setup to amdkfd.
394  * amdgpu reserved doorbells are at the start of the doorbell aperture.
395  */
396 void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
397 				phys_addr_t *aperture_base,
398 				size_t *aperture_size,
399 				size_t *start_offset)
400 {
401 	/*
402 	 * The first num_doorbells are used by amdgpu.
403 	 * amdkfd takes whatever's left in the aperture.
404 	 */
405 	if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
406 		*aperture_base = adev->doorbell.base;
407 		*aperture_size = adev->doorbell.size;
408 		*start_offset = adev->doorbell.num_doorbells * sizeof(u32);
409 	} else {
410 		*aperture_base = 0;
411 		*aperture_size = 0;
412 		*start_offset = 0;
413 	}
414 }
415 
416 /*
417  * amdgpu_wb_*()
418  * Writeback is the the method by which the the GPU updates special pages
419  * in memory with the status of certain GPU events (fences, ring pointers,
420  * etc.).
421  */
422 
423 /**
424  * amdgpu_wb_fini - Disable Writeback and free memory
425  *
426  * @adev: amdgpu_device pointer
427  *
428  * Disables Writeback and frees the Writeback memory (all asics).
429  * Used at driver shutdown.
430  */
431 static void amdgpu_wb_fini(struct amdgpu_device *adev)
432 {
433 	if (adev->wb.wb_obj) {
434 		if (!amdgpu_bo_reserve(adev->wb.wb_obj, false)) {
435 			amdgpu_bo_kunmap(adev->wb.wb_obj);
436 			amdgpu_bo_unpin(adev->wb.wb_obj);
437 			amdgpu_bo_unreserve(adev->wb.wb_obj);
438 		}
439 		amdgpu_bo_unref(&adev->wb.wb_obj);
440 		adev->wb.wb = NULL;
441 		adev->wb.wb_obj = NULL;
442 	}
443 }
444 
445 /**
446  * amdgpu_wb_init- Init Writeback driver info and allocate memory
447  *
448  * @adev: amdgpu_device pointer
449  *
450  * Disables Writeback and frees the Writeback memory (all asics).
451  * Used at driver startup.
452  * Returns 0 on success or an -error on failure.
453  */
454 static int amdgpu_wb_init(struct amdgpu_device *adev)
455 {
456 	int r;
457 
458 	if (adev->wb.wb_obj == NULL) {
459 		r = amdgpu_bo_create(adev, AMDGPU_MAX_WB * 4, PAGE_SIZE, true,
460 				     AMDGPU_GEM_DOMAIN_GTT, 0,  NULL, NULL,
461 				     &adev->wb.wb_obj);
462 		if (r) {
463 			dev_warn(adev->dev, "(%d) create WB bo failed\n", r);
464 			return r;
465 		}
466 		r = amdgpu_bo_reserve(adev->wb.wb_obj, false);
467 		if (unlikely(r != 0)) {
468 			amdgpu_wb_fini(adev);
469 			return r;
470 		}
471 		r = amdgpu_bo_pin(adev->wb.wb_obj, AMDGPU_GEM_DOMAIN_GTT,
472 				&adev->wb.gpu_addr);
473 		if (r) {
474 			amdgpu_bo_unreserve(adev->wb.wb_obj);
475 			dev_warn(adev->dev, "(%d) pin WB bo failed\n", r);
476 			amdgpu_wb_fini(adev);
477 			return r;
478 		}
479 		r = amdgpu_bo_kmap(adev->wb.wb_obj, (void **)&adev->wb.wb);
480 		amdgpu_bo_unreserve(adev->wb.wb_obj);
481 		if (r) {
482 			dev_warn(adev->dev, "(%d) map WB bo failed\n", r);
483 			amdgpu_wb_fini(adev);
484 			return r;
485 		}
486 
487 		adev->wb.num_wb = AMDGPU_MAX_WB;
488 		memset(&adev->wb.used, 0, sizeof(adev->wb.used));
489 
490 		/* clear wb memory */
491 		memset((char *)adev->wb.wb, 0, AMDGPU_GPU_PAGE_SIZE);
492 	}
493 
494 	return 0;
495 }
496 
497 /**
498  * amdgpu_wb_get - Allocate a wb entry
499  *
500  * @adev: amdgpu_device pointer
501  * @wb: wb index
502  *
503  * Allocate a wb slot for use by the driver (all asics).
504  * Returns 0 on success or -EINVAL on failure.
505  */
506 int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb)
507 {
508 	unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb);
509 	if (offset < adev->wb.num_wb) {
510 		__set_bit(offset, adev->wb.used);
511 		*wb = offset;
512 		return 0;
513 	} else {
514 		return -EINVAL;
515 	}
516 }
517 
518 /**
519  * amdgpu_wb_free - Free a wb entry
520  *
521  * @adev: amdgpu_device pointer
522  * @wb: wb index
523  *
524  * Free a wb slot allocated for use by the driver (all asics)
525  */
526 void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb)
527 {
528 	if (wb < adev->wb.num_wb)
529 		__clear_bit(wb, adev->wb.used);
530 }
531 
532 /**
533  * amdgpu_vram_location - try to find VRAM location
534  * @adev: amdgpu device structure holding all necessary informations
535  * @mc: memory controller structure holding memory informations
536  * @base: base address at which to put VRAM
537  *
538  * Function will place try to place VRAM at base address provided
539  * as parameter (which is so far either PCI aperture address or
540  * for IGP TOM base address).
541  *
542  * If there is not enough space to fit the unvisible VRAM in the 32bits
543  * address space then we limit the VRAM size to the aperture.
544  *
545  * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
546  * this shouldn't be a problem as we are using the PCI aperture as a reference.
547  * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
548  * not IGP.
549  *
550  * Note: we use mc_vram_size as on some board we need to program the mc to
551  * cover the whole aperture even if VRAM size is inferior to aperture size
552  * Novell bug 204882 + along with lots of ubuntu ones
553  *
554  * Note: when limiting vram it's safe to overwritte real_vram_size because
555  * we are not in case where real_vram_size is inferior to mc_vram_size (ie
556  * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
557  * ones)
558  *
559  * Note: IGP TOM addr should be the same as the aperture addr, we don't
560  * explicitly check for that thought.
561  *
562  * FIXME: when reducing VRAM size align new size on power of 2.
563  */
564 void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base)
565 {
566 	uint64_t limit = (uint64_t)amdgpu_vram_limit << 20;
567 
568 	mc->vram_start = base;
569 	if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) {
570 		dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n");
571 		mc->real_vram_size = mc->aper_size;
572 		mc->mc_vram_size = mc->aper_size;
573 	}
574 	mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
575 	if (limit && limit < mc->real_vram_size)
576 		mc->real_vram_size = limit;
577 	dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
578 			mc->mc_vram_size >> 20, mc->vram_start,
579 			mc->vram_end, mc->real_vram_size >> 20);
580 }
581 
582 /**
583  * amdgpu_gtt_location - try to find GTT location
584  * @adev: amdgpu device structure holding all necessary informations
585  * @mc: memory controller structure holding memory informations
586  *
587  * Function will place try to place GTT before or after VRAM.
588  *
589  * If GTT size is bigger than space left then we ajust GTT size.
590  * Thus function will never fails.
591  *
592  * FIXME: when reducing GTT size align new size on power of 2.
593  */
594 void amdgpu_gtt_location(struct amdgpu_device *adev, struct amdgpu_mc *mc)
595 {
596 	u64 size_af, size_bf;
597 
598 	size_af = ((adev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align;
599 	size_bf = mc->vram_start & ~mc->gtt_base_align;
600 	if (size_bf > size_af) {
601 		if (mc->gtt_size > size_bf) {
602 			dev_warn(adev->dev, "limiting GTT\n");
603 			mc->gtt_size = size_bf;
604 		}
605 		mc->gtt_start = (mc->vram_start & ~mc->gtt_base_align) - mc->gtt_size;
606 	} else {
607 		if (mc->gtt_size > size_af) {
608 			dev_warn(adev->dev, "limiting GTT\n");
609 			mc->gtt_size = size_af;
610 		}
611 		mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align;
612 	}
613 	mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
614 	dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
615 			mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
616 }
617 
618 /*
619  * GPU helpers function.
620  */
621 /**
622  * amdgpu_card_posted - check if the hw has already been initialized
623  *
624  * @adev: amdgpu_device pointer
625  *
626  * Check if the asic has been initialized (all asics).
627  * Used at driver startup.
628  * Returns true if initialized or false if not.
629  */
630 bool amdgpu_card_posted(struct amdgpu_device *adev)
631 {
632 	uint32_t reg;
633 
634 	/* then check MEM_SIZE, in case the crtcs are off */
635 	reg = RREG32(mmCONFIG_MEMSIZE);
636 
637 	if (reg)
638 		return true;
639 
640 	return false;
641 
642 }
643 
644 /**
645  * amdgpu_dummy_page_init - init dummy page used by the driver
646  *
647  * @adev: amdgpu_device pointer
648  *
649  * Allocate the dummy page used by the driver (all asics).
650  * This dummy page is used by the driver as a filler for gart entries
651  * when pages are taken out of the GART
652  * Returns 0 on sucess, -ENOMEM on failure.
653  */
654 int amdgpu_dummy_page_init(struct amdgpu_device *adev)
655 {
656 	if (adev->dummy_page.page)
657 		return 0;
658 	adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
659 	if (adev->dummy_page.page == NULL)
660 		return -ENOMEM;
661 	adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page,
662 					0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
663 	if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) {
664 		dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n");
665 		__free_page(adev->dummy_page.page);
666 		adev->dummy_page.page = NULL;
667 		return -ENOMEM;
668 	}
669 	return 0;
670 }
671 
672 /**
673  * amdgpu_dummy_page_fini - free dummy page used by the driver
674  *
675  * @adev: amdgpu_device pointer
676  *
677  * Frees the dummy page used by the driver (all asics).
678  */
679 void amdgpu_dummy_page_fini(struct amdgpu_device *adev)
680 {
681 	if (adev->dummy_page.page == NULL)
682 		return;
683 	pci_unmap_page(adev->pdev, adev->dummy_page.addr,
684 			PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
685 	__free_page(adev->dummy_page.page);
686 	adev->dummy_page.page = NULL;
687 }
688 
689 
690 /* ATOM accessor methods */
691 /*
692  * ATOM is an interpreted byte code stored in tables in the vbios.  The
693  * driver registers callbacks to access registers and the interpreter
694  * in the driver parses the tables and executes then to program specific
695  * actions (set display modes, asic init, etc.).  See amdgpu_atombios.c,
696  * atombios.h, and atom.c
697  */
698 
699 /**
700  * cail_pll_read - read PLL register
701  *
702  * @info: atom card_info pointer
703  * @reg: PLL register offset
704  *
705  * Provides a PLL register accessor for the atom interpreter (r4xx+).
706  * Returns the value of the PLL register.
707  */
708 static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
709 {
710 	return 0;
711 }
712 
713 /**
714  * cail_pll_write - write PLL register
715  *
716  * @info: atom card_info pointer
717  * @reg: PLL register offset
718  * @val: value to write to the pll register
719  *
720  * Provides a PLL register accessor for the atom interpreter (r4xx+).
721  */
722 static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
723 {
724 
725 }
726 
727 /**
728  * cail_mc_read - read MC (Memory Controller) register
729  *
730  * @info: atom card_info pointer
731  * @reg: MC register offset
732  *
733  * Provides an MC register accessor for the atom interpreter (r4xx+).
734  * Returns the value of the MC register.
735  */
736 static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
737 {
738 	return 0;
739 }
740 
741 /**
742  * cail_mc_write - write MC (Memory Controller) register
743  *
744  * @info: atom card_info pointer
745  * @reg: MC register offset
746  * @val: value to write to the pll register
747  *
748  * Provides a MC register accessor for the atom interpreter (r4xx+).
749  */
750 static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
751 {
752 
753 }
754 
755 /**
756  * cail_reg_write - write MMIO register
757  *
758  * @info: atom card_info pointer
759  * @reg: MMIO register offset
760  * @val: value to write to the pll register
761  *
762  * Provides a MMIO register accessor for the atom interpreter (r4xx+).
763  */
764 static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
765 {
766 	struct amdgpu_device *adev = info->dev->dev_private;
767 
768 	WREG32(reg, val);
769 }
770 
771 /**
772  * cail_reg_read - read MMIO register
773  *
774  * @info: atom card_info pointer
775  * @reg: MMIO register offset
776  *
777  * Provides an MMIO register accessor for the atom interpreter (r4xx+).
778  * Returns the value of the MMIO register.
779  */
780 static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
781 {
782 	struct amdgpu_device *adev = info->dev->dev_private;
783 	uint32_t r;
784 
785 	r = RREG32(reg);
786 	return r;
787 }
788 
789 /**
790  * cail_ioreg_write - write IO register
791  *
792  * @info: atom card_info pointer
793  * @reg: IO register offset
794  * @val: value to write to the pll register
795  *
796  * Provides a IO register accessor for the atom interpreter (r4xx+).
797  */
798 static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
799 {
800 	struct amdgpu_device *adev = info->dev->dev_private;
801 
802 	WREG32_IO(reg, val);
803 }
804 
805 /**
806  * cail_ioreg_read - read IO register
807  *
808  * @info: atom card_info pointer
809  * @reg: IO register offset
810  *
811  * Provides an IO register accessor for the atom interpreter (r4xx+).
812  * Returns the value of the IO register.
813  */
814 static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
815 {
816 	struct amdgpu_device *adev = info->dev->dev_private;
817 	uint32_t r;
818 
819 	r = RREG32_IO(reg);
820 	return r;
821 }
822 
823 /**
824  * amdgpu_atombios_fini - free the driver info and callbacks for atombios
825  *
826  * @adev: amdgpu_device pointer
827  *
828  * Frees the driver info and register access callbacks for the ATOM
829  * interpreter (r4xx+).
830  * Called at driver shutdown.
831  */
832 static void amdgpu_atombios_fini(struct amdgpu_device *adev)
833 {
834 	if (adev->mode_info.atom_context)
835 		kfree(adev->mode_info.atom_context->scratch);
836 	kfree(adev->mode_info.atom_context);
837 	adev->mode_info.atom_context = NULL;
838 	kfree(adev->mode_info.atom_card_info);
839 	adev->mode_info.atom_card_info = NULL;
840 }
841 
842 /**
843  * amdgpu_atombios_init - init the driver info and callbacks for atombios
844  *
845  * @adev: amdgpu_device pointer
846  *
847  * Initializes the driver info and register access callbacks for the
848  * ATOM interpreter (r4xx+).
849  * Returns 0 on sucess, -ENOMEM on failure.
850  * Called at driver startup.
851  */
852 static int amdgpu_atombios_init(struct amdgpu_device *adev)
853 {
854 	struct card_info *atom_card_info =
855 	    kzalloc(sizeof(struct card_info), GFP_KERNEL);
856 
857 	if (!atom_card_info)
858 		return -ENOMEM;
859 
860 	adev->mode_info.atom_card_info = atom_card_info;
861 	atom_card_info->dev = adev->ddev;
862 	atom_card_info->reg_read = cail_reg_read;
863 	atom_card_info->reg_write = cail_reg_write;
864 	/* needed for iio ops */
865 	if (adev->rio_mem) {
866 		atom_card_info->ioreg_read = cail_ioreg_read;
867 		atom_card_info->ioreg_write = cail_ioreg_write;
868 	} else {
869 		DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
870 		atom_card_info->ioreg_read = cail_reg_read;
871 		atom_card_info->ioreg_write = cail_reg_write;
872 	}
873 	atom_card_info->mc_read = cail_mc_read;
874 	atom_card_info->mc_write = cail_mc_write;
875 	atom_card_info->pll_read = cail_pll_read;
876 	atom_card_info->pll_write = cail_pll_write;
877 
878 	adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
879 	if (!adev->mode_info.atom_context) {
880 		amdgpu_atombios_fini(adev);
881 		return -ENOMEM;
882 	}
883 
884 	mutex_init(&adev->mode_info.atom_context->mutex);
885 	amdgpu_atombios_scratch_regs_init(adev);
886 	amdgpu_atom_allocate_fb_scratch(adev->mode_info.atom_context);
887 	return 0;
888 }
889 
890 /* if we get transitioned to only one device, take VGA back */
891 /**
892  * amdgpu_vga_set_decode - enable/disable vga decode
893  *
894  * @cookie: amdgpu_device pointer
895  * @state: enable/disable vga decode
896  *
897  * Enable/disable vga decode (all asics).
898  * Returns VGA resource flags.
899  */
900 static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
901 {
902 	struct amdgpu_device *adev = cookie;
903 	amdgpu_asic_set_vga_state(adev, state);
904 	if (state)
905 		return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
906 		       VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
907 	else
908 		return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
909 }
910 
911 /**
912  * amdgpu_check_pot_argument - check that argument is a power of two
913  *
914  * @arg: value to check
915  *
916  * Validates that a certain argument is a power of two (all asics).
917  * Returns true if argument is valid.
918  */
919 static bool amdgpu_check_pot_argument(int arg)
920 {
921 	return (arg & (arg - 1)) == 0;
922 }
923 
924 /**
925  * amdgpu_check_arguments - validate module params
926  *
927  * @adev: amdgpu_device pointer
928  *
929  * Validates certain module parameters and updates
930  * the associated values used by the driver (all asics).
931  */
932 static void amdgpu_check_arguments(struct amdgpu_device *adev)
933 {
934 	if (amdgpu_sched_jobs < 4) {
935 		dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
936 			 amdgpu_sched_jobs);
937 		amdgpu_sched_jobs = 4;
938 	} else if (!amdgpu_check_pot_argument(amdgpu_sched_jobs)){
939 		dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
940 			 amdgpu_sched_jobs);
941 		amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
942 	}
943 
944 	if (amdgpu_gart_size != -1) {
945 		/* gtt size must be greater or equal to 32M */
946 		if (amdgpu_gart_size < 32) {
947 			dev_warn(adev->dev, "gart size (%d) too small\n",
948 				 amdgpu_gart_size);
949 			amdgpu_gart_size = -1;
950 		}
951 	}
952 
953 	if (!amdgpu_check_pot_argument(amdgpu_vm_size)) {
954 		dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
955 			 amdgpu_vm_size);
956 		amdgpu_vm_size = 8;
957 	}
958 
959 	if (amdgpu_vm_size < 1) {
960 		dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
961 			 amdgpu_vm_size);
962 		amdgpu_vm_size = 8;
963 	}
964 
965 	/*
966 	 * Max GPUVM size for Cayman, SI and CI are 40 bits.
967 	 */
968 	if (amdgpu_vm_size > 1024) {
969 		dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
970 			 amdgpu_vm_size);
971 		amdgpu_vm_size = 8;
972 	}
973 
974 	/* defines number of bits in page table versus page directory,
975 	 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
976 	 * page table and the remaining bits are in the page directory */
977 	if (amdgpu_vm_block_size == -1) {
978 
979 		/* Total bits covered by PD + PTs */
980 		unsigned bits = ilog2(amdgpu_vm_size) + 18;
981 
982 		/* Make sure the PD is 4K in size up to 8GB address space.
983 		   Above that split equal between PD and PTs */
984 		if (amdgpu_vm_size <= 8)
985 			amdgpu_vm_block_size = bits - 9;
986 		else
987 			amdgpu_vm_block_size = (bits + 3) / 2;
988 
989 	} else if (amdgpu_vm_block_size < 9) {
990 		dev_warn(adev->dev, "VM page table size (%d) too small\n",
991 			 amdgpu_vm_block_size);
992 		amdgpu_vm_block_size = 9;
993 	}
994 
995 	if (amdgpu_vm_block_size > 24 ||
996 	    (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
997 		dev_warn(adev->dev, "VM page table size (%d) too large\n",
998 			 amdgpu_vm_block_size);
999 		amdgpu_vm_block_size = 9;
1000 	}
1001 }
1002 
1003 /**
1004  * amdgpu_switcheroo_set_state - set switcheroo state
1005  *
1006  * @pdev: pci dev pointer
1007  * @state: vga_switcheroo state
1008  *
1009  * Callback for the switcheroo driver.  Suspends or resumes the
1010  * the asics before or after it is powered up using ACPI methods.
1011  */
1012 static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1013 {
1014 	struct drm_device *dev = pci_get_drvdata(pdev);
1015 
1016 	if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1017 		return;
1018 
1019 	if (state == VGA_SWITCHEROO_ON) {
1020 		unsigned d3_delay = dev->pdev->d3_delay;
1021 
1022 		printk(KERN_INFO "amdgpu: switched on\n");
1023 		/* don't suspend or resume card normally */
1024 		dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1025 
1026 		amdgpu_resume_kms(dev, true, true);
1027 
1028 		dev->pdev->d3_delay = d3_delay;
1029 
1030 		dev->switch_power_state = DRM_SWITCH_POWER_ON;
1031 		drm_kms_helper_poll_enable(dev);
1032 	} else {
1033 		printk(KERN_INFO "amdgpu: switched off\n");
1034 		drm_kms_helper_poll_disable(dev);
1035 		dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1036 		amdgpu_suspend_kms(dev, true, true);
1037 		dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1038 	}
1039 }
1040 
1041 /**
1042  * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1043  *
1044  * @pdev: pci dev pointer
1045  *
1046  * Callback for the switcheroo driver.  Check of the switcheroo
1047  * state can be changed.
1048  * Returns true if the state can be changed, false if not.
1049  */
1050 static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1051 {
1052 	struct drm_device *dev = pci_get_drvdata(pdev);
1053 
1054 	/*
1055 	* FIXME: open_count is protected by drm_global_mutex but that would lead to
1056 	* locking inversion with the driver load path. And the access here is
1057 	* completely racy anyway. So don't bother with locking for now.
1058 	*/
1059 	return dev->open_count == 0;
1060 }
1061 
1062 static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1063 	.set_gpu_state = amdgpu_switcheroo_set_state,
1064 	.reprobe = NULL,
1065 	.can_switch = amdgpu_switcheroo_can_switch,
1066 };
1067 
1068 int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
1069 				  enum amd_ip_block_type block_type,
1070 				  enum amd_clockgating_state state)
1071 {
1072 	int i, r = 0;
1073 
1074 	for (i = 0; i < adev->num_ip_blocks; i++) {
1075 		if (adev->ip_blocks[i].type == block_type) {
1076 			r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1077 									    state);
1078 			if (r)
1079 				return r;
1080 		}
1081 	}
1082 	return r;
1083 }
1084 
1085 int amdgpu_set_powergating_state(struct amdgpu_device *adev,
1086 				  enum amd_ip_block_type block_type,
1087 				  enum amd_powergating_state state)
1088 {
1089 	int i, r = 0;
1090 
1091 	for (i = 0; i < adev->num_ip_blocks; i++) {
1092 		if (adev->ip_blocks[i].type == block_type) {
1093 			r = adev->ip_blocks[i].funcs->set_powergating_state((void *)adev,
1094 									    state);
1095 			if (r)
1096 				return r;
1097 		}
1098 	}
1099 	return r;
1100 }
1101 
1102 const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
1103 					struct amdgpu_device *adev,
1104 					enum amd_ip_block_type type)
1105 {
1106 	int i;
1107 
1108 	for (i = 0; i < adev->num_ip_blocks; i++)
1109 		if (adev->ip_blocks[i].type == type)
1110 			return &adev->ip_blocks[i];
1111 
1112 	return NULL;
1113 }
1114 
1115 /**
1116  * amdgpu_ip_block_version_cmp
1117  *
1118  * @adev: amdgpu_device pointer
1119  * @type: enum amd_ip_block_type
1120  * @major: major version
1121  * @minor: minor version
1122  *
1123  * return 0 if equal or greater
1124  * return 1 if smaller or the ip_block doesn't exist
1125  */
1126 int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
1127 				enum amd_ip_block_type type,
1128 				u32 major, u32 minor)
1129 {
1130 	const struct amdgpu_ip_block_version *ip_block;
1131 	ip_block = amdgpu_get_ip_block(adev, type);
1132 
1133 	if (ip_block && ((ip_block->major > major) ||
1134 			((ip_block->major == major) &&
1135 			(ip_block->minor >= minor))))
1136 		return 0;
1137 
1138 	return 1;
1139 }
1140 
1141 static int amdgpu_early_init(struct amdgpu_device *adev)
1142 {
1143 	int i, r;
1144 
1145 	switch (adev->asic_type) {
1146 	case CHIP_TOPAZ:
1147 	case CHIP_TONGA:
1148 	case CHIP_FIJI:
1149 	case CHIP_CARRIZO:
1150 	case CHIP_STONEY:
1151 		if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
1152 			adev->family = AMDGPU_FAMILY_CZ;
1153 		else
1154 			adev->family = AMDGPU_FAMILY_VI;
1155 
1156 		r = vi_set_ip_blocks(adev);
1157 		if (r)
1158 			return r;
1159 		break;
1160 #ifdef CONFIG_DRM_AMDGPU_CIK
1161 	case CHIP_BONAIRE:
1162 	case CHIP_HAWAII:
1163 	case CHIP_KAVERI:
1164 	case CHIP_KABINI:
1165 	case CHIP_MULLINS:
1166 		if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1167 			adev->family = AMDGPU_FAMILY_CI;
1168 		else
1169 			adev->family = AMDGPU_FAMILY_KV;
1170 
1171 		r = cik_set_ip_blocks(adev);
1172 		if (r)
1173 			return r;
1174 		break;
1175 #endif
1176 	default:
1177 		/* FIXME: not supported yet */
1178 		return -EINVAL;
1179 	}
1180 
1181 	adev->ip_block_status = kcalloc(adev->num_ip_blocks,
1182 					sizeof(struct amdgpu_ip_block_status), GFP_KERNEL);
1183 	if (adev->ip_block_status == NULL)
1184 		return -ENOMEM;
1185 
1186 	if (adev->ip_blocks == NULL) {
1187 		DRM_ERROR("No IP blocks found!\n");
1188 		return r;
1189 	}
1190 
1191 	for (i = 0; i < adev->num_ip_blocks; i++) {
1192 		if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1193 			DRM_ERROR("disabled ip block: %d\n", i);
1194 			adev->ip_block_status[i].valid = false;
1195 		} else {
1196 			if (adev->ip_blocks[i].funcs->early_init) {
1197 				r = adev->ip_blocks[i].funcs->early_init((void *)adev);
1198 				if (r == -ENOENT) {
1199 					adev->ip_block_status[i].valid = false;
1200 				} else if (r) {
1201 					DRM_ERROR("early_init %d failed %d\n", i, r);
1202 					return r;
1203 				} else {
1204 					adev->ip_block_status[i].valid = true;
1205 				}
1206 			} else {
1207 				adev->ip_block_status[i].valid = true;
1208 			}
1209 		}
1210 	}
1211 
1212 	return 0;
1213 }
1214 
1215 static int amdgpu_init(struct amdgpu_device *adev)
1216 {
1217 	int i, r;
1218 
1219 	for (i = 0; i < adev->num_ip_blocks; i++) {
1220 		if (!adev->ip_block_status[i].valid)
1221 			continue;
1222 		r = adev->ip_blocks[i].funcs->sw_init((void *)adev);
1223 		if (r) {
1224 			DRM_ERROR("sw_init %d failed %d\n", i, r);
1225 			return r;
1226 		}
1227 		adev->ip_block_status[i].sw = true;
1228 		/* need to do gmc hw init early so we can allocate gpu mem */
1229 		if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC) {
1230 			r = amdgpu_vram_scratch_init(adev);
1231 			if (r) {
1232 				DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
1233 				return r;
1234 			}
1235 			r = adev->ip_blocks[i].funcs->hw_init((void *)adev);
1236 			if (r) {
1237 				DRM_ERROR("hw_init %d failed %d\n", i, r);
1238 				return r;
1239 			}
1240 			r = amdgpu_wb_init(adev);
1241 			if (r) {
1242 				DRM_ERROR("amdgpu_wb_init failed %d\n", r);
1243 				return r;
1244 			}
1245 			adev->ip_block_status[i].hw = true;
1246 		}
1247 	}
1248 
1249 	for (i = 0; i < adev->num_ip_blocks; i++) {
1250 		if (!adev->ip_block_status[i].sw)
1251 			continue;
1252 		/* gmc hw init is done early */
1253 		if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC)
1254 			continue;
1255 		r = adev->ip_blocks[i].funcs->hw_init((void *)adev);
1256 		if (r) {
1257 			DRM_ERROR("hw_init %d failed %d\n", i, r);
1258 			return r;
1259 		}
1260 		adev->ip_block_status[i].hw = true;
1261 	}
1262 
1263 	return 0;
1264 }
1265 
1266 static int amdgpu_late_init(struct amdgpu_device *adev)
1267 {
1268 	int i = 0, r;
1269 
1270 	for (i = 0; i < adev->num_ip_blocks; i++) {
1271 		if (!adev->ip_block_status[i].valid)
1272 			continue;
1273 		/* enable clockgating to save power */
1274 		r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1275 								    AMD_CG_STATE_GATE);
1276 		if (r) {
1277 			DRM_ERROR("set_clockgating_state(gate) %d failed %d\n", i, r);
1278 			return r;
1279 		}
1280 		if (adev->ip_blocks[i].funcs->late_init) {
1281 			r = adev->ip_blocks[i].funcs->late_init((void *)adev);
1282 			if (r) {
1283 				DRM_ERROR("late_init %d failed %d\n", i, r);
1284 				return r;
1285 			}
1286 		}
1287 	}
1288 
1289 	return 0;
1290 }
1291 
1292 static int amdgpu_fini(struct amdgpu_device *adev)
1293 {
1294 	int i, r;
1295 
1296 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1297 		if (!adev->ip_block_status[i].hw)
1298 			continue;
1299 		if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC) {
1300 			amdgpu_wb_fini(adev);
1301 			amdgpu_vram_scratch_fini(adev);
1302 		}
1303 		/* ungate blocks before hw fini so that we can shutdown the blocks safely */
1304 		r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1305 								    AMD_CG_STATE_UNGATE);
1306 		if (r) {
1307 			DRM_ERROR("set_clockgating_state(ungate) %d failed %d\n", i, r);
1308 			return r;
1309 		}
1310 		r = adev->ip_blocks[i].funcs->hw_fini((void *)adev);
1311 		/* XXX handle errors */
1312 		if (r) {
1313 			DRM_DEBUG("hw_fini %d failed %d\n", i, r);
1314 		}
1315 		adev->ip_block_status[i].hw = false;
1316 	}
1317 
1318 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1319 		if (!adev->ip_block_status[i].sw)
1320 			continue;
1321 		r = adev->ip_blocks[i].funcs->sw_fini((void *)adev);
1322 		/* XXX handle errors */
1323 		if (r) {
1324 			DRM_DEBUG("sw_fini %d failed %d\n", i, r);
1325 		}
1326 		adev->ip_block_status[i].sw = false;
1327 		adev->ip_block_status[i].valid = false;
1328 	}
1329 
1330 	return 0;
1331 }
1332 
1333 static int amdgpu_suspend(struct amdgpu_device *adev)
1334 {
1335 	int i, r;
1336 
1337 	for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1338 		if (!adev->ip_block_status[i].valid)
1339 			continue;
1340 		/* ungate blocks so that suspend can properly shut them down */
1341 		r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1342 								    AMD_CG_STATE_UNGATE);
1343 		if (r) {
1344 			DRM_ERROR("set_clockgating_state(ungate) %d failed %d\n", i, r);
1345 		}
1346 		/* XXX handle errors */
1347 		r = adev->ip_blocks[i].funcs->suspend(adev);
1348 		/* XXX handle errors */
1349 		if (r) {
1350 			DRM_ERROR("suspend %d failed %d\n", i, r);
1351 		}
1352 	}
1353 
1354 	return 0;
1355 }
1356 
1357 static int amdgpu_resume(struct amdgpu_device *adev)
1358 {
1359 	int i, r;
1360 
1361 	for (i = 0; i < adev->num_ip_blocks; i++) {
1362 		if (!adev->ip_block_status[i].valid)
1363 			continue;
1364 		r = adev->ip_blocks[i].funcs->resume(adev);
1365 		if (r) {
1366 			DRM_ERROR("resume %d failed %d\n", i, r);
1367 			return r;
1368 		}
1369 	}
1370 
1371 	return 0;
1372 }
1373 
1374 /**
1375  * amdgpu_device_init - initialize the driver
1376  *
1377  * @adev: amdgpu_device pointer
1378  * @pdev: drm dev pointer
1379  * @pdev: pci dev pointer
1380  * @flags: driver flags
1381  *
1382  * Initializes the driver info and hw (all asics).
1383  * Returns 0 for success or an error on failure.
1384  * Called at driver startup.
1385  */
1386 int amdgpu_device_init(struct amdgpu_device *adev,
1387 		       struct drm_device *ddev,
1388 		       struct pci_dev *pdev,
1389 		       uint32_t flags)
1390 {
1391 	int r, i;
1392 	bool runtime = false;
1393 
1394 	adev->shutdown = false;
1395 	adev->dev = &pdev->dev;
1396 	adev->ddev = ddev;
1397 	adev->pdev = pdev;
1398 	adev->flags = flags;
1399 	adev->asic_type = flags & AMD_ASIC_MASK;
1400 	adev->is_atom_bios = false;
1401 	adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
1402 	adev->mc.gtt_size = 512 * 1024 * 1024;
1403 	adev->accel_working = false;
1404 	adev->num_rings = 0;
1405 	adev->mman.buffer_funcs = NULL;
1406 	adev->mman.buffer_funcs_ring = NULL;
1407 	adev->vm_manager.vm_pte_funcs = NULL;
1408 	adev->vm_manager.vm_pte_num_rings = 0;
1409 	adev->gart.gart_funcs = NULL;
1410 	adev->fence_context = fence_context_alloc(AMDGPU_MAX_RINGS);
1411 
1412 	adev->smc_rreg = &amdgpu_invalid_rreg;
1413 	adev->smc_wreg = &amdgpu_invalid_wreg;
1414 	adev->pcie_rreg = &amdgpu_invalid_rreg;
1415 	adev->pcie_wreg = &amdgpu_invalid_wreg;
1416 	adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
1417 	adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
1418 	adev->didt_rreg = &amdgpu_invalid_rreg;
1419 	adev->didt_wreg = &amdgpu_invalid_wreg;
1420 	adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
1421 	adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
1422 
1423 	DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1424 		 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
1425 		 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
1426 
1427 	/* mutex initialization are all done here so we
1428 	 * can recall function without having locking issues */
1429 	mutex_init(&adev->vm_manager.lock);
1430 	atomic_set(&adev->irq.ih.lock, 0);
1431 	mutex_init(&adev->pm.mutex);
1432 	mutex_init(&adev->gfx.gpu_clock_mutex);
1433 	mutex_init(&adev->srbm_mutex);
1434 	mutex_init(&adev->grbm_idx_mutex);
1435 	mutex_init(&adev->mn_lock);
1436 	hash_init(adev->mn_hash);
1437 
1438 	amdgpu_check_arguments(adev);
1439 
1440 	/* Registers mapping */
1441 	/* TODO: block userspace mapping of io register */
1442 	spin_lock_init(&adev->mmio_idx_lock);
1443 	spin_lock_init(&adev->smc_idx_lock);
1444 	spin_lock_init(&adev->pcie_idx_lock);
1445 	spin_lock_init(&adev->uvd_ctx_idx_lock);
1446 	spin_lock_init(&adev->didt_idx_lock);
1447 	spin_lock_init(&adev->audio_endpt_idx_lock);
1448 
1449 	adev->rmmio_base = pci_resource_start(adev->pdev, 5);
1450 	adev->rmmio_size = pci_resource_len(adev->pdev, 5);
1451 	adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
1452 	if (adev->rmmio == NULL) {
1453 		return -ENOMEM;
1454 	}
1455 	DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
1456 	DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
1457 
1458 	/* doorbell bar mapping */
1459 	amdgpu_doorbell_init(adev);
1460 
1461 	/* io port mapping */
1462 	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1463 		if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
1464 			adev->rio_mem_size = pci_resource_len(adev->pdev, i);
1465 			adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
1466 			break;
1467 		}
1468 	}
1469 	if (adev->rio_mem == NULL)
1470 		DRM_ERROR("Unable to find PCI I/O BAR\n");
1471 
1472 	/* early init functions */
1473 	r = amdgpu_early_init(adev);
1474 	if (r)
1475 		return r;
1476 
1477 	/* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
1478 	/* this will fail for cards that aren't VGA class devices, just
1479 	 * ignore it */
1480 	vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
1481 
1482 	if (amdgpu_runtime_pm == 1)
1483 		runtime = true;
1484 	if (amdgpu_device_is_px(ddev) && amdgpu_has_atpx_dgpu_power_cntl())
1485 		runtime = true;
1486 	vga_switcheroo_register_client(adev->pdev, &amdgpu_switcheroo_ops, runtime);
1487 	if (runtime)
1488 		vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
1489 
1490 	/* Read BIOS */
1491 	if (!amdgpu_get_bios(adev))
1492 		return -EINVAL;
1493 	/* Must be an ATOMBIOS */
1494 	if (!adev->is_atom_bios) {
1495 		dev_err(adev->dev, "Expecting atombios for GPU\n");
1496 		return -EINVAL;
1497 	}
1498 	r = amdgpu_atombios_init(adev);
1499 	if (r) {
1500 		dev_err(adev->dev, "amdgpu_atombios_init failed\n");
1501 		return r;
1502 	}
1503 
1504 	/* See if the asic supports SR-IOV */
1505 	adev->virtualization.supports_sr_iov =
1506 		amdgpu_atombios_has_gpu_virtualization_table(adev);
1507 
1508 	/* Post card if necessary */
1509 	if (!amdgpu_card_posted(adev) ||
1510 	    adev->virtualization.supports_sr_iov) {
1511 		if (!adev->bios) {
1512 			dev_err(adev->dev, "Card not posted and no BIOS - ignoring\n");
1513 			return -EINVAL;
1514 		}
1515 		DRM_INFO("GPU not posted. posting now...\n");
1516 		amdgpu_atom_asic_init(adev->mode_info.atom_context);
1517 	}
1518 
1519 	/* Initialize clocks */
1520 	r = amdgpu_atombios_get_clock_info(adev);
1521 	if (r) {
1522 		dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
1523 		return r;
1524 	}
1525 	/* init i2c buses */
1526 	amdgpu_atombios_i2c_init(adev);
1527 
1528 	/* Fence driver */
1529 	r = amdgpu_fence_driver_init(adev);
1530 	if (r) {
1531 		dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
1532 		return r;
1533 	}
1534 
1535 	/* init the mode config */
1536 	drm_mode_config_init(adev->ddev);
1537 
1538 	r = amdgpu_init(adev);
1539 	if (r) {
1540 		dev_err(adev->dev, "amdgpu_init failed\n");
1541 		amdgpu_fini(adev);
1542 		return r;
1543 	}
1544 
1545 	adev->accel_working = true;
1546 
1547 	amdgpu_fbdev_init(adev);
1548 
1549 	r = amdgpu_ib_pool_init(adev);
1550 	if (r) {
1551 		dev_err(adev->dev, "IB initialization failed (%d).\n", r);
1552 		return r;
1553 	}
1554 
1555 	r = amdgpu_ib_ring_tests(adev);
1556 	if (r)
1557 		DRM_ERROR("ib ring test failed (%d).\n", r);
1558 
1559 	r = amdgpu_gem_debugfs_init(adev);
1560 	if (r) {
1561 		DRM_ERROR("registering gem debugfs failed (%d).\n", r);
1562 	}
1563 
1564 	r = amdgpu_debugfs_regs_init(adev);
1565 	if (r) {
1566 		DRM_ERROR("registering register debugfs failed (%d).\n", r);
1567 	}
1568 
1569 	if ((amdgpu_testing & 1)) {
1570 		if (adev->accel_working)
1571 			amdgpu_test_moves(adev);
1572 		else
1573 			DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
1574 	}
1575 	if ((amdgpu_testing & 2)) {
1576 		if (adev->accel_working)
1577 			amdgpu_test_syncing(adev);
1578 		else
1579 			DRM_INFO("amdgpu: acceleration disabled, skipping sync tests\n");
1580 	}
1581 	if (amdgpu_benchmarking) {
1582 		if (adev->accel_working)
1583 			amdgpu_benchmark(adev, amdgpu_benchmarking);
1584 		else
1585 			DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
1586 	}
1587 
1588 	/* enable clockgating, etc. after ib tests, etc. since some blocks require
1589 	 * explicit gating rather than handling it automatically.
1590 	 */
1591 	r = amdgpu_late_init(adev);
1592 	if (r) {
1593 		dev_err(adev->dev, "amdgpu_late_init failed\n");
1594 		return r;
1595 	}
1596 
1597 	return 0;
1598 }
1599 
1600 static void amdgpu_debugfs_remove_files(struct amdgpu_device *adev);
1601 
1602 /**
1603  * amdgpu_device_fini - tear down the driver
1604  *
1605  * @adev: amdgpu_device pointer
1606  *
1607  * Tear down the driver info (all asics).
1608  * Called at driver shutdown.
1609  */
1610 void amdgpu_device_fini(struct amdgpu_device *adev)
1611 {
1612 	int r;
1613 
1614 	DRM_INFO("amdgpu: finishing device.\n");
1615 	adev->shutdown = true;
1616 	/* evict vram memory */
1617 	amdgpu_bo_evict_vram(adev);
1618 	amdgpu_ib_pool_fini(adev);
1619 	amdgpu_fence_driver_fini(adev);
1620 	amdgpu_fbdev_fini(adev);
1621 	r = amdgpu_fini(adev);
1622 	kfree(adev->ip_block_status);
1623 	adev->ip_block_status = NULL;
1624 	adev->accel_working = false;
1625 	/* free i2c buses */
1626 	amdgpu_i2c_fini(adev);
1627 	amdgpu_atombios_fini(adev);
1628 	kfree(adev->bios);
1629 	adev->bios = NULL;
1630 	vga_switcheroo_unregister_client(adev->pdev);
1631 	vga_client_register(adev->pdev, NULL, NULL, NULL);
1632 	if (adev->rio_mem)
1633 		pci_iounmap(adev->pdev, adev->rio_mem);
1634 	adev->rio_mem = NULL;
1635 	iounmap(adev->rmmio);
1636 	adev->rmmio = NULL;
1637 	amdgpu_doorbell_fini(adev);
1638 	amdgpu_debugfs_regs_cleanup(adev);
1639 	amdgpu_debugfs_remove_files(adev);
1640 }
1641 
1642 
1643 /*
1644  * Suspend & resume.
1645  */
1646 /**
1647  * amdgpu_suspend_kms - initiate device suspend
1648  *
1649  * @pdev: drm dev pointer
1650  * @state: suspend state
1651  *
1652  * Puts the hw in the suspend state (all asics).
1653  * Returns 0 for success or an error on failure.
1654  * Called at driver suspend.
1655  */
1656 int amdgpu_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon)
1657 {
1658 	struct amdgpu_device *adev;
1659 	struct drm_crtc *crtc;
1660 	struct drm_connector *connector;
1661 	int r;
1662 
1663 	if (dev == NULL || dev->dev_private == NULL) {
1664 		return -ENODEV;
1665 	}
1666 
1667 	adev = dev->dev_private;
1668 
1669 	if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1670 		return 0;
1671 
1672 	drm_kms_helper_poll_disable(dev);
1673 
1674 	/* turn off display hw */
1675 	drm_modeset_lock_all(dev);
1676 	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1677 		drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
1678 	}
1679 	drm_modeset_unlock_all(dev);
1680 
1681 	/* unpin the front buffers and cursors */
1682 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1683 		struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1684 		struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
1685 		struct amdgpu_bo *robj;
1686 
1687 		if (amdgpu_crtc->cursor_bo) {
1688 			struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
1689 			r = amdgpu_bo_reserve(aobj, false);
1690 			if (r == 0) {
1691 				amdgpu_bo_unpin(aobj);
1692 				amdgpu_bo_unreserve(aobj);
1693 			}
1694 		}
1695 
1696 		if (rfb == NULL || rfb->obj == NULL) {
1697 			continue;
1698 		}
1699 		robj = gem_to_amdgpu_bo(rfb->obj);
1700 		/* don't unpin kernel fb objects */
1701 		if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
1702 			r = amdgpu_bo_reserve(robj, false);
1703 			if (r == 0) {
1704 				amdgpu_bo_unpin(robj);
1705 				amdgpu_bo_unreserve(robj);
1706 			}
1707 		}
1708 	}
1709 	/* evict vram memory */
1710 	amdgpu_bo_evict_vram(adev);
1711 
1712 	amdgpu_fence_driver_suspend(adev);
1713 
1714 	r = amdgpu_suspend(adev);
1715 
1716 	/* evict remaining vram memory */
1717 	amdgpu_bo_evict_vram(adev);
1718 
1719 	pci_save_state(dev->pdev);
1720 	if (suspend) {
1721 		/* Shut down the device */
1722 		pci_disable_device(dev->pdev);
1723 		pci_set_power_state(dev->pdev, PCI_D3hot);
1724 	}
1725 
1726 	if (fbcon) {
1727 		console_lock();
1728 		amdgpu_fbdev_set_suspend(adev, 1);
1729 		console_unlock();
1730 	}
1731 	return 0;
1732 }
1733 
1734 /**
1735  * amdgpu_resume_kms - initiate device resume
1736  *
1737  * @pdev: drm dev pointer
1738  *
1739  * Bring the hw back to operating state (all asics).
1740  * Returns 0 for success or an error on failure.
1741  * Called at driver resume.
1742  */
1743 int amdgpu_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
1744 {
1745 	struct drm_connector *connector;
1746 	struct amdgpu_device *adev = dev->dev_private;
1747 	struct drm_crtc *crtc;
1748 	int r;
1749 
1750 	if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1751 		return 0;
1752 
1753 	if (fbcon) {
1754 		console_lock();
1755 	}
1756 	if (resume) {
1757 		pci_set_power_state(dev->pdev, PCI_D0);
1758 		pci_restore_state(dev->pdev);
1759 		if (pci_enable_device(dev->pdev)) {
1760 			if (fbcon)
1761 				console_unlock();
1762 			return -1;
1763 		}
1764 	}
1765 
1766 	/* post card */
1767 	if (!amdgpu_card_posted(adev))
1768 		amdgpu_atom_asic_init(adev->mode_info.atom_context);
1769 
1770 	r = amdgpu_resume(adev);
1771 	if (r)
1772 		DRM_ERROR("amdgpu_resume failed (%d).\n", r);
1773 
1774 	amdgpu_fence_driver_resume(adev);
1775 
1776 	if (resume) {
1777 		r = amdgpu_ib_ring_tests(adev);
1778 		if (r)
1779 			DRM_ERROR("ib ring test failed (%d).\n", r);
1780 	}
1781 
1782 	r = amdgpu_late_init(adev);
1783 	if (r)
1784 		return r;
1785 
1786 	/* pin cursors */
1787 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1788 		struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1789 
1790 		if (amdgpu_crtc->cursor_bo) {
1791 			struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
1792 			r = amdgpu_bo_reserve(aobj, false);
1793 			if (r == 0) {
1794 				r = amdgpu_bo_pin(aobj,
1795 						  AMDGPU_GEM_DOMAIN_VRAM,
1796 						  &amdgpu_crtc->cursor_addr);
1797 				if (r != 0)
1798 					DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
1799 				amdgpu_bo_unreserve(aobj);
1800 			}
1801 		}
1802 	}
1803 
1804 	/* blat the mode back in */
1805 	if (fbcon) {
1806 		drm_helper_resume_force_mode(dev);
1807 		/* turn on display hw */
1808 		drm_modeset_lock_all(dev);
1809 		list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1810 			drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
1811 		}
1812 		drm_modeset_unlock_all(dev);
1813 	}
1814 
1815 	drm_kms_helper_poll_enable(dev);
1816 	drm_helper_hpd_irq_event(dev);
1817 
1818 	if (fbcon) {
1819 		amdgpu_fbdev_set_suspend(adev, 0);
1820 		console_unlock();
1821 	}
1822 
1823 	return 0;
1824 }
1825 
1826 /**
1827  * amdgpu_gpu_reset - reset the asic
1828  *
1829  * @adev: amdgpu device pointer
1830  *
1831  * Attempt the reset the GPU if it has hung (all asics).
1832  * Returns 0 for success or an error on failure.
1833  */
1834 int amdgpu_gpu_reset(struct amdgpu_device *adev)
1835 {
1836 	unsigned ring_sizes[AMDGPU_MAX_RINGS];
1837 	uint32_t *ring_data[AMDGPU_MAX_RINGS];
1838 
1839 	bool saved = false;
1840 
1841 	int i, r;
1842 	int resched;
1843 
1844 	atomic_inc(&adev->gpu_reset_counter);
1845 
1846 	/* block TTM */
1847 	resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
1848 
1849 	r = amdgpu_suspend(adev);
1850 
1851 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1852 		struct amdgpu_ring *ring = adev->rings[i];
1853 		if (!ring)
1854 			continue;
1855 
1856 		ring_sizes[i] = amdgpu_ring_backup(ring, &ring_data[i]);
1857 		if (ring_sizes[i]) {
1858 			saved = true;
1859 			dev_info(adev->dev, "Saved %d dwords of commands "
1860 				 "on ring %d.\n", ring_sizes[i], i);
1861 		}
1862 	}
1863 
1864 retry:
1865 	r = amdgpu_asic_reset(adev);
1866 	/* post card */
1867 	amdgpu_atom_asic_init(adev->mode_info.atom_context);
1868 
1869 	if (!r) {
1870 		dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
1871 		r = amdgpu_resume(adev);
1872 	}
1873 
1874 	if (!r) {
1875 		for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1876 			struct amdgpu_ring *ring = adev->rings[i];
1877 			if (!ring)
1878 				continue;
1879 
1880 			amdgpu_ring_restore(ring, ring_sizes[i], ring_data[i]);
1881 			ring_sizes[i] = 0;
1882 			ring_data[i] = NULL;
1883 		}
1884 
1885 		r = amdgpu_ib_ring_tests(adev);
1886 		if (r) {
1887 			dev_err(adev->dev, "ib ring test failed (%d).\n", r);
1888 			if (saved) {
1889 				saved = false;
1890 				r = amdgpu_suspend(adev);
1891 				goto retry;
1892 			}
1893 		}
1894 	} else {
1895 		amdgpu_fence_driver_force_completion(adev);
1896 		for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1897 			if (adev->rings[i])
1898 				kfree(ring_data[i]);
1899 		}
1900 	}
1901 
1902 	drm_helper_resume_force_mode(adev->ddev);
1903 
1904 	ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
1905 	if (r) {
1906 		/* bad news, how to tell it to userspace ? */
1907 		dev_info(adev->dev, "GPU reset failed\n");
1908 	}
1909 
1910 	return r;
1911 }
1912 
1913 #define AMDGPU_DEFAULT_PCIE_GEN_MASK 0x30007  /* gen: chipset 1/2, asic 1/2/3 */
1914 #define AMDGPU_DEFAULT_PCIE_MLW_MASK 0x2f0000 /* 1/2/4/8/16 lanes */
1915 
1916 void amdgpu_get_pcie_info(struct amdgpu_device *adev)
1917 {
1918 	u32 mask;
1919 	int ret;
1920 
1921 	if (amdgpu_pcie_gen_cap)
1922 		adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
1923 
1924 	if (amdgpu_pcie_lane_cap)
1925 		adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
1926 
1927 	/* covers APUs as well */
1928 	if (pci_is_root_bus(adev->pdev->bus)) {
1929 		if (adev->pm.pcie_gen_mask == 0)
1930 			adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
1931 		if (adev->pm.pcie_mlw_mask == 0)
1932 			adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
1933 		return;
1934 	}
1935 
1936 	if (adev->pm.pcie_gen_mask == 0) {
1937 		ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
1938 		if (!ret) {
1939 			adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
1940 						  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
1941 						  CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
1942 
1943 			if (mask & DRM_PCIE_SPEED_25)
1944 				adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
1945 			if (mask & DRM_PCIE_SPEED_50)
1946 				adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
1947 			if (mask & DRM_PCIE_SPEED_80)
1948 				adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
1949 		} else {
1950 			adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
1951 		}
1952 	}
1953 	if (adev->pm.pcie_mlw_mask == 0) {
1954 		ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
1955 		if (!ret) {
1956 			switch (mask) {
1957 			case 32:
1958 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
1959 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
1960 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
1961 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
1962 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
1963 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
1964 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
1965 				break;
1966 			case 16:
1967 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
1968 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
1969 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
1970 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
1971 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
1972 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
1973 				break;
1974 			case 12:
1975 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
1976 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
1977 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
1978 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
1979 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
1980 				break;
1981 			case 8:
1982 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
1983 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
1984 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
1985 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
1986 				break;
1987 			case 4:
1988 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
1989 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
1990 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
1991 				break;
1992 			case 2:
1993 				adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
1994 							  CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
1995 				break;
1996 			case 1:
1997 				adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
1998 				break;
1999 			default:
2000 				break;
2001 			}
2002 		} else {
2003 			adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
2004 		}
2005 	}
2006 }
2007 
2008 /*
2009  * Debugfs
2010  */
2011 int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
2012 			     const struct drm_info_list *files,
2013 			     unsigned nfiles)
2014 {
2015 	unsigned i;
2016 
2017 	for (i = 0; i < adev->debugfs_count; i++) {
2018 		if (adev->debugfs[i].files == files) {
2019 			/* Already registered */
2020 			return 0;
2021 		}
2022 	}
2023 
2024 	i = adev->debugfs_count + 1;
2025 	if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
2026 		DRM_ERROR("Reached maximum number of debugfs components.\n");
2027 		DRM_ERROR("Report so we increase "
2028 			  "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
2029 		return -EINVAL;
2030 	}
2031 	adev->debugfs[adev->debugfs_count].files = files;
2032 	adev->debugfs[adev->debugfs_count].num_files = nfiles;
2033 	adev->debugfs_count = i;
2034 #if defined(CONFIG_DEBUG_FS)
2035 	drm_debugfs_create_files(files, nfiles,
2036 				 adev->ddev->control->debugfs_root,
2037 				 adev->ddev->control);
2038 	drm_debugfs_create_files(files, nfiles,
2039 				 adev->ddev->primary->debugfs_root,
2040 				 adev->ddev->primary);
2041 #endif
2042 	return 0;
2043 }
2044 
2045 static void amdgpu_debugfs_remove_files(struct amdgpu_device *adev)
2046 {
2047 #if defined(CONFIG_DEBUG_FS)
2048 	unsigned i;
2049 
2050 	for (i = 0; i < adev->debugfs_count; i++) {
2051 		drm_debugfs_remove_files(adev->debugfs[i].files,
2052 					 adev->debugfs[i].num_files,
2053 					 adev->ddev->control);
2054 		drm_debugfs_remove_files(adev->debugfs[i].files,
2055 					 adev->debugfs[i].num_files,
2056 					 adev->ddev->primary);
2057 	}
2058 #endif
2059 }
2060 
2061 #if defined(CONFIG_DEBUG_FS)
2062 
2063 static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
2064 					size_t size, loff_t *pos)
2065 {
2066 	struct amdgpu_device *adev = f->f_inode->i_private;
2067 	ssize_t result = 0;
2068 	int r;
2069 
2070 	if (size & 0x3 || *pos & 0x3)
2071 		return -EINVAL;
2072 
2073 	while (size) {
2074 		uint32_t value;
2075 
2076 		if (*pos > adev->rmmio_size)
2077 			return result;
2078 
2079 		value = RREG32(*pos >> 2);
2080 		r = put_user(value, (uint32_t *)buf);
2081 		if (r)
2082 			return r;
2083 
2084 		result += 4;
2085 		buf += 4;
2086 		*pos += 4;
2087 		size -= 4;
2088 	}
2089 
2090 	return result;
2091 }
2092 
2093 static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
2094 					 size_t size, loff_t *pos)
2095 {
2096 	struct amdgpu_device *adev = f->f_inode->i_private;
2097 	ssize_t result = 0;
2098 	int r;
2099 
2100 	if (size & 0x3 || *pos & 0x3)
2101 		return -EINVAL;
2102 
2103 	while (size) {
2104 		uint32_t value;
2105 
2106 		if (*pos > adev->rmmio_size)
2107 			return result;
2108 
2109 		r = get_user(value, (uint32_t *)buf);
2110 		if (r)
2111 			return r;
2112 
2113 		WREG32(*pos >> 2, value);
2114 
2115 		result += 4;
2116 		buf += 4;
2117 		*pos += 4;
2118 		size -= 4;
2119 	}
2120 
2121 	return result;
2122 }
2123 
2124 static const struct file_operations amdgpu_debugfs_regs_fops = {
2125 	.owner = THIS_MODULE,
2126 	.read = amdgpu_debugfs_regs_read,
2127 	.write = amdgpu_debugfs_regs_write,
2128 	.llseek = default_llseek
2129 };
2130 
2131 static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
2132 {
2133 	struct drm_minor *minor = adev->ddev->primary;
2134 	struct dentry *ent, *root = minor->debugfs_root;
2135 
2136 	ent = debugfs_create_file("amdgpu_regs", S_IFREG | S_IRUGO, root,
2137 				  adev, &amdgpu_debugfs_regs_fops);
2138 	if (IS_ERR(ent))
2139 		return PTR_ERR(ent);
2140 	i_size_write(ent->d_inode, adev->rmmio_size);
2141 	adev->debugfs_regs = ent;
2142 
2143 	return 0;
2144 }
2145 
2146 static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
2147 {
2148 	debugfs_remove(adev->debugfs_regs);
2149 	adev->debugfs_regs = NULL;
2150 }
2151 
2152 int amdgpu_debugfs_init(struct drm_minor *minor)
2153 {
2154 	return 0;
2155 }
2156 
2157 void amdgpu_debugfs_cleanup(struct drm_minor *minor)
2158 {
2159 }
2160 #else
2161 static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
2162 {
2163 	return 0;
2164 }
2165 static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
2166 #endif
2167