blob: df0953d3b1abb5a0c302307cfedfc99930f98b75 [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 */
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"
Tom St Denisf4b373f2016-05-31 08:02:27 -040038#include "amdgpu_trace.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040039#include "amdgpu_i2c.h"
40#include "atom.h"
41#include "amdgpu_atombios.h"
Alex Deucherd0dd7f02015-11-11 19:45:06 -050042#include "amd_pcie.h"
Alex Deuchera2e73f52015-04-20 17:09:27 -040043#ifdef CONFIG_DRM_AMDGPU_CIK
44#include "cik.h"
45#endif
Alex Deucheraaa36a92015-04-20 17:31:14 -040046#include "vi.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040047#include "bif/bif_4_1_d.h"
48
49static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
50static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
51
52static const char *amdgpu_asic_name[] = {
53 "BONAIRE",
54 "KAVERI",
55 "KABINI",
56 "HAWAII",
57 "MULLINS",
58 "TOPAZ",
59 "TONGA",
David Zhang48299f92015-07-08 01:05:16 +080060 "FIJI",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040061 "CARRIZO",
Samuel Li139f4912015-10-08 14:50:27 -040062 "STONEY",
Flora Cui2cc0c0b2016-03-14 18:33:29 -040063 "POLARIS10",
64 "POLARIS11",
Alex Deucherd38ceaf2015-04-20 16:55:21 -040065 "LAST",
66};
67
68bool amdgpu_device_is_px(struct drm_device *dev)
69{
70 struct amdgpu_device *adev = dev->dev_private;
71
Jammy Zhou2f7d10b2015-07-22 11:29:01 +080072 if (adev->flags & AMD_IS_PX)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040073 return true;
74 return false;
75}
76
77/*
78 * MMIO register access helper functions.
79 */
80uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg,
81 bool always_indirect)
82{
Tom St Denisf4b373f2016-05-31 08:02:27 -040083 uint32_t ret;
84
Alex Deucherd38ceaf2015-04-20 16:55:21 -040085 if ((reg * 4) < adev->rmmio_size && !always_indirect)
Tom St Denisf4b373f2016-05-31 08:02:27 -040086 ret = readl(((void __iomem *)adev->rmmio) + (reg * 4));
Alex Deucherd38ceaf2015-04-20 16:55:21 -040087 else {
88 unsigned long flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040089
90 spin_lock_irqsave(&adev->mmio_idx_lock, flags);
91 writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4));
92 ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4));
93 spin_unlock_irqrestore(&adev->mmio_idx_lock, flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040094 }
Tom St Denisf4b373f2016-05-31 08:02:27 -040095 trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret);
96 return ret;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040097}
98
99void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v,
100 bool always_indirect)
101{
Tom St Denisf4b373f2016-05-31 08:02:27 -0400102 trace_amdgpu_mm_wreg(adev->pdev->device, reg, v);
103
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400104 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
116u32 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
126void 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 */
146u32 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 */
166void 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 */
185static 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 */
202static 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 */
220static 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 */
240static 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
249static 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,
Alex Deucher857d9132015-08-27 00:14:16 -0400255 PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_VRAM,
256 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
Christian König72d76682015-09-03 17:34:59 +0200257 NULL, NULL, &adev->vram_scratch.robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400258 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
281static 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 */
307void 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
333void 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 */
349static 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
Christian Königedf600d2016-05-03 15:54:54 +0200355 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400356 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 */
377static 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 */
396void 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 */
431static 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 */
454static 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,
Christian König72d76682015-09-03 17:34:59 +0200460 AMDGPU_GEM_DOMAIN_GTT, 0, NULL, NULL,
461 &adev->wb.wb_obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400462 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 */
506int 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 */
526void 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 */
564void 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 */
594void 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 */
630bool 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/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400645 * 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 */
654int 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 */
679void 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 */
708static 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 */
722static 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 */
736static 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 */
750static 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 */
764static 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 */
780static 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 */
798static 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 */
814static 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 */
832static void amdgpu_atombios_fini(struct amdgpu_device *adev)
833{
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800834 if (adev->mode_info.atom_context) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400835 kfree(adev->mode_info.atom_context->scratch);
Monk Liu89e0ec9f2016-05-27 19:34:11 +0800836 kfree(adev->mode_info.atom_context->iio);
837 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400838 kfree(adev->mode_info.atom_context);
839 adev->mode_info.atom_context = NULL;
840 kfree(adev->mode_info.atom_card_info);
841 adev->mode_info.atom_card_info = NULL;
842}
843
844/**
845 * amdgpu_atombios_init - init the driver info and callbacks for atombios
846 *
847 * @adev: amdgpu_device pointer
848 *
849 * Initializes the driver info and register access callbacks for the
850 * ATOM interpreter (r4xx+).
851 * Returns 0 on sucess, -ENOMEM on failure.
852 * Called at driver startup.
853 */
854static int amdgpu_atombios_init(struct amdgpu_device *adev)
855{
856 struct card_info *atom_card_info =
857 kzalloc(sizeof(struct card_info), GFP_KERNEL);
858
859 if (!atom_card_info)
860 return -ENOMEM;
861
862 adev->mode_info.atom_card_info = atom_card_info;
863 atom_card_info->dev = adev->ddev;
864 atom_card_info->reg_read = cail_reg_read;
865 atom_card_info->reg_write = cail_reg_write;
866 /* needed for iio ops */
867 if (adev->rio_mem) {
868 atom_card_info->ioreg_read = cail_ioreg_read;
869 atom_card_info->ioreg_write = cail_ioreg_write;
870 } else {
871 DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
872 atom_card_info->ioreg_read = cail_reg_read;
873 atom_card_info->ioreg_write = cail_reg_write;
874 }
875 atom_card_info->mc_read = cail_mc_read;
876 atom_card_info->mc_write = cail_mc_write;
877 atom_card_info->pll_read = cail_pll_read;
878 atom_card_info->pll_write = cail_pll_write;
879
880 adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios);
881 if (!adev->mode_info.atom_context) {
882 amdgpu_atombios_fini(adev);
883 return -ENOMEM;
884 }
885
886 mutex_init(&adev->mode_info.atom_context->mutex);
887 amdgpu_atombios_scratch_regs_init(adev);
888 amdgpu_atom_allocate_fb_scratch(adev->mode_info.atom_context);
889 return 0;
890}
891
892/* if we get transitioned to only one device, take VGA back */
893/**
894 * amdgpu_vga_set_decode - enable/disable vga decode
895 *
896 * @cookie: amdgpu_device pointer
897 * @state: enable/disable vga decode
898 *
899 * Enable/disable vga decode (all asics).
900 * Returns VGA resource flags.
901 */
902static unsigned int amdgpu_vga_set_decode(void *cookie, bool state)
903{
904 struct amdgpu_device *adev = cookie;
905 amdgpu_asic_set_vga_state(adev, state);
906 if (state)
907 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
908 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
909 else
910 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
911}
912
913/**
914 * amdgpu_check_pot_argument - check that argument is a power of two
915 *
916 * @arg: value to check
917 *
918 * Validates that a certain argument is a power of two (all asics).
919 * Returns true if argument is valid.
920 */
921static bool amdgpu_check_pot_argument(int arg)
922{
923 return (arg & (arg - 1)) == 0;
924}
925
926/**
927 * amdgpu_check_arguments - validate module params
928 *
929 * @adev: amdgpu_device pointer
930 *
931 * Validates certain module parameters and updates
932 * the associated values used by the driver (all asics).
933 */
934static void amdgpu_check_arguments(struct amdgpu_device *adev)
935{
Chunming Zhou5b011232015-12-10 17:34:33 +0800936 if (amdgpu_sched_jobs < 4) {
937 dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n",
938 amdgpu_sched_jobs);
939 amdgpu_sched_jobs = 4;
940 } else if (!amdgpu_check_pot_argument(amdgpu_sched_jobs)){
941 dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n",
942 amdgpu_sched_jobs);
943 amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs);
944 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400945
946 if (amdgpu_gart_size != -1) {
Christian Königc4e1a132016-03-17 16:25:15 +0100947 /* gtt size must be greater or equal to 32M */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400948 if (amdgpu_gart_size < 32) {
949 dev_warn(adev->dev, "gart size (%d) too small\n",
950 amdgpu_gart_size);
951 amdgpu_gart_size = -1;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400952 }
953 }
954
955 if (!amdgpu_check_pot_argument(amdgpu_vm_size)) {
956 dev_warn(adev->dev, "VM size (%d) must be a power of 2\n",
957 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -0400958 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400959 }
960
961 if (amdgpu_vm_size < 1) {
962 dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n",
963 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -0400964 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400965 }
966
967 /*
968 * Max GPUVM size for Cayman, SI and CI are 40 bits.
969 */
970 if (amdgpu_vm_size > 1024) {
971 dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n",
972 amdgpu_vm_size);
Alex Deucher8dacc122015-05-11 16:20:58 -0400973 amdgpu_vm_size = 8;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400974 }
975
976 /* defines number of bits in page table versus page directory,
977 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
978 * page table and the remaining bits are in the page directory */
979 if (amdgpu_vm_block_size == -1) {
980
981 /* Total bits covered by PD + PTs */
982 unsigned bits = ilog2(amdgpu_vm_size) + 18;
983
984 /* Make sure the PD is 4K in size up to 8GB address space.
985 Above that split equal between PD and PTs */
986 if (amdgpu_vm_size <= 8)
987 amdgpu_vm_block_size = bits - 9;
988 else
989 amdgpu_vm_block_size = (bits + 3) / 2;
990
991 } else if (amdgpu_vm_block_size < 9) {
992 dev_warn(adev->dev, "VM page table size (%d) too small\n",
993 amdgpu_vm_block_size);
994 amdgpu_vm_block_size = 9;
995 }
996
997 if (amdgpu_vm_block_size > 24 ||
998 (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) {
999 dev_warn(adev->dev, "VM page table size (%d) too large\n",
1000 amdgpu_vm_block_size);
1001 amdgpu_vm_block_size = 9;
1002 }
1003}
1004
1005/**
1006 * amdgpu_switcheroo_set_state - set switcheroo state
1007 *
1008 * @pdev: pci dev pointer
Lukas Wunner16944672015-09-05 11:17:35 +02001009 * @state: vga_switcheroo state
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001010 *
1011 * Callback for the switcheroo driver. Suspends or resumes the
1012 * the asics before or after it is powered up using ACPI methods.
1013 */
1014static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1015{
1016 struct drm_device *dev = pci_get_drvdata(pdev);
1017
1018 if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1019 return;
1020
1021 if (state == VGA_SWITCHEROO_ON) {
1022 unsigned d3_delay = dev->pdev->d3_delay;
1023
1024 printk(KERN_INFO "amdgpu: switched on\n");
1025 /* don't suspend or resume card normally */
1026 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1027
1028 amdgpu_resume_kms(dev, true, true);
1029
1030 dev->pdev->d3_delay = d3_delay;
1031
1032 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1033 drm_kms_helper_poll_enable(dev);
1034 } else {
1035 printk(KERN_INFO "amdgpu: switched off\n");
1036 drm_kms_helper_poll_disable(dev);
1037 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1038 amdgpu_suspend_kms(dev, true, true);
1039 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1040 }
1041}
1042
1043/**
1044 * amdgpu_switcheroo_can_switch - see if switcheroo state can change
1045 *
1046 * @pdev: pci dev pointer
1047 *
1048 * Callback for the switcheroo driver. Check of the switcheroo
1049 * state can be changed.
1050 * Returns true if the state can be changed, false if not.
1051 */
1052static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev)
1053{
1054 struct drm_device *dev = pci_get_drvdata(pdev);
1055
1056 /*
1057 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1058 * locking inversion with the driver load path. And the access here is
1059 * completely racy anyway. So don't bother with locking for now.
1060 */
1061 return dev->open_count == 0;
1062}
1063
1064static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = {
1065 .set_gpu_state = amdgpu_switcheroo_set_state,
1066 .reprobe = NULL,
1067 .can_switch = amdgpu_switcheroo_can_switch,
1068};
1069
1070int amdgpu_set_clockgating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001071 enum amd_ip_block_type block_type,
1072 enum amd_clockgating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001073{
1074 int i, r = 0;
1075
1076 for (i = 0; i < adev->num_ip_blocks; i++) {
1077 if (adev->ip_blocks[i].type == block_type) {
yanyang15fc3aee2015-05-22 14:39:35 -04001078 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001079 state);
1080 if (r)
1081 return r;
1082 }
1083 }
1084 return r;
1085}
1086
1087int amdgpu_set_powergating_state(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001088 enum amd_ip_block_type block_type,
1089 enum amd_powergating_state state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001090{
1091 int i, r = 0;
1092
1093 for (i = 0; i < adev->num_ip_blocks; i++) {
1094 if (adev->ip_blocks[i].type == block_type) {
yanyang15fc3aee2015-05-22 14:39:35 -04001095 r = adev->ip_blocks[i].funcs->set_powergating_state((void *)adev,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001096 state);
1097 if (r)
1098 return r;
1099 }
1100 }
1101 return r;
1102}
1103
1104const struct amdgpu_ip_block_version * amdgpu_get_ip_block(
1105 struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001106 enum amd_ip_block_type type)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001107{
1108 int i;
1109
1110 for (i = 0; i < adev->num_ip_blocks; i++)
1111 if (adev->ip_blocks[i].type == type)
1112 return &adev->ip_blocks[i];
1113
1114 return NULL;
1115}
1116
1117/**
1118 * amdgpu_ip_block_version_cmp
1119 *
1120 * @adev: amdgpu_device pointer
yanyang15fc3aee2015-05-22 14:39:35 -04001121 * @type: enum amd_ip_block_type
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001122 * @major: major version
1123 * @minor: minor version
1124 *
1125 * return 0 if equal or greater
1126 * return 1 if smaller or the ip_block doesn't exist
1127 */
1128int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev,
yanyang15fc3aee2015-05-22 14:39:35 -04001129 enum amd_ip_block_type type,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001130 u32 major, u32 minor)
1131{
1132 const struct amdgpu_ip_block_version *ip_block;
1133 ip_block = amdgpu_get_ip_block(adev, type);
1134
1135 if (ip_block && ((ip_block->major > major) ||
1136 ((ip_block->major == major) &&
1137 (ip_block->minor >= minor))))
1138 return 0;
1139
1140 return 1;
1141}
1142
1143static int amdgpu_early_init(struct amdgpu_device *adev)
1144{
Alex Deucheraaa36a92015-04-20 17:31:14 -04001145 int i, r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001146
1147 switch (adev->asic_type) {
Alex Deucheraaa36a92015-04-20 17:31:14 -04001148 case CHIP_TOPAZ:
1149 case CHIP_TONGA:
David Zhang48299f92015-07-08 01:05:16 +08001150 case CHIP_FIJI:
Flora Cui2cc0c0b2016-03-14 18:33:29 -04001151 case CHIP_POLARIS11:
1152 case CHIP_POLARIS10:
Alex Deucheraaa36a92015-04-20 17:31:14 -04001153 case CHIP_CARRIZO:
Samuel Li39bb0c92015-10-08 16:31:43 -04001154 case CHIP_STONEY:
1155 if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY)
Alex Deucheraaa36a92015-04-20 17:31:14 -04001156 adev->family = AMDGPU_FAMILY_CZ;
1157 else
1158 adev->family = AMDGPU_FAMILY_VI;
1159
1160 r = vi_set_ip_blocks(adev);
1161 if (r)
1162 return r;
1163 break;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001164#ifdef CONFIG_DRM_AMDGPU_CIK
1165 case CHIP_BONAIRE:
1166 case CHIP_HAWAII:
1167 case CHIP_KAVERI:
1168 case CHIP_KABINI:
1169 case CHIP_MULLINS:
1170 if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII))
1171 adev->family = AMDGPU_FAMILY_CI;
1172 else
1173 adev->family = AMDGPU_FAMILY_KV;
1174
1175 r = cik_set_ip_blocks(adev);
1176 if (r)
1177 return r;
1178 break;
1179#endif
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001180 default:
1181 /* FIXME: not supported yet */
1182 return -EINVAL;
1183 }
1184
Alex Deucher8faf0e02015-07-28 11:50:31 -04001185 adev->ip_block_status = kcalloc(adev->num_ip_blocks,
1186 sizeof(struct amdgpu_ip_block_status), GFP_KERNEL);
1187 if (adev->ip_block_status == NULL)
Alex Deucherd8d090b2015-06-26 13:02:57 -04001188 return -ENOMEM;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001189
1190 if (adev->ip_blocks == NULL) {
1191 DRM_ERROR("No IP blocks found!\n");
1192 return r;
1193 }
1194
1195 for (i = 0; i < adev->num_ip_blocks; i++) {
1196 if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
1197 DRM_ERROR("disabled ip block: %d\n", i);
Alex Deucher8faf0e02015-07-28 11:50:31 -04001198 adev->ip_block_status[i].valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001199 } else {
1200 if (adev->ip_blocks[i].funcs->early_init) {
yanyang15fc3aee2015-05-22 14:39:35 -04001201 r = adev->ip_blocks[i].funcs->early_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001202 if (r == -ENOENT) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001203 adev->ip_block_status[i].valid = false;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001204 } else if (r) {
Tom St Denis88a907d2016-05-04 14:28:35 -04001205 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 -04001206 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001207 } else {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001208 adev->ip_block_status[i].valid = true;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001209 }
Alex Deucher974e6b62015-07-10 13:59:44 -04001210 } else {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001211 adev->ip_block_status[i].valid = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001212 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001213 }
1214 }
1215
1216 return 0;
1217}
1218
1219static int amdgpu_init(struct amdgpu_device *adev)
1220{
1221 int i, r;
1222
1223 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001224 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001225 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001226 r = adev->ip_blocks[i].funcs->sw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001227 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001228 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 -04001229 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001230 }
Alex Deucher8faf0e02015-07-28 11:50:31 -04001231 adev->ip_block_status[i].sw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001232 /* need to do gmc hw init early so we can allocate gpu mem */
yanyang15fc3aee2015-05-22 14:39:35 -04001233 if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001234 r = amdgpu_vram_scratch_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001235 if (r) {
1236 DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001237 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001238 }
yanyang15fc3aee2015-05-22 14:39:35 -04001239 r = adev->ip_blocks[i].funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001240 if (r) {
1241 DRM_ERROR("hw_init %d failed %d\n", i, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001242 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001243 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001244 r = amdgpu_wb_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001245 if (r) {
1246 DRM_ERROR("amdgpu_wb_init failed %d\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001247 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001248 }
Alex Deucher8faf0e02015-07-28 11:50:31 -04001249 adev->ip_block_status[i].hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001250 }
1251 }
1252
1253 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001254 if (!adev->ip_block_status[i].sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001255 continue;
1256 /* gmc hw init is done early */
yanyang15fc3aee2015-05-22 14:39:35 -04001257 if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001258 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001259 r = adev->ip_blocks[i].funcs->hw_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001260 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001261 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 -04001262 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001263 }
Alex Deucher8faf0e02015-07-28 11:50:31 -04001264 adev->ip_block_status[i].hw = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001265 }
1266
1267 return 0;
1268}
1269
1270static int amdgpu_late_init(struct amdgpu_device *adev)
1271{
1272 int i = 0, r;
1273
1274 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001275 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001276 continue;
1277 /* enable clockgating to save power */
yanyang15fc3aee2015-05-22 14:39:35 -04001278 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1279 AMD_CG_STATE_GATE);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001280 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001281 DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001282 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001283 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001284 if (adev->ip_blocks[i].funcs->late_init) {
yanyang15fc3aee2015-05-22 14:39:35 -04001285 r = adev->ip_blocks[i].funcs->late_init((void *)adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001286 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001287 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 -04001288 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001289 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001290 }
1291 }
1292
1293 return 0;
1294}
1295
1296static int amdgpu_fini(struct amdgpu_device *adev)
1297{
1298 int i, r;
1299
1300 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001301 if (!adev->ip_block_status[i].hw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001302 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001303 if (adev->ip_blocks[i].type == AMD_IP_BLOCK_TYPE_GMC) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001304 amdgpu_wb_fini(adev);
1305 amdgpu_vram_scratch_fini(adev);
1306 }
1307 /* ungate blocks before hw fini so that we can shutdown the blocks safely */
yanyang15fc3aee2015-05-22 14:39:35 -04001308 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1309 AMD_CG_STATE_UNGATE);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001310 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001311 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 -04001312 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001313 }
yanyang15fc3aee2015-05-22 14:39:35 -04001314 r = adev->ip_blocks[i].funcs->hw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001315 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001316 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001317 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 -05001318 }
Alex Deucher8faf0e02015-07-28 11:50:31 -04001319 adev->ip_block_status[i].hw = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001320 }
1321
1322 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001323 if (!adev->ip_block_status[i].sw)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001324 continue;
yanyang15fc3aee2015-05-22 14:39:35 -04001325 r = adev->ip_blocks[i].funcs->sw_fini((void *)adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001326 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001327 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001328 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 -05001329 }
Alex Deucher8faf0e02015-07-28 11:50:31 -04001330 adev->ip_block_status[i].sw = false;
1331 adev->ip_block_status[i].valid = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001332 }
1333
Monk Liua6dcfd92016-05-19 14:36:34 +08001334 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
1335 if (adev->ip_blocks[i].funcs->late_fini)
1336 adev->ip_blocks[i].funcs->late_fini((void *)adev);
1337 }
1338
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001339 return 0;
1340}
1341
1342static int amdgpu_suspend(struct amdgpu_device *adev)
1343{
1344 int i, r;
1345
Flora Cuic5a93a22016-02-26 10:45:25 +08001346 /* ungate SMC block first */
1347 r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC,
1348 AMD_CG_STATE_UNGATE);
1349 if (r) {
1350 DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r);
1351 }
1352
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001353 for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001354 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001355 continue;
1356 /* ungate blocks so that suspend can properly shut them down */
Flora Cuic5a93a22016-02-26 10:45:25 +08001357 if (i != AMD_IP_BLOCK_TYPE_SMC) {
1358 r = adev->ip_blocks[i].funcs->set_clockgating_state((void *)adev,
1359 AMD_CG_STATE_UNGATE);
1360 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001361 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 +08001362 }
Alex Deucher2c1a2782015-12-07 17:02:53 -05001363 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001364 /* XXX handle errors */
1365 r = adev->ip_blocks[i].funcs->suspend(adev);
1366 /* XXX handle errors */
Alex Deucher2c1a2782015-12-07 17:02:53 -05001367 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001368 DRM_ERROR("suspend of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001369 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001370 }
1371
1372 return 0;
1373}
1374
1375static int amdgpu_resume(struct amdgpu_device *adev)
1376{
1377 int i, r;
1378
1379 for (i = 0; i < adev->num_ip_blocks; i++) {
Alex Deucher8faf0e02015-07-28 11:50:31 -04001380 if (!adev->ip_block_status[i].valid)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001381 continue;
1382 r = adev->ip_blocks[i].funcs->resume(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001383 if (r) {
Tom St Denis822b2ce2016-05-05 10:23:40 -04001384 DRM_ERROR("resume of IP block <%s> failed %d\n", adev->ip_blocks[i].funcs->name, r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001385 return r;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001386 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001387 }
1388
1389 return 0;
1390}
1391
Andres Rodriguez048765a2016-06-11 02:51:32 -04001392static bool amdgpu_device_is_virtual(void)
1393{
1394#ifdef CONFIG_X86
1395 return boot_cpu_has(X86_FEATURE_HYPERVISOR);
1396#else
1397 return false;
1398#endif
1399}
1400
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001401/**
1402 * amdgpu_device_init - initialize the driver
1403 *
1404 * @adev: amdgpu_device pointer
1405 * @pdev: drm dev pointer
1406 * @pdev: pci dev pointer
1407 * @flags: driver flags
1408 *
1409 * Initializes the driver info and hw (all asics).
1410 * Returns 0 for success or an error on failure.
1411 * Called at driver startup.
1412 */
1413int amdgpu_device_init(struct amdgpu_device *adev,
1414 struct drm_device *ddev,
1415 struct pci_dev *pdev,
1416 uint32_t flags)
1417{
1418 int r, i;
1419 bool runtime = false;
1420
1421 adev->shutdown = false;
1422 adev->dev = &pdev->dev;
1423 adev->ddev = ddev;
1424 adev->pdev = pdev;
1425 adev->flags = flags;
Jammy Zhou2f7d10b2015-07-22 11:29:01 +08001426 adev->asic_type = flags & AMD_ASIC_MASK;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001427 adev->is_atom_bios = false;
1428 adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT;
1429 adev->mc.gtt_size = 512 * 1024 * 1024;
1430 adev->accel_working = false;
1431 adev->num_rings = 0;
1432 adev->mman.buffer_funcs = NULL;
1433 adev->mman.buffer_funcs_ring = NULL;
1434 adev->vm_manager.vm_pte_funcs = NULL;
Christian König2d55e452016-02-08 17:37:38 +01001435 adev->vm_manager.vm_pte_num_rings = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001436 adev->gart.gart_funcs = NULL;
1437 adev->fence_context = fence_context_alloc(AMDGPU_MAX_RINGS);
1438
1439 adev->smc_rreg = &amdgpu_invalid_rreg;
1440 adev->smc_wreg = &amdgpu_invalid_wreg;
1441 adev->pcie_rreg = &amdgpu_invalid_rreg;
1442 adev->pcie_wreg = &amdgpu_invalid_wreg;
1443 adev->uvd_ctx_rreg = &amdgpu_invalid_rreg;
1444 adev->uvd_ctx_wreg = &amdgpu_invalid_wreg;
1445 adev->didt_rreg = &amdgpu_invalid_rreg;
1446 adev->didt_wreg = &amdgpu_invalid_wreg;
1447 adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg;
1448 adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg;
1449
Alex Deucher3e39ab92015-06-05 15:04:33 -04001450 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1451 amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device,
1452 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001453
1454 /* mutex initialization are all done here so we
1455 * can recall function without having locking issues */
Christian König8d0a7ce2015-11-03 20:58:50 +01001456 mutex_init(&adev->vm_manager.lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001457 atomic_set(&adev->irq.ih.lock, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001458 mutex_init(&adev->pm.mutex);
1459 mutex_init(&adev->gfx.gpu_clock_mutex);
1460 mutex_init(&adev->srbm_mutex);
1461 mutex_init(&adev->grbm_idx_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001462 mutex_init(&adev->mn_lock);
1463 hash_init(adev->mn_hash);
1464
1465 amdgpu_check_arguments(adev);
1466
1467 /* Registers mapping */
1468 /* TODO: block userspace mapping of io register */
1469 spin_lock_init(&adev->mmio_idx_lock);
1470 spin_lock_init(&adev->smc_idx_lock);
1471 spin_lock_init(&adev->pcie_idx_lock);
1472 spin_lock_init(&adev->uvd_ctx_idx_lock);
1473 spin_lock_init(&adev->didt_idx_lock);
1474 spin_lock_init(&adev->audio_endpt_idx_lock);
1475
1476 adev->rmmio_base = pci_resource_start(adev->pdev, 5);
1477 adev->rmmio_size = pci_resource_len(adev->pdev, 5);
1478 adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size);
1479 if (adev->rmmio == NULL) {
1480 return -ENOMEM;
1481 }
1482 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base);
1483 DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size);
1484
1485 /* doorbell bar mapping */
1486 amdgpu_doorbell_init(adev);
1487
1488 /* io port mapping */
1489 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1490 if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) {
1491 adev->rio_mem_size = pci_resource_len(adev->pdev, i);
1492 adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size);
1493 break;
1494 }
1495 }
1496 if (adev->rio_mem == NULL)
1497 DRM_ERROR("Unable to find PCI I/O BAR\n");
1498
1499 /* early init functions */
1500 r = amdgpu_early_init(adev);
1501 if (r)
1502 return r;
1503
1504 /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */
1505 /* this will fail for cards that aren't VGA class devices, just
1506 * ignore it */
1507 vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode);
1508
1509 if (amdgpu_runtime_pm == 1)
1510 runtime = true;
Alex Deuchere9bef452016-04-25 13:12:18 -04001511 if (amdgpu_device_is_px(ddev))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001512 runtime = true;
1513 vga_switcheroo_register_client(adev->pdev, &amdgpu_switcheroo_ops, runtime);
1514 if (runtime)
1515 vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain);
1516
1517 /* Read BIOS */
Alex Deucher83ba1262016-06-03 18:21:41 -04001518 if (!amdgpu_get_bios(adev)) {
1519 r = -EINVAL;
1520 goto failed;
1521 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001522 /* Must be an ATOMBIOS */
1523 if (!adev->is_atom_bios) {
1524 dev_err(adev->dev, "Expecting atombios for GPU\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001525 r = -EINVAL;
1526 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001527 }
1528 r = amdgpu_atombios_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001529 if (r) {
1530 dev_err(adev->dev, "amdgpu_atombios_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001531 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001532 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001533
Alex Deucher7e471e62016-02-01 11:13:04 -05001534 /* See if the asic supports SR-IOV */
1535 adev->virtualization.supports_sr_iov =
1536 amdgpu_atombios_has_gpu_virtualization_table(adev);
1537
Andres Rodriguez048765a2016-06-11 02:51:32 -04001538 /* Check if we are executing in a virtualized environment */
1539 adev->virtualization.is_virtual = amdgpu_device_is_virtual();
1540 adev->virtualization.caps = amdgpu_asic_get_virtual_caps(adev);
1541
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001542 /* Post card if necessary */
Andres Rodriguez048765a2016-06-11 02:51:32 -04001543 if (!amdgpu_card_posted(adev) ||
1544 (adev->virtualization.is_virtual &&
Dan Carpenter48a70e12016-06-18 11:38:44 +03001545 !(adev->virtualization.caps & AMDGPU_VIRT_CAPS_SRIOV_EN))) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001546 if (!adev->bios) {
1547 dev_err(adev->dev, "Card not posted and no BIOS - ignoring\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001548 r = -EINVAL;
1549 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001550 }
1551 DRM_INFO("GPU not posted. posting now...\n");
1552 amdgpu_atom_asic_init(adev->mode_info.atom_context);
1553 }
1554
1555 /* Initialize clocks */
1556 r = amdgpu_atombios_get_clock_info(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001557 if (r) {
1558 dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001559 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001560 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001561 /* init i2c buses */
1562 amdgpu_atombios_i2c_init(adev);
1563
1564 /* Fence driver */
1565 r = amdgpu_fence_driver_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001566 if (r) {
1567 dev_err(adev->dev, "amdgpu_fence_driver_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001568 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001569 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001570
1571 /* init the mode config */
1572 drm_mode_config_init(adev->ddev);
1573
1574 r = amdgpu_init(adev);
1575 if (r) {
Alex Deucher2c1a2782015-12-07 17:02:53 -05001576 dev_err(adev->dev, "amdgpu_init failed\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001577 amdgpu_fini(adev);
Alex Deucher83ba1262016-06-03 18:21:41 -04001578 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001579 }
1580
1581 adev->accel_working = true;
1582
1583 amdgpu_fbdev_init(adev);
1584
1585 r = amdgpu_ib_pool_init(adev);
1586 if (r) {
1587 dev_err(adev->dev, "IB initialization failed (%d).\n", r);
Alex Deucher83ba1262016-06-03 18:21:41 -04001588 goto failed;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001589 }
1590
1591 r = amdgpu_ib_ring_tests(adev);
1592 if (r)
1593 DRM_ERROR("ib ring test failed (%d).\n", r);
1594
1595 r = amdgpu_gem_debugfs_init(adev);
1596 if (r) {
1597 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
1598 }
1599
1600 r = amdgpu_debugfs_regs_init(adev);
1601 if (r) {
1602 DRM_ERROR("registering register debugfs failed (%d).\n", r);
1603 }
1604
1605 if ((amdgpu_testing & 1)) {
1606 if (adev->accel_working)
1607 amdgpu_test_moves(adev);
1608 else
1609 DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n");
1610 }
1611 if ((amdgpu_testing & 2)) {
1612 if (adev->accel_working)
1613 amdgpu_test_syncing(adev);
1614 else
1615 DRM_INFO("amdgpu: acceleration disabled, skipping sync tests\n");
1616 }
1617 if (amdgpu_benchmarking) {
1618 if (adev->accel_working)
1619 amdgpu_benchmark(adev, amdgpu_benchmarking);
1620 else
1621 DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n");
1622 }
1623
1624 /* enable clockgating, etc. after ib tests, etc. since some blocks require
1625 * explicit gating rather than handling it automatically.
1626 */
1627 r = amdgpu_late_init(adev);
Alex Deucher2c1a2782015-12-07 17:02:53 -05001628 if (r) {
1629 dev_err(adev->dev, "amdgpu_late_init failed\n");
Alex Deucher83ba1262016-06-03 18:21:41 -04001630 goto failed;
Alex Deucher2c1a2782015-12-07 17:02:53 -05001631 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001632
1633 return 0;
Alex Deucher83ba1262016-06-03 18:21:41 -04001634
1635failed:
1636 if (runtime)
1637 vga_switcheroo_fini_domain_pm_ops(adev->dev);
1638 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001639}
1640
1641static void amdgpu_debugfs_remove_files(struct amdgpu_device *adev);
1642
1643/**
1644 * amdgpu_device_fini - tear down the driver
1645 *
1646 * @adev: amdgpu_device pointer
1647 *
1648 * Tear down the driver info (all asics).
1649 * Called at driver shutdown.
1650 */
1651void amdgpu_device_fini(struct amdgpu_device *adev)
1652{
1653 int r;
1654
1655 DRM_INFO("amdgpu: finishing device.\n");
1656 adev->shutdown = true;
1657 /* evict vram memory */
1658 amdgpu_bo_evict_vram(adev);
1659 amdgpu_ib_pool_fini(adev);
1660 amdgpu_fence_driver_fini(adev);
1661 amdgpu_fbdev_fini(adev);
1662 r = amdgpu_fini(adev);
Alex Deucher8faf0e02015-07-28 11:50:31 -04001663 kfree(adev->ip_block_status);
1664 adev->ip_block_status = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001665 adev->accel_working = false;
1666 /* free i2c buses */
1667 amdgpu_i2c_fini(adev);
1668 amdgpu_atombios_fini(adev);
1669 kfree(adev->bios);
1670 adev->bios = NULL;
1671 vga_switcheroo_unregister_client(adev->pdev);
Alex Deucher83ba1262016-06-03 18:21:41 -04001672 if (adev->flags & AMD_IS_PX)
1673 vga_switcheroo_fini_domain_pm_ops(adev->dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001674 vga_client_register(adev->pdev, NULL, NULL, NULL);
1675 if (adev->rio_mem)
1676 pci_iounmap(adev->pdev, adev->rio_mem);
1677 adev->rio_mem = NULL;
1678 iounmap(adev->rmmio);
1679 adev->rmmio = NULL;
1680 amdgpu_doorbell_fini(adev);
1681 amdgpu_debugfs_regs_cleanup(adev);
1682 amdgpu_debugfs_remove_files(adev);
1683}
1684
1685
1686/*
1687 * Suspend & resume.
1688 */
1689/**
1690 * amdgpu_suspend_kms - initiate device suspend
1691 *
1692 * @pdev: drm dev pointer
1693 * @state: suspend state
1694 *
1695 * Puts the hw in the suspend state (all asics).
1696 * Returns 0 for success or an error on failure.
1697 * Called at driver suspend.
1698 */
1699int amdgpu_suspend_kms(struct drm_device *dev, bool suspend, bool fbcon)
1700{
1701 struct amdgpu_device *adev;
1702 struct drm_crtc *crtc;
1703 struct drm_connector *connector;
Alex Deucher5ceb54c2015-08-05 12:41:48 -04001704 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001705
1706 if (dev == NULL || dev->dev_private == NULL) {
1707 return -ENODEV;
1708 }
1709
1710 adev = dev->dev_private;
1711
1712 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1713 return 0;
1714
1715 drm_kms_helper_poll_disable(dev);
1716
1717 /* turn off display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04001718 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001719 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1720 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
1721 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04001722 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001723
Alex Deucher756e6882015-10-08 00:03:36 -04001724 /* unpin the front buffers and cursors */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001725 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Alex Deucher756e6882015-10-08 00:03:36 -04001726 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001727 struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb);
1728 struct amdgpu_bo *robj;
1729
Alex Deucher756e6882015-10-08 00:03:36 -04001730 if (amdgpu_crtc->cursor_bo) {
1731 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
1732 r = amdgpu_bo_reserve(aobj, false);
1733 if (r == 0) {
1734 amdgpu_bo_unpin(aobj);
1735 amdgpu_bo_unreserve(aobj);
1736 }
1737 }
1738
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001739 if (rfb == NULL || rfb->obj == NULL) {
1740 continue;
1741 }
1742 robj = gem_to_amdgpu_bo(rfb->obj);
1743 /* don't unpin kernel fb objects */
1744 if (!amdgpu_fbdev_robj_is_fb(adev, robj)) {
1745 r = amdgpu_bo_reserve(robj, false);
1746 if (r == 0) {
1747 amdgpu_bo_unpin(robj);
1748 amdgpu_bo_unreserve(robj);
1749 }
1750 }
1751 }
1752 /* evict vram memory */
1753 amdgpu_bo_evict_vram(adev);
1754
Alex Deucher5ceb54c2015-08-05 12:41:48 -04001755 amdgpu_fence_driver_suspend(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001756
1757 r = amdgpu_suspend(adev);
1758
1759 /* evict remaining vram memory */
1760 amdgpu_bo_evict_vram(adev);
1761
1762 pci_save_state(dev->pdev);
1763 if (suspend) {
1764 /* Shut down the device */
1765 pci_disable_device(dev->pdev);
1766 pci_set_power_state(dev->pdev, PCI_D3hot);
1767 }
1768
1769 if (fbcon) {
1770 console_lock();
1771 amdgpu_fbdev_set_suspend(adev, 1);
1772 console_unlock();
1773 }
1774 return 0;
1775}
1776
1777/**
1778 * amdgpu_resume_kms - initiate device resume
1779 *
1780 * @pdev: drm dev pointer
1781 *
1782 * Bring the hw back to operating state (all asics).
1783 * Returns 0 for success or an error on failure.
1784 * Called at driver resume.
1785 */
1786int amdgpu_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
1787{
1788 struct drm_connector *connector;
1789 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher756e6882015-10-08 00:03:36 -04001790 struct drm_crtc *crtc;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001791 int r;
1792
1793 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1794 return 0;
1795
1796 if (fbcon) {
1797 console_lock();
1798 }
1799 if (resume) {
1800 pci_set_power_state(dev->pdev, PCI_D0);
1801 pci_restore_state(dev->pdev);
1802 if (pci_enable_device(dev->pdev)) {
1803 if (fbcon)
1804 console_unlock();
1805 return -1;
1806 }
1807 }
1808
1809 /* post card */
Flora Cuica198522016-02-04 15:10:08 +08001810 if (!amdgpu_card_posted(adev))
1811 amdgpu_atom_asic_init(adev->mode_info.atom_context);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001812
1813 r = amdgpu_resume(adev);
Flora Cuica198522016-02-04 15:10:08 +08001814 if (r)
1815 DRM_ERROR("amdgpu_resume failed (%d).\n", r);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001816
Alex Deucher5ceb54c2015-08-05 12:41:48 -04001817 amdgpu_fence_driver_resume(adev);
1818
Flora Cuica198522016-02-04 15:10:08 +08001819 if (resume) {
1820 r = amdgpu_ib_ring_tests(adev);
1821 if (r)
1822 DRM_ERROR("ib ring test failed (%d).\n", r);
1823 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001824
1825 r = amdgpu_late_init(adev);
1826 if (r)
1827 return r;
1828
Alex Deucher756e6882015-10-08 00:03:36 -04001829 /* pin cursors */
1830 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1831 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
1832
1833 if (amdgpu_crtc->cursor_bo) {
1834 struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo);
1835 r = amdgpu_bo_reserve(aobj, false);
1836 if (r == 0) {
1837 r = amdgpu_bo_pin(aobj,
1838 AMDGPU_GEM_DOMAIN_VRAM,
1839 &amdgpu_crtc->cursor_addr);
1840 if (r != 0)
1841 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
1842 amdgpu_bo_unreserve(aobj);
1843 }
1844 }
1845 }
1846
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001847 /* blat the mode back in */
1848 if (fbcon) {
1849 drm_helper_resume_force_mode(dev);
1850 /* turn on display hw */
Alex Deucher4c7fbc32015-09-23 14:32:06 -04001851 drm_modeset_lock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001852 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1853 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
1854 }
Alex Deucher4c7fbc32015-09-23 14:32:06 -04001855 drm_modeset_unlock_all(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001856 }
1857
1858 drm_kms_helper_poll_enable(dev);
Alex Deucher54fb2a52015-11-24 14:30:56 -05001859 drm_helper_hpd_irq_event(dev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001860
1861 if (fbcon) {
1862 amdgpu_fbdev_set_suspend(adev, 0);
1863 console_unlock();
1864 }
1865
1866 return 0;
1867}
1868
1869/**
1870 * amdgpu_gpu_reset - reset the asic
1871 *
1872 * @adev: amdgpu device pointer
1873 *
1874 * Attempt the reset the GPU if it has hung (all asics).
1875 * Returns 0 for success or an error on failure.
1876 */
1877int amdgpu_gpu_reset(struct amdgpu_device *adev)
1878{
1879 unsigned ring_sizes[AMDGPU_MAX_RINGS];
1880 uint32_t *ring_data[AMDGPU_MAX_RINGS];
1881
1882 bool saved = false;
1883
1884 int i, r;
1885 int resched;
1886
Marek Olšákd94aed52015-05-05 21:13:49 +02001887 atomic_inc(&adev->gpu_reset_counter);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001888
1889 /* block TTM */
1890 resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
1891
1892 r = amdgpu_suspend(adev);
1893
1894 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1895 struct amdgpu_ring *ring = adev->rings[i];
1896 if (!ring)
1897 continue;
1898
1899 ring_sizes[i] = amdgpu_ring_backup(ring, &ring_data[i]);
1900 if (ring_sizes[i]) {
1901 saved = true;
1902 dev_info(adev->dev, "Saved %d dwords of commands "
1903 "on ring %d.\n", ring_sizes[i], i);
1904 }
1905 }
1906
1907retry:
1908 r = amdgpu_asic_reset(adev);
Alex Deucherbfa99262016-01-15 11:59:48 -05001909 /* post card */
1910 amdgpu_atom_asic_init(adev->mode_info.atom_context);
1911
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001912 if (!r) {
1913 dev_info(adev->dev, "GPU reset succeeded, trying to resume\n");
1914 r = amdgpu_resume(adev);
1915 }
1916
1917 if (!r) {
1918 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1919 struct amdgpu_ring *ring = adev->rings[i];
1920 if (!ring)
1921 continue;
1922
1923 amdgpu_ring_restore(ring, ring_sizes[i], ring_data[i]);
1924 ring_sizes[i] = 0;
1925 ring_data[i] = NULL;
1926 }
1927
1928 r = amdgpu_ib_ring_tests(adev);
1929 if (r) {
1930 dev_err(adev->dev, "ib ring test failed (%d).\n", r);
1931 if (saved) {
1932 saved = false;
1933 r = amdgpu_suspend(adev);
1934 goto retry;
1935 }
1936 }
1937 } else {
1938 amdgpu_fence_driver_force_completion(adev);
1939 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
1940 if (adev->rings[i])
1941 kfree(ring_data[i]);
1942 }
1943 }
1944
1945 drm_helper_resume_force_mode(adev->ddev);
1946
1947 ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
1948 if (r) {
1949 /* bad news, how to tell it to userspace ? */
1950 dev_info(adev->dev, "GPU reset failed\n");
1951 }
1952
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001953 return r;
1954}
1955
Alex Deuchercd474ba2016-02-04 10:21:23 -05001956#define AMDGPU_DEFAULT_PCIE_GEN_MASK 0x30007 /* gen: chipset 1/2, asic 1/2/3 */
1957#define AMDGPU_DEFAULT_PCIE_MLW_MASK 0x2f0000 /* 1/2/4/8/16 lanes */
1958
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001959void amdgpu_get_pcie_info(struct amdgpu_device *adev)
1960{
1961 u32 mask;
1962 int ret;
1963
Alex Deuchercd474ba2016-02-04 10:21:23 -05001964 if (amdgpu_pcie_gen_cap)
1965 adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap;
1966
1967 if (amdgpu_pcie_lane_cap)
1968 adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap;
1969
1970 /* covers APUs as well */
1971 if (pci_is_root_bus(adev->pdev->bus)) {
1972 if (adev->pm.pcie_gen_mask == 0)
1973 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
1974 if (adev->pm.pcie_mlw_mask == 0)
1975 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001976 return;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05001977 }
Alex Deuchercd474ba2016-02-04 10:21:23 -05001978
1979 if (adev->pm.pcie_gen_mask == 0) {
1980 ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask);
1981 if (!ret) {
1982 adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 |
1983 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 |
1984 CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3);
1985
1986 if (mask & DRM_PCIE_SPEED_25)
1987 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1;
1988 if (mask & DRM_PCIE_SPEED_50)
1989 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2;
1990 if (mask & DRM_PCIE_SPEED_80)
1991 adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3;
1992 } else {
1993 adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK;
1994 }
1995 }
1996 if (adev->pm.pcie_mlw_mask == 0) {
1997 ret = drm_pcie_get_max_link_width(adev->ddev, &mask);
1998 if (!ret) {
1999 switch (mask) {
2000 case 32:
2001 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 |
2002 CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2003 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2004 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2005 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2006 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2007 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2008 break;
2009 case 16:
2010 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 |
2011 CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2012 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2013 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2014 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2015 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2016 break;
2017 case 12:
2018 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 |
2019 CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2020 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2021 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2022 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2023 break;
2024 case 8:
2025 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 |
2026 CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2027 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2028 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2029 break;
2030 case 4:
2031 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 |
2032 CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2033 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2034 break;
2035 case 2:
2036 adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 |
2037 CAIL_PCIE_LINK_WIDTH_SUPPORT_X1);
2038 break;
2039 case 1:
2040 adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1;
2041 break;
2042 default:
2043 break;
2044 }
2045 } else {
2046 adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK;
Alex Deucherd0dd7f02015-11-11 19:45:06 -05002047 }
2048 }
2049}
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002050
2051/*
2052 * Debugfs
2053 */
2054int amdgpu_debugfs_add_files(struct amdgpu_device *adev,
Nils Wallménius06ab6832016-05-02 12:46:15 -04002055 const struct drm_info_list *files,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002056 unsigned nfiles)
2057{
2058 unsigned i;
2059
2060 for (i = 0; i < adev->debugfs_count; i++) {
2061 if (adev->debugfs[i].files == files) {
2062 /* Already registered */
2063 return 0;
2064 }
2065 }
2066
2067 i = adev->debugfs_count + 1;
2068 if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) {
2069 DRM_ERROR("Reached maximum number of debugfs components.\n");
2070 DRM_ERROR("Report so we increase "
2071 "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n");
2072 return -EINVAL;
2073 }
2074 adev->debugfs[adev->debugfs_count].files = files;
2075 adev->debugfs[adev->debugfs_count].num_files = nfiles;
2076 adev->debugfs_count = i;
2077#if defined(CONFIG_DEBUG_FS)
2078 drm_debugfs_create_files(files, nfiles,
2079 adev->ddev->control->debugfs_root,
2080 adev->ddev->control);
2081 drm_debugfs_create_files(files, nfiles,
2082 adev->ddev->primary->debugfs_root,
2083 adev->ddev->primary);
2084#endif
2085 return 0;
2086}
2087
2088static void amdgpu_debugfs_remove_files(struct amdgpu_device *adev)
2089{
2090#if defined(CONFIG_DEBUG_FS)
2091 unsigned i;
2092
2093 for (i = 0; i < adev->debugfs_count; i++) {
2094 drm_debugfs_remove_files(adev->debugfs[i].files,
2095 adev->debugfs[i].num_files,
2096 adev->ddev->control);
2097 drm_debugfs_remove_files(adev->debugfs[i].files,
2098 adev->debugfs[i].num_files,
2099 adev->ddev->primary);
2100 }
2101#endif
2102}
2103
2104#if defined(CONFIG_DEBUG_FS)
2105
2106static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf,
2107 size_t size, loff_t *pos)
2108{
2109 struct amdgpu_device *adev = f->f_inode->i_private;
2110 ssize_t result = 0;
2111 int r;
2112
2113 if (size & 0x3 || *pos & 0x3)
2114 return -EINVAL;
2115
2116 while (size) {
2117 uint32_t value;
2118
2119 if (*pos > adev->rmmio_size)
2120 return result;
2121
2122 value = RREG32(*pos >> 2);
2123 r = put_user(value, (uint32_t *)buf);
2124 if (r)
2125 return r;
2126
2127 result += 4;
2128 buf += 4;
2129 *pos += 4;
2130 size -= 4;
2131 }
2132
2133 return result;
2134}
2135
2136static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf,
2137 size_t size, loff_t *pos)
2138{
2139 struct amdgpu_device *adev = f->f_inode->i_private;
2140 ssize_t result = 0;
2141 int r;
2142
2143 if (size & 0x3 || *pos & 0x3)
2144 return -EINVAL;
2145
2146 while (size) {
2147 uint32_t value;
2148
2149 if (*pos > adev->rmmio_size)
2150 return result;
2151
2152 r = get_user(value, (uint32_t *)buf);
2153 if (r)
2154 return r;
2155
2156 WREG32(*pos >> 2, value);
2157
2158 result += 4;
2159 buf += 4;
2160 *pos += 4;
2161 size -= 4;
2162 }
2163
2164 return result;
2165}
2166
Tom St Denisadcec282016-04-15 13:08:44 -04002167static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf,
2168 size_t size, loff_t *pos)
2169{
2170 struct amdgpu_device *adev = f->f_inode->i_private;
2171 ssize_t result = 0;
2172 int r;
2173
2174 if (size & 0x3 || *pos & 0x3)
2175 return -EINVAL;
2176
2177 while (size) {
2178 uint32_t value;
2179
2180 value = RREG32_PCIE(*pos >> 2);
2181 r = put_user(value, (uint32_t *)buf);
2182 if (r)
2183 return r;
2184
2185 result += 4;
2186 buf += 4;
2187 *pos += 4;
2188 size -= 4;
2189 }
2190
2191 return result;
2192}
2193
2194static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf,
2195 size_t size, loff_t *pos)
2196{
2197 struct amdgpu_device *adev = f->f_inode->i_private;
2198 ssize_t result = 0;
2199 int r;
2200
2201 if (size & 0x3 || *pos & 0x3)
2202 return -EINVAL;
2203
2204 while (size) {
2205 uint32_t value;
2206
2207 r = get_user(value, (uint32_t *)buf);
2208 if (r)
2209 return r;
2210
2211 WREG32_PCIE(*pos >> 2, value);
2212
2213 result += 4;
2214 buf += 4;
2215 *pos += 4;
2216 size -= 4;
2217 }
2218
2219 return result;
2220}
2221
2222static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf,
2223 size_t size, loff_t *pos)
2224{
2225 struct amdgpu_device *adev = f->f_inode->i_private;
2226 ssize_t result = 0;
2227 int r;
2228
2229 if (size & 0x3 || *pos & 0x3)
2230 return -EINVAL;
2231
2232 while (size) {
2233 uint32_t value;
2234
2235 value = RREG32_DIDT(*pos >> 2);
2236 r = put_user(value, (uint32_t *)buf);
2237 if (r)
2238 return r;
2239
2240 result += 4;
2241 buf += 4;
2242 *pos += 4;
2243 size -= 4;
2244 }
2245
2246 return result;
2247}
2248
2249static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf,
2250 size_t size, loff_t *pos)
2251{
2252 struct amdgpu_device *adev = f->f_inode->i_private;
2253 ssize_t result = 0;
2254 int r;
2255
2256 if (size & 0x3 || *pos & 0x3)
2257 return -EINVAL;
2258
2259 while (size) {
2260 uint32_t value;
2261
2262 r = get_user(value, (uint32_t *)buf);
2263 if (r)
2264 return r;
2265
2266 WREG32_DIDT(*pos >> 2, value);
2267
2268 result += 4;
2269 buf += 4;
2270 *pos += 4;
2271 size -= 4;
2272 }
2273
2274 return result;
2275}
2276
2277static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf,
2278 size_t size, loff_t *pos)
2279{
2280 struct amdgpu_device *adev = f->f_inode->i_private;
2281 ssize_t result = 0;
2282 int r;
2283
2284 if (size & 0x3 || *pos & 0x3)
2285 return -EINVAL;
2286
2287 while (size) {
2288 uint32_t value;
2289
2290 value = RREG32_SMC(*pos >> 2);
2291 r = put_user(value, (uint32_t *)buf);
2292 if (r)
2293 return r;
2294
2295 result += 4;
2296 buf += 4;
2297 *pos += 4;
2298 size -= 4;
2299 }
2300
2301 return result;
2302}
2303
2304static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf,
2305 size_t size, loff_t *pos)
2306{
2307 struct amdgpu_device *adev = f->f_inode->i_private;
2308 ssize_t result = 0;
2309 int r;
2310
2311 if (size & 0x3 || *pos & 0x3)
2312 return -EINVAL;
2313
2314 while (size) {
2315 uint32_t value;
2316
2317 r = get_user(value, (uint32_t *)buf);
2318 if (r)
2319 return r;
2320
2321 WREG32_SMC(*pos >> 2, value);
2322
2323 result += 4;
2324 buf += 4;
2325 *pos += 4;
2326 size -= 4;
2327 }
2328
2329 return result;
2330}
2331
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002332static const struct file_operations amdgpu_debugfs_regs_fops = {
2333 .owner = THIS_MODULE,
2334 .read = amdgpu_debugfs_regs_read,
2335 .write = amdgpu_debugfs_regs_write,
2336 .llseek = default_llseek
2337};
Tom St Denisadcec282016-04-15 13:08:44 -04002338static const struct file_operations amdgpu_debugfs_regs_didt_fops = {
2339 .owner = THIS_MODULE,
2340 .read = amdgpu_debugfs_regs_didt_read,
2341 .write = amdgpu_debugfs_regs_didt_write,
2342 .llseek = default_llseek
2343};
2344static const struct file_operations amdgpu_debugfs_regs_pcie_fops = {
2345 .owner = THIS_MODULE,
2346 .read = amdgpu_debugfs_regs_pcie_read,
2347 .write = amdgpu_debugfs_regs_pcie_write,
2348 .llseek = default_llseek
2349};
2350static const struct file_operations amdgpu_debugfs_regs_smc_fops = {
2351 .owner = THIS_MODULE,
2352 .read = amdgpu_debugfs_regs_smc_read,
2353 .write = amdgpu_debugfs_regs_smc_write,
2354 .llseek = default_llseek
2355};
2356
2357static const struct file_operations *debugfs_regs[] = {
2358 &amdgpu_debugfs_regs_fops,
2359 &amdgpu_debugfs_regs_didt_fops,
2360 &amdgpu_debugfs_regs_pcie_fops,
2361 &amdgpu_debugfs_regs_smc_fops,
2362};
2363
2364static const char *debugfs_regs_names[] = {
2365 "amdgpu_regs",
2366 "amdgpu_regs_didt",
2367 "amdgpu_regs_pcie",
2368 "amdgpu_regs_smc",
2369};
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002370
2371static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
2372{
2373 struct drm_minor *minor = adev->ddev->primary;
2374 struct dentry *ent, *root = minor->debugfs_root;
Tom St Denisadcec282016-04-15 13:08:44 -04002375 unsigned i, j;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002376
Tom St Denisadcec282016-04-15 13:08:44 -04002377 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
2378 ent = debugfs_create_file(debugfs_regs_names[i],
2379 S_IFREG | S_IRUGO, root,
2380 adev, debugfs_regs[i]);
2381 if (IS_ERR(ent)) {
2382 for (j = 0; j < i; j++) {
2383 debugfs_remove(adev->debugfs_regs[i]);
2384 adev->debugfs_regs[i] = NULL;
2385 }
2386 return PTR_ERR(ent);
2387 }
2388
2389 if (!i)
2390 i_size_write(ent->d_inode, adev->rmmio_size);
2391 adev->debugfs_regs[i] = ent;
2392 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002393
2394 return 0;
2395}
2396
2397static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev)
2398{
Tom St Denisadcec282016-04-15 13:08:44 -04002399 unsigned i;
2400
2401 for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) {
2402 if (adev->debugfs_regs[i]) {
2403 debugfs_remove(adev->debugfs_regs[i]);
2404 adev->debugfs_regs[i] = NULL;
2405 }
2406 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002407}
2408
2409int amdgpu_debugfs_init(struct drm_minor *minor)
2410{
2411 return 0;
2412}
2413
2414void amdgpu_debugfs_cleanup(struct drm_minor *minor)
2415{
2416}
Alexander Kuleshov7cebc722015-06-27 13:16:05 +06002417#else
2418static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev)
2419{
2420 return 0;
2421}
2422static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002423#endif