Loading...
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
29#include <linux/console.h>
30#include <linux/efi.h>
31#include <linux/pci.h>
32#include <linux/pm_runtime.h>
33#include <linux/slab.h>
34#include <linux/vga_switcheroo.h>
35#include <linux/vgaarb.h>
36
37#include <drm/drm_cache.h>
38#include <drm/drm_crtc_helper.h>
39#include <drm/drm_device.h>
40#include <drm/drm_file.h>
41#include <drm/drm_framebuffer.h>
42#include <drm/drm_probe_helper.h>
43#include <drm/radeon_drm.h>
44
45#include "radeon_device.h"
46#include "radeon_reg.h"
47#include "radeon.h"
48#include "atom.h"
49
50static const char radeon_family_name[][16] = {
51 "R100",
52 "RV100",
53 "RS100",
54 "RV200",
55 "RS200",
56 "R200",
57 "RV250",
58 "RS300",
59 "RV280",
60 "R300",
61 "R350",
62 "RV350",
63 "RV380",
64 "R420",
65 "R423",
66 "RV410",
67 "RS400",
68 "RS480",
69 "RS600",
70 "RS690",
71 "RS740",
72 "RV515",
73 "R520",
74 "RV530",
75 "RV560",
76 "RV570",
77 "R580",
78 "R600",
79 "RV610",
80 "RV630",
81 "RV670",
82 "RV620",
83 "RV635",
84 "RS780",
85 "RS880",
86 "RV770",
87 "RV730",
88 "RV710",
89 "RV740",
90 "CEDAR",
91 "REDWOOD",
92 "JUNIPER",
93 "CYPRESS",
94 "HEMLOCK",
95 "PALM",
96 "SUMO",
97 "SUMO2",
98 "BARTS",
99 "TURKS",
100 "CAICOS",
101 "CAYMAN",
102 "ARUBA",
103 "TAHITI",
104 "PITCAIRN",
105 "VERDE",
106 "OLAND",
107 "HAINAN",
108 "BONAIRE",
109 "KAVERI",
110 "KABINI",
111 "HAWAII",
112 "MULLINS",
113 "LAST",
114};
115
116#if defined(CONFIG_VGA_SWITCHEROO)
117bool radeon_has_atpx_dgpu_power_cntl(void);
118bool radeon_is_atpx_hybrid(void);
119#else
120static inline bool radeon_has_atpx_dgpu_power_cntl(void) { return false; }
121static inline bool radeon_is_atpx_hybrid(void) { return false; }
122#endif
123
124#define RADEON_PX_QUIRK_DISABLE_PX (1 << 0)
125
126struct radeon_px_quirk {
127 u32 chip_vendor;
128 u32 chip_device;
129 u32 subsys_vendor;
130 u32 subsys_device;
131 u32 px_quirk_flags;
132};
133
134static struct radeon_px_quirk radeon_px_quirk_list[] = {
135 /* Acer aspire 5560g (CPU: AMD A4-3305M; GPU: AMD Radeon HD 6480g + 7470m)
136 * https://bugzilla.kernel.org/show_bug.cgi?id=74551
137 */
138 { PCI_VENDOR_ID_ATI, 0x6760, 0x1025, 0x0672, RADEON_PX_QUIRK_DISABLE_PX },
139 /* Asus K73TA laptop with AMD A6-3400M APU and Radeon 6550 GPU
140 * https://bugzilla.kernel.org/show_bug.cgi?id=51381
141 */
142 { PCI_VENDOR_ID_ATI, 0x6741, 0x1043, 0x108c, RADEON_PX_QUIRK_DISABLE_PX },
143 /* Asus K53TK laptop with AMD A6-3420M APU and Radeon 7670m GPU
144 * https://bugzilla.kernel.org/show_bug.cgi?id=51381
145 */
146 { PCI_VENDOR_ID_ATI, 0x6840, 0x1043, 0x2122, RADEON_PX_QUIRK_DISABLE_PX },
147 /* Asus K53TK laptop with AMD A6-3420M APU and Radeon 7670m GPU
148 * https://bugs.freedesktop.org/show_bug.cgi?id=101491
149 */
150 { PCI_VENDOR_ID_ATI, 0x6741, 0x1043, 0x2122, RADEON_PX_QUIRK_DISABLE_PX },
151 /* Asus K73TK laptop with AMD A6-3420M APU and Radeon 7670m GPU
152 * https://bugzilla.kernel.org/show_bug.cgi?id=51381#c52
153 */
154 { PCI_VENDOR_ID_ATI, 0x6840, 0x1043, 0x2123, RADEON_PX_QUIRK_DISABLE_PX },
155 { 0, 0, 0, 0, 0 },
156};
157
158bool radeon_is_px(struct drm_device *dev)
159{
160 struct radeon_device *rdev = dev->dev_private;
161
162 if (rdev->flags & RADEON_IS_PX)
163 return true;
164 return false;
165}
166
167static void radeon_device_handle_px_quirks(struct radeon_device *rdev)
168{
169 struct radeon_px_quirk *p = radeon_px_quirk_list;
170
171 /* Apply PX quirks */
172 while (p && p->chip_device != 0) {
173 if (rdev->pdev->vendor == p->chip_vendor &&
174 rdev->pdev->device == p->chip_device &&
175 rdev->pdev->subsystem_vendor == p->subsys_vendor &&
176 rdev->pdev->subsystem_device == p->subsys_device) {
177 rdev->px_quirk_flags = p->px_quirk_flags;
178 break;
179 }
180 ++p;
181 }
182
183 if (rdev->px_quirk_flags & RADEON_PX_QUIRK_DISABLE_PX)
184 rdev->flags &= ~RADEON_IS_PX;
185
186 /* disable PX is the system doesn't support dGPU power control or hybrid gfx */
187 if (!radeon_is_atpx_hybrid() &&
188 !radeon_has_atpx_dgpu_power_cntl())
189 rdev->flags &= ~RADEON_IS_PX;
190}
191
192/**
193 * radeon_program_register_sequence - program an array of registers.
194 *
195 * @rdev: radeon_device pointer
196 * @registers: pointer to the register array
197 * @array_size: size of the register array
198 *
199 * Programs an array or registers with and and or masks.
200 * This is a helper for setting golden registers.
201 */
202void radeon_program_register_sequence(struct radeon_device *rdev,
203 const u32 *registers,
204 const u32 array_size)
205{
206 u32 tmp, reg, and_mask, or_mask;
207 int i;
208
209 if (array_size % 3)
210 return;
211
212 for (i = 0; i < array_size; i +=3) {
213 reg = registers[i + 0];
214 and_mask = registers[i + 1];
215 or_mask = registers[i + 2];
216
217 if (and_mask == 0xffffffff) {
218 tmp = or_mask;
219 } else {
220 tmp = RREG32(reg);
221 tmp &= ~and_mask;
222 tmp |= or_mask;
223 }
224 WREG32(reg, tmp);
225 }
226}
227
228void radeon_pci_config_reset(struct radeon_device *rdev)
229{
230 pci_write_config_dword(rdev->pdev, 0x7c, RADEON_ASIC_RESET_DATA);
231}
232
233/**
234 * radeon_surface_init - Clear GPU surface registers.
235 *
236 * @rdev: radeon_device pointer
237 *
238 * Clear GPU surface registers (r1xx-r5xx).
239 */
240void radeon_surface_init(struct radeon_device *rdev)
241{
242 /* FIXME: check this out */
243 if (rdev->family < CHIP_R600) {
244 int i;
245
246 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
247 if (rdev->surface_regs[i].bo)
248 radeon_bo_get_surface_reg(rdev->surface_regs[i].bo);
249 else
250 radeon_clear_surface_reg(rdev, i);
251 }
252 /* enable surfaces */
253 WREG32(RADEON_SURFACE_CNTL, 0);
254 }
255}
256
257/*
258 * GPU scratch registers helpers function.
259 */
260/**
261 * radeon_scratch_init - Init scratch register driver information.
262 *
263 * @rdev: radeon_device pointer
264 *
265 * Init CP scratch register driver information (r1xx-r5xx)
266 */
267void radeon_scratch_init(struct radeon_device *rdev)
268{
269 int i;
270
271 /* FIXME: check this out */
272 if (rdev->family < CHIP_R300) {
273 rdev->scratch.num_reg = 5;
274 } else {
275 rdev->scratch.num_reg = 7;
276 }
277 rdev->scratch.reg_base = RADEON_SCRATCH_REG0;
278 for (i = 0; i < rdev->scratch.num_reg; i++) {
279 rdev->scratch.free[i] = true;
280 rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4);
281 }
282}
283
284/**
285 * radeon_scratch_get - Allocate a scratch register
286 *
287 * @rdev: radeon_device pointer
288 * @reg: scratch register mmio offset
289 *
290 * Allocate a CP scratch register for use by the driver (all asics).
291 * Returns 0 on success or -EINVAL on failure.
292 */
293int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg)
294{
295 int i;
296
297 for (i = 0; i < rdev->scratch.num_reg; i++) {
298 if (rdev->scratch.free[i]) {
299 rdev->scratch.free[i] = false;
300 *reg = rdev->scratch.reg[i];
301 return 0;
302 }
303 }
304 return -EINVAL;
305}
306
307/**
308 * radeon_scratch_free - Free a scratch register
309 *
310 * @rdev: radeon_device pointer
311 * @reg: scratch register mmio offset
312 *
313 * Free a CP scratch register allocated for use by the driver (all asics)
314 */
315void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg)
316{
317 int i;
318
319 for (i = 0; i < rdev->scratch.num_reg; i++) {
320 if (rdev->scratch.reg[i] == reg) {
321 rdev->scratch.free[i] = true;
322 return;
323 }
324 }
325}
326
327/*
328 * GPU doorbell aperture helpers function.
329 */
330/**
331 * radeon_doorbell_init - Init doorbell driver information.
332 *
333 * @rdev: radeon_device pointer
334 *
335 * Init doorbell driver information (CIK)
336 * Returns 0 on success, error on failure.
337 */
338static int radeon_doorbell_init(struct radeon_device *rdev)
339{
340 /* doorbell bar mapping */
341 rdev->doorbell.base = pci_resource_start(rdev->pdev, 2);
342 rdev->doorbell.size = pci_resource_len(rdev->pdev, 2);
343
344 rdev->doorbell.num_doorbells = min_t(u32, rdev->doorbell.size / sizeof(u32), RADEON_MAX_DOORBELLS);
345 if (rdev->doorbell.num_doorbells == 0)
346 return -EINVAL;
347
348 rdev->doorbell.ptr = ioremap(rdev->doorbell.base, rdev->doorbell.num_doorbells * sizeof(u32));
349 if (rdev->doorbell.ptr == NULL) {
350 return -ENOMEM;
351 }
352 DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)rdev->doorbell.base);
353 DRM_INFO("doorbell mmio size: %u\n", (unsigned)rdev->doorbell.size);
354
355 memset(&rdev->doorbell.used, 0, sizeof(rdev->doorbell.used));
356
357 return 0;
358}
359
360/**
361 * radeon_doorbell_fini - Tear down doorbell driver information.
362 *
363 * @rdev: radeon_device pointer
364 *
365 * Tear down doorbell driver information (CIK)
366 */
367static void radeon_doorbell_fini(struct radeon_device *rdev)
368{
369 iounmap(rdev->doorbell.ptr);
370 rdev->doorbell.ptr = NULL;
371}
372
373/**
374 * radeon_doorbell_get - Allocate a doorbell entry
375 *
376 * @rdev: radeon_device pointer
377 * @doorbell: doorbell index
378 *
379 * Allocate a doorbell for use by the driver (all asics).
380 * Returns 0 on success or -EINVAL on failure.
381 */
382int radeon_doorbell_get(struct radeon_device *rdev, u32 *doorbell)
383{
384 unsigned long offset = find_first_zero_bit(rdev->doorbell.used, rdev->doorbell.num_doorbells);
385 if (offset < rdev->doorbell.num_doorbells) {
386 __set_bit(offset, rdev->doorbell.used);
387 *doorbell = offset;
388 return 0;
389 } else {
390 return -EINVAL;
391 }
392}
393
394/**
395 * radeon_doorbell_free - Free a doorbell entry
396 *
397 * @rdev: radeon_device pointer
398 * @doorbell: doorbell index
399 *
400 * Free a doorbell allocated for use by the driver (all asics)
401 */
402void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell)
403{
404 if (doorbell < rdev->doorbell.num_doorbells)
405 __clear_bit(doorbell, rdev->doorbell.used);
406}
407
408/*
409 * radeon_wb_*()
410 * Writeback is the method by which the GPU updates special pages
411 * in memory with the status of certain GPU events (fences, ring pointers,
412 * etc.).
413 */
414
415/**
416 * radeon_wb_disable - Disable Writeback
417 *
418 * @rdev: radeon_device pointer
419 *
420 * Disables Writeback (all asics). Used for suspend.
421 */
422void radeon_wb_disable(struct radeon_device *rdev)
423{
424 rdev->wb.enabled = false;
425}
426
427/**
428 * radeon_wb_fini - Disable Writeback and free memory
429 *
430 * @rdev: radeon_device pointer
431 *
432 * Disables Writeback and frees the Writeback memory (all asics).
433 * Used at driver shutdown.
434 */
435void radeon_wb_fini(struct radeon_device *rdev)
436{
437 radeon_wb_disable(rdev);
438 if (rdev->wb.wb_obj) {
439 if (!radeon_bo_reserve(rdev->wb.wb_obj, false)) {
440 radeon_bo_kunmap(rdev->wb.wb_obj);
441 radeon_bo_unpin(rdev->wb.wb_obj);
442 radeon_bo_unreserve(rdev->wb.wb_obj);
443 }
444 radeon_bo_unref(&rdev->wb.wb_obj);
445 rdev->wb.wb = NULL;
446 rdev->wb.wb_obj = NULL;
447 }
448}
449
450/**
451 * radeon_wb_init- Init Writeback driver info and allocate memory
452 *
453 * @rdev: radeon_device pointer
454 *
455 * Disables Writeback and frees the Writeback memory (all asics).
456 * Used at driver startup.
457 * Returns 0 on success or an -error on failure.
458 */
459int radeon_wb_init(struct radeon_device *rdev)
460{
461 int r;
462
463 if (rdev->wb.wb_obj == NULL) {
464 r = radeon_bo_create(rdev, RADEON_GPU_PAGE_SIZE, PAGE_SIZE, true,
465 RADEON_GEM_DOMAIN_GTT, 0, NULL, NULL,
466 &rdev->wb.wb_obj);
467 if (r) {
468 dev_warn(rdev->dev, "(%d) create WB bo failed\n", r);
469 return r;
470 }
471 r = radeon_bo_reserve(rdev->wb.wb_obj, false);
472 if (unlikely(r != 0)) {
473 radeon_wb_fini(rdev);
474 return r;
475 }
476 r = radeon_bo_pin(rdev->wb.wb_obj, RADEON_GEM_DOMAIN_GTT,
477 &rdev->wb.gpu_addr);
478 if (r) {
479 radeon_bo_unreserve(rdev->wb.wb_obj);
480 dev_warn(rdev->dev, "(%d) pin WB bo failed\n", r);
481 radeon_wb_fini(rdev);
482 return r;
483 }
484 r = radeon_bo_kmap(rdev->wb.wb_obj, (void **)&rdev->wb.wb);
485 radeon_bo_unreserve(rdev->wb.wb_obj);
486 if (r) {
487 dev_warn(rdev->dev, "(%d) map WB bo failed\n", r);
488 radeon_wb_fini(rdev);
489 return r;
490 }
491 }
492
493 /* clear wb memory */
494 memset((char *)rdev->wb.wb, 0, RADEON_GPU_PAGE_SIZE);
495 /* disable event_write fences */
496 rdev->wb.use_event = false;
497 /* disabled via module param */
498 if (radeon_no_wb == 1) {
499 rdev->wb.enabled = false;
500 } else {
501 if (rdev->flags & RADEON_IS_AGP) {
502 /* often unreliable on AGP */
503 rdev->wb.enabled = false;
504 } else if (rdev->family < CHIP_R300) {
505 /* often unreliable on pre-r300 */
506 rdev->wb.enabled = false;
507 } else {
508 rdev->wb.enabled = true;
509 /* event_write fences are only available on r600+ */
510 if (rdev->family >= CHIP_R600) {
511 rdev->wb.use_event = true;
512 }
513 }
514 }
515 /* always use writeback/events on NI, APUs */
516 if (rdev->family >= CHIP_PALM) {
517 rdev->wb.enabled = true;
518 rdev->wb.use_event = true;
519 }
520
521 dev_info(rdev->dev, "WB %sabled\n", rdev->wb.enabled ? "en" : "dis");
522
523 return 0;
524}
525
526/**
527 * radeon_vram_location - try to find VRAM location
528 * @rdev: radeon device structure holding all necessary informations
529 * @mc: memory controller structure holding memory informations
530 * @base: base address at which to put VRAM
531 *
532 * Function will place try to place VRAM at base address provided
533 * as parameter (which is so far either PCI aperture address or
534 * for IGP TOM base address).
535 *
536 * If there is not enough space to fit the unvisible VRAM in the 32bits
537 * address space then we limit the VRAM size to the aperture.
538 *
539 * If we are using AGP and if the AGP aperture doesn't allow us to have
540 * room for all the VRAM than we restrict the VRAM to the PCI aperture
541 * size and print a warning.
542 *
543 * This function will never fails, worst case are limiting VRAM.
544 *
545 * Note: GTT start, end, size should be initialized before calling this
546 * function on AGP platform.
547 *
548 * Note 1: We don't explicitly enforce VRAM start to be aligned on VRAM size,
549 * this shouldn't be a problem as we are using the PCI aperture as a reference.
550 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
551 * not IGP.
552 *
553 * Note 2: we use mc_vram_size as on some board we need to program the mc to
554 * cover the whole aperture even if VRAM size is inferior to aperture size
555 * Novell bug 204882 + along with lots of ubuntu ones
556 *
557 * Note 3: when limiting vram it's safe to overwritte real_vram_size because
558 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
559 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
560 * ones)
561 *
562 * Note 4: IGP TOM addr should be the same as the aperture addr, we don't
563 * explicitly check for that thought.
564 *
565 * FIXME: when reducing VRAM size align new size on power of 2.
566 */
567void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base)
568{
569 uint64_t limit = (uint64_t)radeon_vram_limit << 20;
570
571 mc->vram_start = base;
572 if (mc->mc_vram_size > (rdev->mc.mc_mask - base + 1)) {
573 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
574 mc->real_vram_size = mc->aper_size;
575 mc->mc_vram_size = mc->aper_size;
576 }
577 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
578 if (rdev->flags & RADEON_IS_AGP && mc->vram_end > mc->gtt_start && mc->vram_start <= mc->gtt_end) {
579 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
580 mc->real_vram_size = mc->aper_size;
581 mc->mc_vram_size = mc->aper_size;
582 }
583 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
584 if (limit && limit < mc->real_vram_size)
585 mc->real_vram_size = limit;
586 dev_info(rdev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
587 mc->mc_vram_size >> 20, mc->vram_start,
588 mc->vram_end, mc->real_vram_size >> 20);
589}
590
591/**
592 * radeon_gtt_location - try to find GTT location
593 * @rdev: radeon device structure holding all necessary informations
594 * @mc: memory controller structure holding memory informations
595 *
596 * Function will place try to place GTT before or after VRAM.
597 *
598 * If GTT size is bigger than space left then we ajust GTT size.
599 * Thus function will never fails.
600 *
601 * FIXME: when reducing GTT size align new size on power of 2.
602 */
603void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc)
604{
605 u64 size_af, size_bf;
606
607 size_af = ((rdev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align;
608 size_bf = mc->vram_start & ~mc->gtt_base_align;
609 if (size_bf > size_af) {
610 if (mc->gtt_size > size_bf) {
611 dev_warn(rdev->dev, "limiting GTT\n");
612 mc->gtt_size = size_bf;
613 }
614 mc->gtt_start = (mc->vram_start & ~mc->gtt_base_align) - mc->gtt_size;
615 } else {
616 if (mc->gtt_size > size_af) {
617 dev_warn(rdev->dev, "limiting GTT\n");
618 mc->gtt_size = size_af;
619 }
620 mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align;
621 }
622 mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
623 dev_info(rdev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
624 mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
625}
626
627/*
628 * GPU helpers function.
629 */
630
631/*
632 * radeon_device_is_virtual - check if we are running is a virtual environment
633 *
634 * Check if the asic has been passed through to a VM (all asics).
635 * Used at driver startup.
636 * Returns true if virtual or false if not.
637 */
638bool radeon_device_is_virtual(void)
639{
640#ifdef CONFIG_X86
641 return boot_cpu_has(X86_FEATURE_HYPERVISOR);
642#else
643 return false;
644#endif
645}
646
647/**
648 * radeon_card_posted - check if the hw has already been initialized
649 *
650 * @rdev: radeon_device pointer
651 *
652 * Check if the asic has been initialized (all asics).
653 * Used at driver startup.
654 * Returns true if initialized or false if not.
655 */
656bool radeon_card_posted(struct radeon_device *rdev)
657{
658 uint32_t reg;
659
660 /* for pass through, always force asic_init for CI */
661 if (rdev->family >= CHIP_BONAIRE &&
662 radeon_device_is_virtual())
663 return false;
664
665 /* required for EFI mode on macbook2,1 which uses an r5xx asic */
666 if (efi_enabled(EFI_BOOT) &&
667 (rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) &&
668 (rdev->family < CHIP_R600))
669 return false;
670
671 if (ASIC_IS_NODCE(rdev))
672 goto check_memsize;
673
674 /* first check CRTCs */
675 if (ASIC_IS_DCE4(rdev)) {
676 reg = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET) |
677 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET);
678 if (rdev->num_crtc >= 4) {
679 reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET) |
680 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET);
681 }
682 if (rdev->num_crtc >= 6) {
683 reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET) |
684 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET);
685 }
686 if (reg & EVERGREEN_CRTC_MASTER_EN)
687 return true;
688 } else if (ASIC_IS_AVIVO(rdev)) {
689 reg = RREG32(AVIVO_D1CRTC_CONTROL) |
690 RREG32(AVIVO_D2CRTC_CONTROL);
691 if (reg & AVIVO_CRTC_EN) {
692 return true;
693 }
694 } else {
695 reg = RREG32(RADEON_CRTC_GEN_CNTL) |
696 RREG32(RADEON_CRTC2_GEN_CNTL);
697 if (reg & RADEON_CRTC_EN) {
698 return true;
699 }
700 }
701
702check_memsize:
703 /* then check MEM_SIZE, in case the crtcs are off */
704 if (rdev->family >= CHIP_R600)
705 reg = RREG32(R600_CONFIG_MEMSIZE);
706 else
707 reg = RREG32(RADEON_CONFIG_MEMSIZE);
708
709 if (reg)
710 return true;
711
712 return false;
713
714}
715
716/**
717 * radeon_update_bandwidth_info - update display bandwidth params
718 *
719 * @rdev: radeon_device pointer
720 *
721 * Used when sclk/mclk are switched or display modes are set.
722 * params are used to calculate display watermarks (all asics)
723 */
724void radeon_update_bandwidth_info(struct radeon_device *rdev)
725{
726 fixed20_12 a;
727 u32 sclk = rdev->pm.current_sclk;
728 u32 mclk = rdev->pm.current_mclk;
729
730 /* sclk/mclk in Mhz */
731 a.full = dfixed_const(100);
732 rdev->pm.sclk.full = dfixed_const(sclk);
733 rdev->pm.sclk.full = dfixed_div(rdev->pm.sclk, a);
734 rdev->pm.mclk.full = dfixed_const(mclk);
735 rdev->pm.mclk.full = dfixed_div(rdev->pm.mclk, a);
736
737 if (rdev->flags & RADEON_IS_IGP) {
738 a.full = dfixed_const(16);
739 /* core_bandwidth = sclk(Mhz) * 16 */
740 rdev->pm.core_bandwidth.full = dfixed_div(rdev->pm.sclk, a);
741 }
742}
743
744/**
745 * radeon_boot_test_post_card - check and possibly initialize the hw
746 *
747 * @rdev: radeon_device pointer
748 *
749 * Check if the asic is initialized and if not, attempt to initialize
750 * it (all asics).
751 * Returns true if initialized or false if not.
752 */
753bool radeon_boot_test_post_card(struct radeon_device *rdev)
754{
755 if (radeon_card_posted(rdev))
756 return true;
757
758 if (rdev->bios) {
759 DRM_INFO("GPU not posted. posting now...\n");
760 if (rdev->is_atom_bios)
761 atom_asic_init(rdev->mode_info.atom_context);
762 else
763 radeon_combios_asic_init(rdev->ddev);
764 return true;
765 } else {
766 dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n");
767 return false;
768 }
769}
770
771/**
772 * radeon_dummy_page_init - init dummy page used by the driver
773 *
774 * @rdev: radeon_device pointer
775 *
776 * Allocate the dummy page used by the driver (all asics).
777 * This dummy page is used by the driver as a filler for gart entries
778 * when pages are taken out of the GART
779 * Returns 0 on sucess, -ENOMEM on failure.
780 */
781int radeon_dummy_page_init(struct radeon_device *rdev)
782{
783 if (rdev->dummy_page.page)
784 return 0;
785 rdev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
786 if (rdev->dummy_page.page == NULL)
787 return -ENOMEM;
788 rdev->dummy_page.addr = dma_map_page(&rdev->pdev->dev, rdev->dummy_page.page,
789 0, PAGE_SIZE, DMA_BIDIRECTIONAL);
790 if (dma_mapping_error(&rdev->pdev->dev, rdev->dummy_page.addr)) {
791 dev_err(&rdev->pdev->dev, "Failed to DMA MAP the dummy page\n");
792 __free_page(rdev->dummy_page.page);
793 rdev->dummy_page.page = NULL;
794 return -ENOMEM;
795 }
796 rdev->dummy_page.entry = radeon_gart_get_page_entry(rdev->dummy_page.addr,
797 RADEON_GART_PAGE_DUMMY);
798 return 0;
799}
800
801/**
802 * radeon_dummy_page_fini - free dummy page used by the driver
803 *
804 * @rdev: radeon_device pointer
805 *
806 * Frees the dummy page used by the driver (all asics).
807 */
808void radeon_dummy_page_fini(struct radeon_device *rdev)
809{
810 if (rdev->dummy_page.page == NULL)
811 return;
812 dma_unmap_page(&rdev->pdev->dev, rdev->dummy_page.addr, PAGE_SIZE,
813 DMA_BIDIRECTIONAL);
814 __free_page(rdev->dummy_page.page);
815 rdev->dummy_page.page = NULL;
816}
817
818
819/* ATOM accessor methods */
820/*
821 * ATOM is an interpreted byte code stored in tables in the vbios. The
822 * driver registers callbacks to access registers and the interpreter
823 * in the driver parses the tables and executes then to program specific
824 * actions (set display modes, asic init, etc.). See radeon_atombios.c,
825 * atombios.h, and atom.c
826 */
827
828/**
829 * cail_pll_read - read PLL register
830 *
831 * @info: atom card_info pointer
832 * @reg: PLL register offset
833 *
834 * Provides a PLL register accessor for the atom interpreter (r4xx+).
835 * Returns the value of the PLL register.
836 */
837static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
838{
839 struct radeon_device *rdev = info->dev->dev_private;
840 uint32_t r;
841
842 r = rdev->pll_rreg(rdev, reg);
843 return r;
844}
845
846/**
847 * cail_pll_write - write PLL register
848 *
849 * @info: atom card_info pointer
850 * @reg: PLL register offset
851 * @val: value to write to the pll register
852 *
853 * Provides a PLL register accessor for the atom interpreter (r4xx+).
854 */
855static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
856{
857 struct radeon_device *rdev = info->dev->dev_private;
858
859 rdev->pll_wreg(rdev, reg, val);
860}
861
862/**
863 * cail_mc_read - read MC (Memory Controller) register
864 *
865 * @info: atom card_info pointer
866 * @reg: MC register offset
867 *
868 * Provides an MC register accessor for the atom interpreter (r4xx+).
869 * Returns the value of the MC register.
870 */
871static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
872{
873 struct radeon_device *rdev = info->dev->dev_private;
874 uint32_t r;
875
876 r = rdev->mc_rreg(rdev, reg);
877 return r;
878}
879
880/**
881 * cail_mc_write - write MC (Memory Controller) register
882 *
883 * @info: atom card_info pointer
884 * @reg: MC register offset
885 * @val: value to write to the pll register
886 *
887 * Provides a MC register accessor for the atom interpreter (r4xx+).
888 */
889static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
890{
891 struct radeon_device *rdev = info->dev->dev_private;
892
893 rdev->mc_wreg(rdev, reg, val);
894}
895
896/**
897 * cail_reg_write - write MMIO register
898 *
899 * @info: atom card_info pointer
900 * @reg: MMIO register offset
901 * @val: value to write to the pll register
902 *
903 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
904 */
905static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
906{
907 struct radeon_device *rdev = info->dev->dev_private;
908
909 WREG32(reg*4, val);
910}
911
912/**
913 * cail_reg_read - read MMIO register
914 *
915 * @info: atom card_info pointer
916 * @reg: MMIO register offset
917 *
918 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
919 * Returns the value of the MMIO register.
920 */
921static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
922{
923 struct radeon_device *rdev = info->dev->dev_private;
924 uint32_t r;
925
926 r = RREG32(reg*4);
927 return r;
928}
929
930/**
931 * cail_ioreg_write - write IO register
932 *
933 * @info: atom card_info pointer
934 * @reg: IO register offset
935 * @val: value to write to the pll register
936 *
937 * Provides a IO register accessor for the atom interpreter (r4xx+).
938 */
939static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
940{
941 struct radeon_device *rdev = info->dev->dev_private;
942
943 WREG32_IO(reg*4, val);
944}
945
946/**
947 * cail_ioreg_read - read IO register
948 *
949 * @info: atom card_info pointer
950 * @reg: IO register offset
951 *
952 * Provides an IO register accessor for the atom interpreter (r4xx+).
953 * Returns the value of the IO register.
954 */
955static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
956{
957 struct radeon_device *rdev = info->dev->dev_private;
958 uint32_t r;
959
960 r = RREG32_IO(reg*4);
961 return r;
962}
963
964/**
965 * radeon_atombios_init - init the driver info and callbacks for atombios
966 *
967 * @rdev: radeon_device pointer
968 *
969 * Initializes the driver info and register access callbacks for the
970 * ATOM interpreter (r4xx+).
971 * Returns 0 on sucess, -ENOMEM on failure.
972 * Called at driver startup.
973 */
974int radeon_atombios_init(struct radeon_device *rdev)
975{
976 struct card_info *atom_card_info =
977 kzalloc(sizeof(struct card_info), GFP_KERNEL);
978
979 if (!atom_card_info)
980 return -ENOMEM;
981
982 rdev->mode_info.atom_card_info = atom_card_info;
983 atom_card_info->dev = rdev->ddev;
984 atom_card_info->reg_read = cail_reg_read;
985 atom_card_info->reg_write = cail_reg_write;
986 /* needed for iio ops */
987 if (rdev->rio_mem) {
988 atom_card_info->ioreg_read = cail_ioreg_read;
989 atom_card_info->ioreg_write = cail_ioreg_write;
990 } else {
991 DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
992 atom_card_info->ioreg_read = cail_reg_read;
993 atom_card_info->ioreg_write = cail_reg_write;
994 }
995 atom_card_info->mc_read = cail_mc_read;
996 atom_card_info->mc_write = cail_mc_write;
997 atom_card_info->pll_read = cail_pll_read;
998 atom_card_info->pll_write = cail_pll_write;
999
1000 rdev->mode_info.atom_context = atom_parse(atom_card_info, rdev->bios);
1001 if (!rdev->mode_info.atom_context) {
1002 radeon_atombios_fini(rdev);
1003 return -ENOMEM;
1004 }
1005
1006 mutex_init(&rdev->mode_info.atom_context->mutex);
1007 mutex_init(&rdev->mode_info.atom_context->scratch_mutex);
1008 radeon_atom_initialize_bios_scratch_regs(rdev->ddev);
1009 atom_allocate_fb_scratch(rdev->mode_info.atom_context);
1010 return 0;
1011}
1012
1013/**
1014 * radeon_atombios_fini - free the driver info and callbacks for atombios
1015 *
1016 * @rdev: radeon_device pointer
1017 *
1018 * Frees the driver info and register access callbacks for the ATOM
1019 * interpreter (r4xx+).
1020 * Called at driver shutdown.
1021 */
1022void radeon_atombios_fini(struct radeon_device *rdev)
1023{
1024 if (rdev->mode_info.atom_context) {
1025 kfree(rdev->mode_info.atom_context->scratch);
1026 }
1027 kfree(rdev->mode_info.atom_context);
1028 rdev->mode_info.atom_context = NULL;
1029 kfree(rdev->mode_info.atom_card_info);
1030 rdev->mode_info.atom_card_info = NULL;
1031}
1032
1033/* COMBIOS */
1034/*
1035 * COMBIOS is the bios format prior to ATOM. It provides
1036 * command tables similar to ATOM, but doesn't have a unified
1037 * parser. See radeon_combios.c
1038 */
1039
1040/**
1041 * radeon_combios_init - init the driver info for combios
1042 *
1043 * @rdev: radeon_device pointer
1044 *
1045 * Initializes the driver info for combios (r1xx-r3xx).
1046 * Returns 0 on sucess.
1047 * Called at driver startup.
1048 */
1049int radeon_combios_init(struct radeon_device *rdev)
1050{
1051 radeon_combios_initialize_bios_scratch_regs(rdev->ddev);
1052 return 0;
1053}
1054
1055/**
1056 * radeon_combios_fini - free the driver info for combios
1057 *
1058 * @rdev: radeon_device pointer
1059 *
1060 * Frees the driver info for combios (r1xx-r3xx).
1061 * Called at driver shutdown.
1062 */
1063void radeon_combios_fini(struct radeon_device *rdev)
1064{
1065}
1066
1067/* if we get transitioned to only one device, take VGA back */
1068/**
1069 * radeon_vga_set_decode - enable/disable vga decode
1070 *
1071 * @pdev: PCI device
1072 * @state: enable/disable vga decode
1073 *
1074 * Enable/disable vga decode (all asics).
1075 * Returns VGA resource flags.
1076 */
1077static unsigned int radeon_vga_set_decode(struct pci_dev *pdev, bool state)
1078{
1079 struct drm_device *dev = pci_get_drvdata(pdev);
1080 struct radeon_device *rdev = dev->dev_private;
1081 radeon_vga_set_state(rdev, state);
1082 if (state)
1083 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1084 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1085 else
1086 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1087}
1088
1089/**
1090 * radeon_gart_size_auto - Determine a sensible default GART size
1091 * according to ASIC family.
1092 *
1093 * @family: ASIC family name
1094 */
1095static int radeon_gart_size_auto(enum radeon_family family)
1096{
1097 /* default to a larger gart size on newer asics */
1098 if (family >= CHIP_TAHITI)
1099 return 2048;
1100 else if (family >= CHIP_RV770)
1101 return 1024;
1102 else
1103 return 512;
1104}
1105
1106/**
1107 * radeon_check_arguments - validate module params
1108 *
1109 * @rdev: radeon_device pointer
1110 *
1111 * Validates certain module parameters and updates
1112 * the associated values used by the driver (all asics).
1113 */
1114static void radeon_check_arguments(struct radeon_device *rdev)
1115{
1116 /* vramlimit must be a power of two */
1117 if (radeon_vram_limit != 0 && !is_power_of_2(radeon_vram_limit)) {
1118 dev_warn(rdev->dev, "vram limit (%d) must be a power of 2\n",
1119 radeon_vram_limit);
1120 radeon_vram_limit = 0;
1121 }
1122
1123 if (radeon_gart_size == -1) {
1124 radeon_gart_size = radeon_gart_size_auto(rdev->family);
1125 }
1126 /* gtt size must be power of two and greater or equal to 32M */
1127 if (radeon_gart_size < 32) {
1128 dev_warn(rdev->dev, "gart size (%d) too small\n",
1129 radeon_gart_size);
1130 radeon_gart_size = radeon_gart_size_auto(rdev->family);
1131 } else if (!is_power_of_2(radeon_gart_size)) {
1132 dev_warn(rdev->dev, "gart size (%d) must be a power of 2\n",
1133 radeon_gart_size);
1134 radeon_gart_size = radeon_gart_size_auto(rdev->family);
1135 }
1136 rdev->mc.gtt_size = (uint64_t)radeon_gart_size << 20;
1137
1138 /* AGP mode can only be -1, 1, 2, 4, 8 */
1139 switch (radeon_agpmode) {
1140 case -1:
1141 case 0:
1142 case 1:
1143 case 2:
1144 case 4:
1145 case 8:
1146 break;
1147 default:
1148 dev_warn(rdev->dev, "invalid AGP mode %d (valid mode: "
1149 "-1, 0, 1, 2, 4, 8)\n", radeon_agpmode);
1150 radeon_agpmode = 0;
1151 break;
1152 }
1153
1154 if (!is_power_of_2(radeon_vm_size)) {
1155 dev_warn(rdev->dev, "VM size (%d) must be a power of 2\n",
1156 radeon_vm_size);
1157 radeon_vm_size = 4;
1158 }
1159
1160 if (radeon_vm_size < 1) {
1161 dev_warn(rdev->dev, "VM size (%d) too small, min is 1GB\n",
1162 radeon_vm_size);
1163 radeon_vm_size = 4;
1164 }
1165
1166 /*
1167 * Max GPUVM size for Cayman, SI and CI are 40 bits.
1168 */
1169 if (radeon_vm_size > 1024) {
1170 dev_warn(rdev->dev, "VM size (%d) too large, max is 1TB\n",
1171 radeon_vm_size);
1172 radeon_vm_size = 4;
1173 }
1174
1175 /* defines number of bits in page table versus page directory,
1176 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1177 * page table and the remaining bits are in the page directory */
1178 if (radeon_vm_block_size == -1) {
1179
1180 /* Total bits covered by PD + PTs */
1181 unsigned bits = ilog2(radeon_vm_size) + 18;
1182
1183 /* Make sure the PD is 4K in size up to 8GB address space.
1184 Above that split equal between PD and PTs */
1185 if (radeon_vm_size <= 8)
1186 radeon_vm_block_size = bits - 9;
1187 else
1188 radeon_vm_block_size = (bits + 3) / 2;
1189
1190 } else if (radeon_vm_block_size < 9) {
1191 dev_warn(rdev->dev, "VM page table size (%d) too small\n",
1192 radeon_vm_block_size);
1193 radeon_vm_block_size = 9;
1194 }
1195
1196 if (radeon_vm_block_size > 24 ||
1197 (radeon_vm_size * 1024) < (1ull << radeon_vm_block_size)) {
1198 dev_warn(rdev->dev, "VM page table size (%d) too large\n",
1199 radeon_vm_block_size);
1200 radeon_vm_block_size = 9;
1201 }
1202}
1203
1204/**
1205 * radeon_switcheroo_set_state - set switcheroo state
1206 *
1207 * @pdev: pci dev pointer
1208 * @state: vga_switcheroo state
1209 *
1210 * Callback for the switcheroo driver. Suspends or resumes
1211 * the asics before or after it is powered up using ACPI methods.
1212 */
1213static void radeon_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1214{
1215 struct drm_device *dev = pci_get_drvdata(pdev);
1216
1217 if (radeon_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1218 return;
1219
1220 if (state == VGA_SWITCHEROO_ON) {
1221 pr_info("radeon: switched on\n");
1222 /* don't suspend or resume card normally */
1223 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1224
1225 radeon_resume_kms(dev, true, true);
1226
1227 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1228 drm_kms_helper_poll_enable(dev);
1229 } else {
1230 pr_info("radeon: switched off\n");
1231 drm_kms_helper_poll_disable(dev);
1232 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1233 radeon_suspend_kms(dev, true, true, false);
1234 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1235 }
1236}
1237
1238/**
1239 * radeon_switcheroo_can_switch - see if switcheroo state can change
1240 *
1241 * @pdev: pci dev pointer
1242 *
1243 * Callback for the switcheroo driver. Check of the switcheroo
1244 * state can be changed.
1245 * Returns true if the state can be changed, false if not.
1246 */
1247static bool radeon_switcheroo_can_switch(struct pci_dev *pdev)
1248{
1249 struct drm_device *dev = pci_get_drvdata(pdev);
1250
1251 /*
1252 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1253 * locking inversion with the driver load path. And the access here is
1254 * completely racy anyway. So don't bother with locking for now.
1255 */
1256 return atomic_read(&dev->open_count) == 0;
1257}
1258
1259static const struct vga_switcheroo_client_ops radeon_switcheroo_ops = {
1260 .set_gpu_state = radeon_switcheroo_set_state,
1261 .reprobe = NULL,
1262 .can_switch = radeon_switcheroo_can_switch,
1263};
1264
1265/**
1266 * radeon_device_init - initialize the driver
1267 *
1268 * @rdev: radeon_device pointer
1269 * @ddev: drm dev pointer
1270 * @pdev: pci dev pointer
1271 * @flags: driver flags
1272 *
1273 * Initializes the driver info and hw (all asics).
1274 * Returns 0 for success or an error on failure.
1275 * Called at driver startup.
1276 */
1277int radeon_device_init(struct radeon_device *rdev,
1278 struct drm_device *ddev,
1279 struct pci_dev *pdev,
1280 uint32_t flags)
1281{
1282 int r, i;
1283 int dma_bits;
1284 bool runtime = false;
1285
1286 rdev->shutdown = false;
1287 rdev->dev = &pdev->dev;
1288 rdev->ddev = ddev;
1289 rdev->pdev = pdev;
1290 rdev->flags = flags;
1291 rdev->family = flags & RADEON_FAMILY_MASK;
1292 rdev->is_atom_bios = false;
1293 rdev->usec_timeout = RADEON_MAX_USEC_TIMEOUT;
1294 rdev->mc.gtt_size = 512 * 1024 * 1024;
1295 rdev->accel_working = false;
1296 /* set up ring ids */
1297 for (i = 0; i < RADEON_NUM_RINGS; i++) {
1298 rdev->ring[i].idx = i;
1299 }
1300 rdev->fence_context = dma_fence_context_alloc(RADEON_NUM_RINGS);
1301
1302 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1303 radeon_family_name[rdev->family], pdev->vendor, pdev->device,
1304 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
1305
1306 /* mutex initialization are all done here so we
1307 * can recall function without having locking issues */
1308 mutex_init(&rdev->ring_lock);
1309 mutex_init(&rdev->dc_hw_i2c_mutex);
1310 atomic_set(&rdev->ih.lock, 0);
1311 mutex_init(&rdev->gem.mutex);
1312 mutex_init(&rdev->pm.mutex);
1313 mutex_init(&rdev->gpu_clock_mutex);
1314 mutex_init(&rdev->srbm_mutex);
1315 mutex_init(&rdev->audio.component_mutex);
1316 init_rwsem(&rdev->pm.mclk_lock);
1317 init_rwsem(&rdev->exclusive_lock);
1318 init_waitqueue_head(&rdev->irq.vblank_queue);
1319 r = radeon_gem_init(rdev);
1320 if (r)
1321 return r;
1322
1323 radeon_check_arguments(rdev);
1324 /* Adjust VM size here.
1325 * Max GPUVM size for cayman+ is 40 bits.
1326 */
1327 rdev->vm_manager.max_pfn = radeon_vm_size << 18;
1328
1329 /* Set asic functions */
1330 r = radeon_asic_init(rdev);
1331 if (r)
1332 return r;
1333
1334 /* all of the newer IGP chips have an internal gart
1335 * However some rs4xx report as AGP, so remove that here.
1336 */
1337 if ((rdev->family >= CHIP_RS400) &&
1338 (rdev->flags & RADEON_IS_IGP)) {
1339 rdev->flags &= ~RADEON_IS_AGP;
1340 }
1341
1342 if (rdev->flags & RADEON_IS_AGP && radeon_agpmode == -1) {
1343 radeon_agp_disable(rdev);
1344 }
1345
1346 /* Set the internal MC address mask
1347 * This is the max address of the GPU's
1348 * internal address space.
1349 */
1350 if (rdev->family >= CHIP_CAYMAN)
1351 rdev->mc.mc_mask = 0xffffffffffULL; /* 40 bit MC */
1352 else if (rdev->family >= CHIP_CEDAR)
1353 rdev->mc.mc_mask = 0xfffffffffULL; /* 36 bit MC */
1354 else
1355 rdev->mc.mc_mask = 0xffffffffULL; /* 32 bit MC */
1356
1357 /* set DMA mask.
1358 * PCIE - can handle 40-bits.
1359 * IGP - can handle 40-bits
1360 * AGP - generally dma32 is safest
1361 * PCI - dma32 for legacy pci gart, 40 bits on newer asics
1362 */
1363 dma_bits = 40;
1364 if (rdev->flags & RADEON_IS_AGP)
1365 dma_bits = 32;
1366 if ((rdev->flags & RADEON_IS_PCI) &&
1367 (rdev->family <= CHIP_RS740))
1368 dma_bits = 32;
1369#ifdef CONFIG_PPC64
1370 if (rdev->family == CHIP_CEDAR)
1371 dma_bits = 32;
1372#endif
1373
1374 r = dma_set_mask_and_coherent(&rdev->pdev->dev, DMA_BIT_MASK(dma_bits));
1375 if (r) {
1376 pr_warn("radeon: No suitable DMA available\n");
1377 return r;
1378 }
1379 rdev->need_swiotlb = drm_need_swiotlb(dma_bits);
1380
1381 /* Registers mapping */
1382 /* TODO: block userspace mapping of io register */
1383 spin_lock_init(&rdev->mmio_idx_lock);
1384 spin_lock_init(&rdev->smc_idx_lock);
1385 spin_lock_init(&rdev->pll_idx_lock);
1386 spin_lock_init(&rdev->mc_idx_lock);
1387 spin_lock_init(&rdev->pcie_idx_lock);
1388 spin_lock_init(&rdev->pciep_idx_lock);
1389 spin_lock_init(&rdev->pif_idx_lock);
1390 spin_lock_init(&rdev->cg_idx_lock);
1391 spin_lock_init(&rdev->uvd_idx_lock);
1392 spin_lock_init(&rdev->rcu_idx_lock);
1393 spin_lock_init(&rdev->didt_idx_lock);
1394 spin_lock_init(&rdev->end_idx_lock);
1395 if (rdev->family >= CHIP_BONAIRE) {
1396 rdev->rmmio_base = pci_resource_start(rdev->pdev, 5);
1397 rdev->rmmio_size = pci_resource_len(rdev->pdev, 5);
1398 } else {
1399 rdev->rmmio_base = pci_resource_start(rdev->pdev, 2);
1400 rdev->rmmio_size = pci_resource_len(rdev->pdev, 2);
1401 }
1402 rdev->rmmio = ioremap(rdev->rmmio_base, rdev->rmmio_size);
1403 if (rdev->rmmio == NULL)
1404 return -ENOMEM;
1405
1406 /* doorbell bar mapping */
1407 if (rdev->family >= CHIP_BONAIRE)
1408 radeon_doorbell_init(rdev);
1409
1410 /* io port mapping */
1411 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1412 if (pci_resource_flags(rdev->pdev, i) & IORESOURCE_IO) {
1413 rdev->rio_mem_size = pci_resource_len(rdev->pdev, i);
1414 rdev->rio_mem = pci_iomap(rdev->pdev, i, rdev->rio_mem_size);
1415 break;
1416 }
1417 }
1418 if (rdev->rio_mem == NULL)
1419 DRM_ERROR("Unable to find PCI I/O BAR\n");
1420
1421 if (rdev->flags & RADEON_IS_PX)
1422 radeon_device_handle_px_quirks(rdev);
1423
1424 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1425 /* this will fail for cards that aren't VGA class devices, just
1426 * ignore it */
1427 vga_client_register(rdev->pdev, radeon_vga_set_decode);
1428
1429 if (rdev->flags & RADEON_IS_PX)
1430 runtime = true;
1431 if (!pci_is_thunderbolt_attached(rdev->pdev))
1432 vga_switcheroo_register_client(rdev->pdev,
1433 &radeon_switcheroo_ops, runtime);
1434 if (runtime)
1435 vga_switcheroo_init_domain_pm_ops(rdev->dev, &rdev->vga_pm_domain);
1436
1437 r = radeon_init(rdev);
1438 if (r)
1439 goto failed;
1440
1441 radeon_gem_debugfs_init(rdev);
1442
1443 if (rdev->flags & RADEON_IS_AGP && !rdev->accel_working) {
1444 /* Acceleration not working on AGP card try again
1445 * with fallback to PCI or PCIE GART
1446 */
1447 radeon_asic_reset(rdev);
1448 radeon_fini(rdev);
1449 radeon_agp_disable(rdev);
1450 r = radeon_init(rdev);
1451 if (r)
1452 goto failed;
1453 }
1454
1455 radeon_audio_component_init(rdev);
1456
1457 r = radeon_ib_ring_tests(rdev);
1458 if (r)
1459 DRM_ERROR("ib ring test failed (%d).\n", r);
1460
1461 /*
1462 * Turks/Thames GPU will freeze whole laptop if DPM is not restarted
1463 * after the CP ring have chew one packet at least. Hence here we stop
1464 * and restart DPM after the radeon_ib_ring_tests().
1465 */
1466 if (rdev->pm.dpm_enabled &&
1467 (rdev->pm.pm_method == PM_METHOD_DPM) &&
1468 (rdev->family == CHIP_TURKS) &&
1469 (rdev->flags & RADEON_IS_MOBILITY)) {
1470 mutex_lock(&rdev->pm.mutex);
1471 radeon_dpm_disable(rdev);
1472 radeon_dpm_enable(rdev);
1473 mutex_unlock(&rdev->pm.mutex);
1474 }
1475
1476 if ((radeon_testing & 1)) {
1477 if (rdev->accel_working)
1478 radeon_test_moves(rdev);
1479 else
1480 DRM_INFO("radeon: acceleration disabled, skipping move tests\n");
1481 }
1482 if ((radeon_testing & 2)) {
1483 if (rdev->accel_working)
1484 radeon_test_syncing(rdev);
1485 else
1486 DRM_INFO("radeon: acceleration disabled, skipping sync tests\n");
1487 }
1488 if (radeon_benchmarking) {
1489 if (rdev->accel_working)
1490 radeon_benchmark(rdev, radeon_benchmarking);
1491 else
1492 DRM_INFO("radeon: acceleration disabled, skipping benchmarks\n");
1493 }
1494 return 0;
1495
1496failed:
1497 /* balance pm_runtime_get_sync() in radeon_driver_unload_kms() */
1498 if (radeon_is_px(ddev))
1499 pm_runtime_put_noidle(ddev->dev);
1500 if (runtime)
1501 vga_switcheroo_fini_domain_pm_ops(rdev->dev);
1502 return r;
1503}
1504
1505/**
1506 * radeon_device_fini - tear down the driver
1507 *
1508 * @rdev: radeon_device pointer
1509 *
1510 * Tear down the driver info (all asics).
1511 * Called at driver shutdown.
1512 */
1513void radeon_device_fini(struct radeon_device *rdev)
1514{
1515 DRM_INFO("radeon: finishing device.\n");
1516 rdev->shutdown = true;
1517 /* evict vram memory */
1518 radeon_bo_evict_vram(rdev);
1519 radeon_audio_component_fini(rdev);
1520 radeon_fini(rdev);
1521 if (!pci_is_thunderbolt_attached(rdev->pdev))
1522 vga_switcheroo_unregister_client(rdev->pdev);
1523 if (rdev->flags & RADEON_IS_PX)
1524 vga_switcheroo_fini_domain_pm_ops(rdev->dev);
1525 vga_client_unregister(rdev->pdev);
1526 if (rdev->rio_mem)
1527 pci_iounmap(rdev->pdev, rdev->rio_mem);
1528 rdev->rio_mem = NULL;
1529 iounmap(rdev->rmmio);
1530 rdev->rmmio = NULL;
1531 if (rdev->family >= CHIP_BONAIRE)
1532 radeon_doorbell_fini(rdev);
1533}
1534
1535
1536/*
1537 * Suspend & resume.
1538 */
1539/*
1540 * radeon_suspend_kms - initiate device suspend
1541 *
1542 * Puts the hw in the suspend state (all asics).
1543 * Returns 0 for success or an error on failure.
1544 * Called at driver suspend.
1545 */
1546int radeon_suspend_kms(struct drm_device *dev, bool suspend,
1547 bool fbcon, bool freeze)
1548{
1549 struct radeon_device *rdev;
1550 struct pci_dev *pdev;
1551 struct drm_crtc *crtc;
1552 struct drm_connector *connector;
1553 int i, r;
1554
1555 if (dev == NULL || dev->dev_private == NULL) {
1556 return -ENODEV;
1557 }
1558
1559 rdev = dev->dev_private;
1560 pdev = to_pci_dev(dev->dev);
1561
1562 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1563 return 0;
1564
1565 drm_kms_helper_poll_disable(dev);
1566
1567 drm_modeset_lock_all(dev);
1568 /* turn off display hw */
1569 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1570 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
1571 }
1572 drm_modeset_unlock_all(dev);
1573
1574 /* unpin the front buffers and cursors */
1575 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1576 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1577 struct drm_framebuffer *fb = crtc->primary->fb;
1578 struct radeon_bo *robj;
1579
1580 if (radeon_crtc->cursor_bo) {
1581 struct radeon_bo *robj = gem_to_radeon_bo(radeon_crtc->cursor_bo);
1582 r = radeon_bo_reserve(robj, false);
1583 if (r == 0) {
1584 radeon_bo_unpin(robj);
1585 radeon_bo_unreserve(robj);
1586 }
1587 }
1588
1589 if (fb == NULL || fb->obj[0] == NULL) {
1590 continue;
1591 }
1592 robj = gem_to_radeon_bo(fb->obj[0]);
1593 /* don't unpin kernel fb objects */
1594 if (!radeon_fbdev_robj_is_fb(rdev, robj)) {
1595 r = radeon_bo_reserve(robj, false);
1596 if (r == 0) {
1597 radeon_bo_unpin(robj);
1598 radeon_bo_unreserve(robj);
1599 }
1600 }
1601 }
1602 /* evict vram memory */
1603 radeon_bo_evict_vram(rdev);
1604
1605 /* wait for gpu to finish processing current batch */
1606 for (i = 0; i < RADEON_NUM_RINGS; i++) {
1607 r = radeon_fence_wait_empty(rdev, i);
1608 if (r) {
1609 /* delay GPU reset to resume */
1610 radeon_fence_driver_force_completion(rdev, i);
1611 } else {
1612 /* finish executing delayed work */
1613 flush_delayed_work(&rdev->fence_drv[i].lockup_work);
1614 }
1615 }
1616
1617 radeon_save_bios_scratch_regs(rdev);
1618
1619 radeon_suspend(rdev);
1620 radeon_hpd_fini(rdev);
1621 /* evict remaining vram memory
1622 * This second call to evict vram is to evict the gart page table
1623 * using the CPU.
1624 */
1625 radeon_bo_evict_vram(rdev);
1626
1627 radeon_agp_suspend(rdev);
1628
1629 pci_save_state(pdev);
1630 if (freeze && rdev->family >= CHIP_CEDAR && !(rdev->flags & RADEON_IS_IGP)) {
1631 rdev->asic->asic_reset(rdev, true);
1632 pci_restore_state(pdev);
1633 } else if (suspend) {
1634 /* Shut down the device */
1635 pci_disable_device(pdev);
1636 pci_set_power_state(pdev, PCI_D3hot);
1637 }
1638
1639 if (fbcon) {
1640 console_lock();
1641 radeon_fbdev_set_suspend(rdev, 1);
1642 console_unlock();
1643 }
1644 return 0;
1645}
1646
1647/*
1648 * radeon_resume_kms - initiate device resume
1649 *
1650 * Bring the hw back to operating state (all asics).
1651 * Returns 0 for success or an error on failure.
1652 * Called at driver resume.
1653 */
1654int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
1655{
1656 struct drm_connector *connector;
1657 struct radeon_device *rdev = dev->dev_private;
1658 struct pci_dev *pdev = to_pci_dev(dev->dev);
1659 struct drm_crtc *crtc;
1660 int r;
1661
1662 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1663 return 0;
1664
1665 if (fbcon) {
1666 console_lock();
1667 }
1668 if (resume) {
1669 pci_set_power_state(pdev, PCI_D0);
1670 pci_restore_state(pdev);
1671 if (pci_enable_device(pdev)) {
1672 if (fbcon)
1673 console_unlock();
1674 return -1;
1675 }
1676 }
1677 /* resume AGP if in use */
1678 radeon_agp_resume(rdev);
1679 radeon_resume(rdev);
1680
1681 r = radeon_ib_ring_tests(rdev);
1682 if (r)
1683 DRM_ERROR("ib ring test failed (%d).\n", r);
1684
1685 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
1686 /* do dpm late init */
1687 r = radeon_pm_late_init(rdev);
1688 if (r) {
1689 rdev->pm.dpm_enabled = false;
1690 DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n");
1691 }
1692 } else {
1693 /* resume old pm late */
1694 radeon_pm_resume(rdev);
1695 }
1696
1697 radeon_restore_bios_scratch_regs(rdev);
1698
1699 /* pin cursors */
1700 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1701 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1702
1703 if (radeon_crtc->cursor_bo) {
1704 struct radeon_bo *robj = gem_to_radeon_bo(radeon_crtc->cursor_bo);
1705 r = radeon_bo_reserve(robj, false);
1706 if (r == 0) {
1707 /* Only 27 bit offset for legacy cursor */
1708 r = radeon_bo_pin_restricted(robj,
1709 RADEON_GEM_DOMAIN_VRAM,
1710 ASIC_IS_AVIVO(rdev) ?
1711 0 : 1 << 27,
1712 &radeon_crtc->cursor_addr);
1713 if (r != 0)
1714 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
1715 radeon_bo_unreserve(robj);
1716 }
1717 }
1718 }
1719
1720 /* init dig PHYs, disp eng pll */
1721 if (rdev->is_atom_bios) {
1722 radeon_atom_encoder_init(rdev);
1723 radeon_atom_disp_eng_pll_init(rdev);
1724 /* turn on the BL */
1725 if (rdev->mode_info.bl_encoder) {
1726 u8 bl_level = radeon_get_backlight_level(rdev,
1727 rdev->mode_info.bl_encoder);
1728 radeon_set_backlight_level(rdev, rdev->mode_info.bl_encoder,
1729 bl_level);
1730 }
1731 }
1732 /* reset hpd state */
1733 radeon_hpd_init(rdev);
1734 /* blat the mode back in */
1735 if (fbcon) {
1736 drm_helper_resume_force_mode(dev);
1737 /* turn on display hw */
1738 drm_modeset_lock_all(dev);
1739 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1740 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
1741 }
1742 drm_modeset_unlock_all(dev);
1743 }
1744
1745 drm_kms_helper_poll_enable(dev);
1746
1747 /* set the power state here in case we are a PX system or headless */
1748 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled)
1749 radeon_pm_compute_clocks(rdev);
1750
1751 if (fbcon) {
1752 radeon_fbdev_set_suspend(rdev, 0);
1753 console_unlock();
1754 }
1755
1756 return 0;
1757}
1758
1759/**
1760 * radeon_gpu_reset - reset the asic
1761 *
1762 * @rdev: radeon device pointer
1763 *
1764 * Attempt the reset the GPU if it has hung (all asics).
1765 * Returns 0 for success or an error on failure.
1766 */
1767int radeon_gpu_reset(struct radeon_device *rdev)
1768{
1769 unsigned ring_sizes[RADEON_NUM_RINGS];
1770 uint32_t *ring_data[RADEON_NUM_RINGS];
1771
1772 bool saved = false;
1773
1774 int i, r;
1775 int resched;
1776
1777 down_write(&rdev->exclusive_lock);
1778
1779 if (!rdev->needs_reset) {
1780 up_write(&rdev->exclusive_lock);
1781 return 0;
1782 }
1783
1784 atomic_inc(&rdev->gpu_reset_counter);
1785
1786 radeon_save_bios_scratch_regs(rdev);
1787 /* block TTM */
1788 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
1789 radeon_suspend(rdev);
1790 radeon_hpd_fini(rdev);
1791
1792 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
1793 ring_sizes[i] = radeon_ring_backup(rdev, &rdev->ring[i],
1794 &ring_data[i]);
1795 if (ring_sizes[i]) {
1796 saved = true;
1797 dev_info(rdev->dev, "Saved %d dwords of commands "
1798 "on ring %d.\n", ring_sizes[i], i);
1799 }
1800 }
1801
1802 r = radeon_asic_reset(rdev);
1803 if (!r) {
1804 dev_info(rdev->dev, "GPU reset succeeded, trying to resume\n");
1805 radeon_resume(rdev);
1806 }
1807
1808 radeon_restore_bios_scratch_regs(rdev);
1809
1810 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
1811 if (!r && ring_data[i]) {
1812 radeon_ring_restore(rdev, &rdev->ring[i],
1813 ring_sizes[i], ring_data[i]);
1814 } else {
1815 radeon_fence_driver_force_completion(rdev, i);
1816 kfree(ring_data[i]);
1817 }
1818 }
1819
1820 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
1821 /* do dpm late init */
1822 r = radeon_pm_late_init(rdev);
1823 if (r) {
1824 rdev->pm.dpm_enabled = false;
1825 DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n");
1826 }
1827 } else {
1828 /* resume old pm late */
1829 radeon_pm_resume(rdev);
1830 }
1831
1832 /* init dig PHYs, disp eng pll */
1833 if (rdev->is_atom_bios) {
1834 radeon_atom_encoder_init(rdev);
1835 radeon_atom_disp_eng_pll_init(rdev);
1836 /* turn on the BL */
1837 if (rdev->mode_info.bl_encoder) {
1838 u8 bl_level = radeon_get_backlight_level(rdev,
1839 rdev->mode_info.bl_encoder);
1840 radeon_set_backlight_level(rdev, rdev->mode_info.bl_encoder,
1841 bl_level);
1842 }
1843 }
1844 /* reset hpd state */
1845 radeon_hpd_init(rdev);
1846
1847 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
1848
1849 rdev->in_reset = true;
1850 rdev->needs_reset = false;
1851
1852 downgrade_write(&rdev->exclusive_lock);
1853
1854 drm_helper_resume_force_mode(rdev->ddev);
1855
1856 /* set the power state here in case we are a PX system or headless */
1857 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled)
1858 radeon_pm_compute_clocks(rdev);
1859
1860 if (!r) {
1861 r = radeon_ib_ring_tests(rdev);
1862 if (r && saved)
1863 r = -EAGAIN;
1864 } else {
1865 /* bad news, how to tell it to userspace ? */
1866 dev_info(rdev->dev, "GPU reset failed\n");
1867 }
1868
1869 rdev->needs_reset = r == -EAGAIN;
1870 rdev->in_reset = false;
1871
1872 up_read(&rdev->exclusive_lock);
1873 return r;
1874}
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
29#include <linux/console.h>
30#include <linux/efi.h>
31#include <linux/pci.h>
32#include <linux/pm_runtime.h>
33#include <linux/slab.h>
34#include <linux/vga_switcheroo.h>
35#include <linux/vgaarb.h>
36
37#include <drm/drm_cache.h>
38#include <drm/drm_crtc_helper.h>
39#include <drm/drm_debugfs.h>
40#include <drm/drm_device.h>
41#include <drm/drm_file.h>
42#include <drm/drm_probe_helper.h>
43#include <drm/radeon_drm.h>
44
45#include "radeon_reg.h"
46#include "radeon.h"
47#include "atom.h"
48
49static const char radeon_family_name[][16] = {
50 "R100",
51 "RV100",
52 "RS100",
53 "RV200",
54 "RS200",
55 "R200",
56 "RV250",
57 "RS300",
58 "RV280",
59 "R300",
60 "R350",
61 "RV350",
62 "RV380",
63 "R420",
64 "R423",
65 "RV410",
66 "RS400",
67 "RS480",
68 "RS600",
69 "RS690",
70 "RS740",
71 "RV515",
72 "R520",
73 "RV530",
74 "RV560",
75 "RV570",
76 "R580",
77 "R600",
78 "RV610",
79 "RV630",
80 "RV670",
81 "RV620",
82 "RV635",
83 "RS780",
84 "RS880",
85 "RV770",
86 "RV730",
87 "RV710",
88 "RV740",
89 "CEDAR",
90 "REDWOOD",
91 "JUNIPER",
92 "CYPRESS",
93 "HEMLOCK",
94 "PALM",
95 "SUMO",
96 "SUMO2",
97 "BARTS",
98 "TURKS",
99 "CAICOS",
100 "CAYMAN",
101 "ARUBA",
102 "TAHITI",
103 "PITCAIRN",
104 "VERDE",
105 "OLAND",
106 "HAINAN",
107 "BONAIRE",
108 "KAVERI",
109 "KABINI",
110 "HAWAII",
111 "MULLINS",
112 "LAST",
113};
114
115#if defined(CONFIG_VGA_SWITCHEROO)
116bool radeon_has_atpx_dgpu_power_cntl(void);
117bool radeon_is_atpx_hybrid(void);
118#else
119static inline bool radeon_has_atpx_dgpu_power_cntl(void) { return false; }
120static inline bool radeon_is_atpx_hybrid(void) { return false; }
121#endif
122
123#define RADEON_PX_QUIRK_DISABLE_PX (1 << 0)
124
125struct radeon_px_quirk {
126 u32 chip_vendor;
127 u32 chip_device;
128 u32 subsys_vendor;
129 u32 subsys_device;
130 u32 px_quirk_flags;
131};
132
133static struct radeon_px_quirk radeon_px_quirk_list[] = {
134 /* Acer aspire 5560g (CPU: AMD A4-3305M; GPU: AMD Radeon HD 6480g + 7470m)
135 * https://bugzilla.kernel.org/show_bug.cgi?id=74551
136 */
137 { PCI_VENDOR_ID_ATI, 0x6760, 0x1025, 0x0672, RADEON_PX_QUIRK_DISABLE_PX },
138 /* Asus K73TA laptop with AMD A6-3400M APU and Radeon 6550 GPU
139 * https://bugzilla.kernel.org/show_bug.cgi?id=51381
140 */
141 { PCI_VENDOR_ID_ATI, 0x6741, 0x1043, 0x108c, RADEON_PX_QUIRK_DISABLE_PX },
142 /* Asus K53TK laptop with AMD A6-3420M APU and Radeon 7670m GPU
143 * https://bugzilla.kernel.org/show_bug.cgi?id=51381
144 */
145 { PCI_VENDOR_ID_ATI, 0x6840, 0x1043, 0x2122, RADEON_PX_QUIRK_DISABLE_PX },
146 /* Asus K53TK laptop with AMD A6-3420M APU and Radeon 7670m GPU
147 * https://bugs.freedesktop.org/show_bug.cgi?id=101491
148 */
149 { PCI_VENDOR_ID_ATI, 0x6741, 0x1043, 0x2122, RADEON_PX_QUIRK_DISABLE_PX },
150 /* Asus K73TK laptop with AMD A6-3420M APU and Radeon 7670m GPU
151 * https://bugzilla.kernel.org/show_bug.cgi?id=51381#c52
152 */
153 { PCI_VENDOR_ID_ATI, 0x6840, 0x1043, 0x2123, RADEON_PX_QUIRK_DISABLE_PX },
154 { 0, 0, 0, 0, 0 },
155};
156
157bool radeon_is_px(struct drm_device *dev)
158{
159 struct radeon_device *rdev = dev->dev_private;
160
161 if (rdev->flags & RADEON_IS_PX)
162 return true;
163 return false;
164}
165
166static void radeon_device_handle_px_quirks(struct radeon_device *rdev)
167{
168 struct radeon_px_quirk *p = radeon_px_quirk_list;
169
170 /* Apply PX quirks */
171 while (p && p->chip_device != 0) {
172 if (rdev->pdev->vendor == p->chip_vendor &&
173 rdev->pdev->device == p->chip_device &&
174 rdev->pdev->subsystem_vendor == p->subsys_vendor &&
175 rdev->pdev->subsystem_device == p->subsys_device) {
176 rdev->px_quirk_flags = p->px_quirk_flags;
177 break;
178 }
179 ++p;
180 }
181
182 if (rdev->px_quirk_flags & RADEON_PX_QUIRK_DISABLE_PX)
183 rdev->flags &= ~RADEON_IS_PX;
184
185 /* disable PX is the system doesn't support dGPU power control or hybrid gfx */
186 if (!radeon_is_atpx_hybrid() &&
187 !radeon_has_atpx_dgpu_power_cntl())
188 rdev->flags &= ~RADEON_IS_PX;
189}
190
191/**
192 * radeon_program_register_sequence - program an array of registers.
193 *
194 * @rdev: radeon_device pointer
195 * @registers: pointer to the register array
196 * @array_size: size of the register array
197 *
198 * Programs an array or registers with and and or masks.
199 * This is a helper for setting golden registers.
200 */
201void radeon_program_register_sequence(struct radeon_device *rdev,
202 const u32 *registers,
203 const u32 array_size)
204{
205 u32 tmp, reg, and_mask, or_mask;
206 int i;
207
208 if (array_size % 3)
209 return;
210
211 for (i = 0; i < array_size; i +=3) {
212 reg = registers[i + 0];
213 and_mask = registers[i + 1];
214 or_mask = registers[i + 2];
215
216 if (and_mask == 0xffffffff) {
217 tmp = or_mask;
218 } else {
219 tmp = RREG32(reg);
220 tmp &= ~and_mask;
221 tmp |= or_mask;
222 }
223 WREG32(reg, tmp);
224 }
225}
226
227void radeon_pci_config_reset(struct radeon_device *rdev)
228{
229 pci_write_config_dword(rdev->pdev, 0x7c, RADEON_ASIC_RESET_DATA);
230}
231
232/**
233 * radeon_surface_init - Clear GPU surface registers.
234 *
235 * @rdev: radeon_device pointer
236 *
237 * Clear GPU surface registers (r1xx-r5xx).
238 */
239void radeon_surface_init(struct radeon_device *rdev)
240{
241 /* FIXME: check this out */
242 if (rdev->family < CHIP_R600) {
243 int i;
244
245 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
246 if (rdev->surface_regs[i].bo)
247 radeon_bo_get_surface_reg(rdev->surface_regs[i].bo);
248 else
249 radeon_clear_surface_reg(rdev, i);
250 }
251 /* enable surfaces */
252 WREG32(RADEON_SURFACE_CNTL, 0);
253 }
254}
255
256/*
257 * GPU scratch registers helpers function.
258 */
259/**
260 * radeon_scratch_init - Init scratch register driver information.
261 *
262 * @rdev: radeon_device pointer
263 *
264 * Init CP scratch register driver information (r1xx-r5xx)
265 */
266void radeon_scratch_init(struct radeon_device *rdev)
267{
268 int i;
269
270 /* FIXME: check this out */
271 if (rdev->family < CHIP_R300) {
272 rdev->scratch.num_reg = 5;
273 } else {
274 rdev->scratch.num_reg = 7;
275 }
276 rdev->scratch.reg_base = RADEON_SCRATCH_REG0;
277 for (i = 0; i < rdev->scratch.num_reg; i++) {
278 rdev->scratch.free[i] = true;
279 rdev->scratch.reg[i] = rdev->scratch.reg_base + (i * 4);
280 }
281}
282
283/**
284 * radeon_scratch_get - Allocate a scratch register
285 *
286 * @rdev: radeon_device pointer
287 * @reg: scratch register mmio offset
288 *
289 * Allocate a CP scratch register for use by the driver (all asics).
290 * Returns 0 on success or -EINVAL on failure.
291 */
292int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg)
293{
294 int i;
295
296 for (i = 0; i < rdev->scratch.num_reg; i++) {
297 if (rdev->scratch.free[i]) {
298 rdev->scratch.free[i] = false;
299 *reg = rdev->scratch.reg[i];
300 return 0;
301 }
302 }
303 return -EINVAL;
304}
305
306/**
307 * radeon_scratch_free - Free a scratch register
308 *
309 * @rdev: radeon_device pointer
310 * @reg: scratch register mmio offset
311 *
312 * Free a CP scratch register allocated for use by the driver (all asics)
313 */
314void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg)
315{
316 int i;
317
318 for (i = 0; i < rdev->scratch.num_reg; i++) {
319 if (rdev->scratch.reg[i] == reg) {
320 rdev->scratch.free[i] = true;
321 return;
322 }
323 }
324}
325
326/*
327 * GPU doorbell aperture helpers function.
328 */
329/**
330 * radeon_doorbell_init - Init doorbell driver information.
331 *
332 * @rdev: radeon_device pointer
333 *
334 * Init doorbell driver information (CIK)
335 * Returns 0 on success, error on failure.
336 */
337static int radeon_doorbell_init(struct radeon_device *rdev)
338{
339 /* doorbell bar mapping */
340 rdev->doorbell.base = pci_resource_start(rdev->pdev, 2);
341 rdev->doorbell.size = pci_resource_len(rdev->pdev, 2);
342
343 rdev->doorbell.num_doorbells = min_t(u32, rdev->doorbell.size / sizeof(u32), RADEON_MAX_DOORBELLS);
344 if (rdev->doorbell.num_doorbells == 0)
345 return -EINVAL;
346
347 rdev->doorbell.ptr = ioremap(rdev->doorbell.base, rdev->doorbell.num_doorbells * sizeof(u32));
348 if (rdev->doorbell.ptr == NULL) {
349 return -ENOMEM;
350 }
351 DRM_INFO("doorbell mmio base: 0x%08X\n", (uint32_t)rdev->doorbell.base);
352 DRM_INFO("doorbell mmio size: %u\n", (unsigned)rdev->doorbell.size);
353
354 memset(&rdev->doorbell.used, 0, sizeof(rdev->doorbell.used));
355
356 return 0;
357}
358
359/**
360 * radeon_doorbell_fini - Tear down doorbell driver information.
361 *
362 * @rdev: radeon_device pointer
363 *
364 * Tear down doorbell driver information (CIK)
365 */
366static void radeon_doorbell_fini(struct radeon_device *rdev)
367{
368 iounmap(rdev->doorbell.ptr);
369 rdev->doorbell.ptr = NULL;
370}
371
372/**
373 * radeon_doorbell_get - Allocate a doorbell entry
374 *
375 * @rdev: radeon_device pointer
376 * @doorbell: doorbell index
377 *
378 * Allocate a doorbell for use by the driver (all asics).
379 * Returns 0 on success or -EINVAL on failure.
380 */
381int radeon_doorbell_get(struct radeon_device *rdev, u32 *doorbell)
382{
383 unsigned long offset = find_first_zero_bit(rdev->doorbell.used, rdev->doorbell.num_doorbells);
384 if (offset < rdev->doorbell.num_doorbells) {
385 __set_bit(offset, rdev->doorbell.used);
386 *doorbell = offset;
387 return 0;
388 } else {
389 return -EINVAL;
390 }
391}
392
393/**
394 * radeon_doorbell_free - Free a doorbell entry
395 *
396 * @rdev: radeon_device pointer
397 * @doorbell: doorbell index
398 *
399 * Free a doorbell allocated for use by the driver (all asics)
400 */
401void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell)
402{
403 if (doorbell < rdev->doorbell.num_doorbells)
404 __clear_bit(doorbell, rdev->doorbell.used);
405}
406
407/*
408 * radeon_wb_*()
409 * Writeback is the the method by which the the GPU updates special pages
410 * in memory with the status of certain GPU events (fences, ring pointers,
411 * etc.).
412 */
413
414/**
415 * radeon_wb_disable - Disable Writeback
416 *
417 * @rdev: radeon_device pointer
418 *
419 * Disables Writeback (all asics). Used for suspend.
420 */
421void radeon_wb_disable(struct radeon_device *rdev)
422{
423 rdev->wb.enabled = false;
424}
425
426/**
427 * radeon_wb_fini - Disable Writeback and free memory
428 *
429 * @rdev: radeon_device pointer
430 *
431 * Disables Writeback and frees the Writeback memory (all asics).
432 * Used at driver shutdown.
433 */
434void radeon_wb_fini(struct radeon_device *rdev)
435{
436 radeon_wb_disable(rdev);
437 if (rdev->wb.wb_obj) {
438 if (!radeon_bo_reserve(rdev->wb.wb_obj, false)) {
439 radeon_bo_kunmap(rdev->wb.wb_obj);
440 radeon_bo_unpin(rdev->wb.wb_obj);
441 radeon_bo_unreserve(rdev->wb.wb_obj);
442 }
443 radeon_bo_unref(&rdev->wb.wb_obj);
444 rdev->wb.wb = NULL;
445 rdev->wb.wb_obj = NULL;
446 }
447}
448
449/**
450 * radeon_wb_init- Init Writeback driver info and allocate memory
451 *
452 * @rdev: radeon_device pointer
453 *
454 * Disables Writeback and frees the Writeback memory (all asics).
455 * Used at driver startup.
456 * Returns 0 on success or an -error on failure.
457 */
458int radeon_wb_init(struct radeon_device *rdev)
459{
460 int r;
461
462 if (rdev->wb.wb_obj == NULL) {
463 r = radeon_bo_create(rdev, RADEON_GPU_PAGE_SIZE, PAGE_SIZE, true,
464 RADEON_GEM_DOMAIN_GTT, 0, NULL, NULL,
465 &rdev->wb.wb_obj);
466 if (r) {
467 dev_warn(rdev->dev, "(%d) create WB bo failed\n", r);
468 return r;
469 }
470 r = radeon_bo_reserve(rdev->wb.wb_obj, false);
471 if (unlikely(r != 0)) {
472 radeon_wb_fini(rdev);
473 return r;
474 }
475 r = radeon_bo_pin(rdev->wb.wb_obj, RADEON_GEM_DOMAIN_GTT,
476 &rdev->wb.gpu_addr);
477 if (r) {
478 radeon_bo_unreserve(rdev->wb.wb_obj);
479 dev_warn(rdev->dev, "(%d) pin WB bo failed\n", r);
480 radeon_wb_fini(rdev);
481 return r;
482 }
483 r = radeon_bo_kmap(rdev->wb.wb_obj, (void **)&rdev->wb.wb);
484 radeon_bo_unreserve(rdev->wb.wb_obj);
485 if (r) {
486 dev_warn(rdev->dev, "(%d) map WB bo failed\n", r);
487 radeon_wb_fini(rdev);
488 return r;
489 }
490 }
491
492 /* clear wb memory */
493 memset((char *)rdev->wb.wb, 0, RADEON_GPU_PAGE_SIZE);
494 /* disable event_write fences */
495 rdev->wb.use_event = false;
496 /* disabled via module param */
497 if (radeon_no_wb == 1) {
498 rdev->wb.enabled = false;
499 } else {
500 if (rdev->flags & RADEON_IS_AGP) {
501 /* often unreliable on AGP */
502 rdev->wb.enabled = false;
503 } else if (rdev->family < CHIP_R300) {
504 /* often unreliable on pre-r300 */
505 rdev->wb.enabled = false;
506 } else {
507 rdev->wb.enabled = true;
508 /* event_write fences are only available on r600+ */
509 if (rdev->family >= CHIP_R600) {
510 rdev->wb.use_event = true;
511 }
512 }
513 }
514 /* always use writeback/events on NI, APUs */
515 if (rdev->family >= CHIP_PALM) {
516 rdev->wb.enabled = true;
517 rdev->wb.use_event = true;
518 }
519
520 dev_info(rdev->dev, "WB %sabled\n", rdev->wb.enabled ? "en" : "dis");
521
522 return 0;
523}
524
525/**
526 * radeon_vram_location - try to find VRAM location
527 * @rdev: radeon device structure holding all necessary informations
528 * @mc: memory controller structure holding memory informations
529 * @base: base address at which to put VRAM
530 *
531 * Function will place try to place VRAM at base address provided
532 * as parameter (which is so far either PCI aperture address or
533 * for IGP TOM base address).
534 *
535 * If there is not enough space to fit the unvisible VRAM in the 32bits
536 * address space then we limit the VRAM size to the aperture.
537 *
538 * If we are using AGP and if the AGP aperture doesn't allow us to have
539 * room for all the VRAM than we restrict the VRAM to the PCI aperture
540 * size and print a warning.
541 *
542 * This function will never fails, worst case are limiting VRAM.
543 *
544 * Note: GTT start, end, size should be initialized before calling this
545 * function on AGP platform.
546 *
547 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
548 * this shouldn't be a problem as we are using the PCI aperture as a reference.
549 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
550 * not IGP.
551 *
552 * Note: we use mc_vram_size as on some board we need to program the mc to
553 * cover the whole aperture even if VRAM size is inferior to aperture size
554 * Novell bug 204882 + along with lots of ubuntu ones
555 *
556 * Note: when limiting vram it's safe to overwritte real_vram_size because
557 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
558 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
559 * ones)
560 *
561 * Note: IGP TOM addr should be the same as the aperture addr, we don't
562 * explicitly check for that thought.
563 *
564 * FIXME: when reducing VRAM size align new size on power of 2.
565 */
566void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base)
567{
568 uint64_t limit = (uint64_t)radeon_vram_limit << 20;
569
570 mc->vram_start = base;
571 if (mc->mc_vram_size > (rdev->mc.mc_mask - base + 1)) {
572 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
573 mc->real_vram_size = mc->aper_size;
574 mc->mc_vram_size = mc->aper_size;
575 }
576 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
577 if (rdev->flags & RADEON_IS_AGP && mc->vram_end > mc->gtt_start && mc->vram_start <= mc->gtt_end) {
578 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
579 mc->real_vram_size = mc->aper_size;
580 mc->mc_vram_size = mc->aper_size;
581 }
582 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
583 if (limit && limit < mc->real_vram_size)
584 mc->real_vram_size = limit;
585 dev_info(rdev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
586 mc->mc_vram_size >> 20, mc->vram_start,
587 mc->vram_end, mc->real_vram_size >> 20);
588}
589
590/**
591 * radeon_gtt_location - try to find GTT location
592 * @rdev: radeon device structure holding all necessary informations
593 * @mc: memory controller structure holding memory informations
594 *
595 * Function will place try to place GTT before or after VRAM.
596 *
597 * If GTT size is bigger than space left then we ajust GTT size.
598 * Thus function will never fails.
599 *
600 * FIXME: when reducing GTT size align new size on power of 2.
601 */
602void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc)
603{
604 u64 size_af, size_bf;
605
606 size_af = ((rdev->mc.mc_mask - mc->vram_end) + mc->gtt_base_align) & ~mc->gtt_base_align;
607 size_bf = mc->vram_start & ~mc->gtt_base_align;
608 if (size_bf > size_af) {
609 if (mc->gtt_size > size_bf) {
610 dev_warn(rdev->dev, "limiting GTT\n");
611 mc->gtt_size = size_bf;
612 }
613 mc->gtt_start = (mc->vram_start & ~mc->gtt_base_align) - mc->gtt_size;
614 } else {
615 if (mc->gtt_size > size_af) {
616 dev_warn(rdev->dev, "limiting GTT\n");
617 mc->gtt_size = size_af;
618 }
619 mc->gtt_start = (mc->vram_end + 1 + mc->gtt_base_align) & ~mc->gtt_base_align;
620 }
621 mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
622 dev_info(rdev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
623 mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
624}
625
626/*
627 * GPU helpers function.
628 */
629
630/**
631 * radeon_device_is_virtual - check if we are running is a virtual environment
632 *
633 * Check if the asic has been passed through to a VM (all asics).
634 * Used at driver startup.
635 * Returns true if virtual or false if not.
636 */
637bool radeon_device_is_virtual(void)
638{
639#ifdef CONFIG_X86
640 return boot_cpu_has(X86_FEATURE_HYPERVISOR);
641#else
642 return false;
643#endif
644}
645
646/**
647 * radeon_card_posted - check if the hw has already been initialized
648 *
649 * @rdev: radeon_device pointer
650 *
651 * Check if the asic has been initialized (all asics).
652 * Used at driver startup.
653 * Returns true if initialized or false if not.
654 */
655bool radeon_card_posted(struct radeon_device *rdev)
656{
657 uint32_t reg;
658
659 /* for pass through, always force asic_init for CI */
660 if (rdev->family >= CHIP_BONAIRE &&
661 radeon_device_is_virtual())
662 return false;
663
664 /* required for EFI mode on macbook2,1 which uses an r5xx asic */
665 if (efi_enabled(EFI_BOOT) &&
666 (rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) &&
667 (rdev->family < CHIP_R600))
668 return false;
669
670 if (ASIC_IS_NODCE(rdev))
671 goto check_memsize;
672
673 /* first check CRTCs */
674 if (ASIC_IS_DCE4(rdev)) {
675 reg = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET) |
676 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET);
677 if (rdev->num_crtc >= 4) {
678 reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET) |
679 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET);
680 }
681 if (rdev->num_crtc >= 6) {
682 reg |= RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET) |
683 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET);
684 }
685 if (reg & EVERGREEN_CRTC_MASTER_EN)
686 return true;
687 } else if (ASIC_IS_AVIVO(rdev)) {
688 reg = RREG32(AVIVO_D1CRTC_CONTROL) |
689 RREG32(AVIVO_D2CRTC_CONTROL);
690 if (reg & AVIVO_CRTC_EN) {
691 return true;
692 }
693 } else {
694 reg = RREG32(RADEON_CRTC_GEN_CNTL) |
695 RREG32(RADEON_CRTC2_GEN_CNTL);
696 if (reg & RADEON_CRTC_EN) {
697 return true;
698 }
699 }
700
701check_memsize:
702 /* then check MEM_SIZE, in case the crtcs are off */
703 if (rdev->family >= CHIP_R600)
704 reg = RREG32(R600_CONFIG_MEMSIZE);
705 else
706 reg = RREG32(RADEON_CONFIG_MEMSIZE);
707
708 if (reg)
709 return true;
710
711 return false;
712
713}
714
715/**
716 * radeon_update_bandwidth_info - update display bandwidth params
717 *
718 * @rdev: radeon_device pointer
719 *
720 * Used when sclk/mclk are switched or display modes are set.
721 * params are used to calculate display watermarks (all asics)
722 */
723void radeon_update_bandwidth_info(struct radeon_device *rdev)
724{
725 fixed20_12 a;
726 u32 sclk = rdev->pm.current_sclk;
727 u32 mclk = rdev->pm.current_mclk;
728
729 /* sclk/mclk in Mhz */
730 a.full = dfixed_const(100);
731 rdev->pm.sclk.full = dfixed_const(sclk);
732 rdev->pm.sclk.full = dfixed_div(rdev->pm.sclk, a);
733 rdev->pm.mclk.full = dfixed_const(mclk);
734 rdev->pm.mclk.full = dfixed_div(rdev->pm.mclk, a);
735
736 if (rdev->flags & RADEON_IS_IGP) {
737 a.full = dfixed_const(16);
738 /* core_bandwidth = sclk(Mhz) * 16 */
739 rdev->pm.core_bandwidth.full = dfixed_div(rdev->pm.sclk, a);
740 }
741}
742
743/**
744 * radeon_boot_test_post_card - check and possibly initialize the hw
745 *
746 * @rdev: radeon_device pointer
747 *
748 * Check if the asic is initialized and if not, attempt to initialize
749 * it (all asics).
750 * Returns true if initialized or false if not.
751 */
752bool radeon_boot_test_post_card(struct radeon_device *rdev)
753{
754 if (radeon_card_posted(rdev))
755 return true;
756
757 if (rdev->bios) {
758 DRM_INFO("GPU not posted. posting now...\n");
759 if (rdev->is_atom_bios)
760 atom_asic_init(rdev->mode_info.atom_context);
761 else
762 radeon_combios_asic_init(rdev->ddev);
763 return true;
764 } else {
765 dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n");
766 return false;
767 }
768}
769
770/**
771 * radeon_dummy_page_init - init dummy page used by the driver
772 *
773 * @rdev: radeon_device pointer
774 *
775 * Allocate the dummy page used by the driver (all asics).
776 * This dummy page is used by the driver as a filler for gart entries
777 * when pages are taken out of the GART
778 * Returns 0 on sucess, -ENOMEM on failure.
779 */
780int radeon_dummy_page_init(struct radeon_device *rdev)
781{
782 if (rdev->dummy_page.page)
783 return 0;
784 rdev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
785 if (rdev->dummy_page.page == NULL)
786 return -ENOMEM;
787 rdev->dummy_page.addr = pci_map_page(rdev->pdev, rdev->dummy_page.page,
788 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
789 if (pci_dma_mapping_error(rdev->pdev, rdev->dummy_page.addr)) {
790 dev_err(&rdev->pdev->dev, "Failed to DMA MAP the dummy page\n");
791 __free_page(rdev->dummy_page.page);
792 rdev->dummy_page.page = NULL;
793 return -ENOMEM;
794 }
795 rdev->dummy_page.entry = radeon_gart_get_page_entry(rdev->dummy_page.addr,
796 RADEON_GART_PAGE_DUMMY);
797 return 0;
798}
799
800/**
801 * radeon_dummy_page_fini - free dummy page used by the driver
802 *
803 * @rdev: radeon_device pointer
804 *
805 * Frees the dummy page used by the driver (all asics).
806 */
807void radeon_dummy_page_fini(struct radeon_device *rdev)
808{
809 if (rdev->dummy_page.page == NULL)
810 return;
811 pci_unmap_page(rdev->pdev, rdev->dummy_page.addr,
812 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
813 __free_page(rdev->dummy_page.page);
814 rdev->dummy_page.page = NULL;
815}
816
817
818/* ATOM accessor methods */
819/*
820 * ATOM is an interpreted byte code stored in tables in the vbios. The
821 * driver registers callbacks to access registers and the interpreter
822 * in the driver parses the tables and executes then to program specific
823 * actions (set display modes, asic init, etc.). See radeon_atombios.c,
824 * atombios.h, and atom.c
825 */
826
827/**
828 * cail_pll_read - read PLL register
829 *
830 * @info: atom card_info pointer
831 * @reg: PLL register offset
832 *
833 * Provides a PLL register accessor for the atom interpreter (r4xx+).
834 * Returns the value of the PLL register.
835 */
836static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
837{
838 struct radeon_device *rdev = info->dev->dev_private;
839 uint32_t r;
840
841 r = rdev->pll_rreg(rdev, reg);
842 return r;
843}
844
845/**
846 * cail_pll_write - write PLL register
847 *
848 * @info: atom card_info pointer
849 * @reg: PLL register offset
850 * @val: value to write to the pll register
851 *
852 * Provides a PLL register accessor for the atom interpreter (r4xx+).
853 */
854static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
855{
856 struct radeon_device *rdev = info->dev->dev_private;
857
858 rdev->pll_wreg(rdev, reg, val);
859}
860
861/**
862 * cail_mc_read - read MC (Memory Controller) register
863 *
864 * @info: atom card_info pointer
865 * @reg: MC register offset
866 *
867 * Provides an MC register accessor for the atom interpreter (r4xx+).
868 * Returns the value of the MC register.
869 */
870static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
871{
872 struct radeon_device *rdev = info->dev->dev_private;
873 uint32_t r;
874
875 r = rdev->mc_rreg(rdev, reg);
876 return r;
877}
878
879/**
880 * cail_mc_write - write MC (Memory Controller) register
881 *
882 * @info: atom card_info pointer
883 * @reg: MC register offset
884 * @val: value to write to the pll register
885 *
886 * Provides a MC register accessor for the atom interpreter (r4xx+).
887 */
888static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
889{
890 struct radeon_device *rdev = info->dev->dev_private;
891
892 rdev->mc_wreg(rdev, reg, val);
893}
894
895/**
896 * cail_reg_write - write MMIO register
897 *
898 * @info: atom card_info pointer
899 * @reg: MMIO register offset
900 * @val: value to write to the pll register
901 *
902 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
903 */
904static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
905{
906 struct radeon_device *rdev = info->dev->dev_private;
907
908 WREG32(reg*4, val);
909}
910
911/**
912 * cail_reg_read - read MMIO register
913 *
914 * @info: atom card_info pointer
915 * @reg: MMIO register offset
916 *
917 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
918 * Returns the value of the MMIO register.
919 */
920static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
921{
922 struct radeon_device *rdev = info->dev->dev_private;
923 uint32_t r;
924
925 r = RREG32(reg*4);
926 return r;
927}
928
929/**
930 * cail_ioreg_write - write IO register
931 *
932 * @info: atom card_info pointer
933 * @reg: IO register offset
934 * @val: value to write to the pll register
935 *
936 * Provides a IO register accessor for the atom interpreter (r4xx+).
937 */
938static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val)
939{
940 struct radeon_device *rdev = info->dev->dev_private;
941
942 WREG32_IO(reg*4, val);
943}
944
945/**
946 * cail_ioreg_read - read IO register
947 *
948 * @info: atom card_info pointer
949 * @reg: IO register offset
950 *
951 * Provides an IO register accessor for the atom interpreter (r4xx+).
952 * Returns the value of the IO register.
953 */
954static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg)
955{
956 struct radeon_device *rdev = info->dev->dev_private;
957 uint32_t r;
958
959 r = RREG32_IO(reg*4);
960 return r;
961}
962
963/**
964 * radeon_atombios_init - init the driver info and callbacks for atombios
965 *
966 * @rdev: radeon_device pointer
967 *
968 * Initializes the driver info and register access callbacks for the
969 * ATOM interpreter (r4xx+).
970 * Returns 0 on sucess, -ENOMEM on failure.
971 * Called at driver startup.
972 */
973int radeon_atombios_init(struct radeon_device *rdev)
974{
975 struct card_info *atom_card_info =
976 kzalloc(sizeof(struct card_info), GFP_KERNEL);
977
978 if (!atom_card_info)
979 return -ENOMEM;
980
981 rdev->mode_info.atom_card_info = atom_card_info;
982 atom_card_info->dev = rdev->ddev;
983 atom_card_info->reg_read = cail_reg_read;
984 atom_card_info->reg_write = cail_reg_write;
985 /* needed for iio ops */
986 if (rdev->rio_mem) {
987 atom_card_info->ioreg_read = cail_ioreg_read;
988 atom_card_info->ioreg_write = cail_ioreg_write;
989 } else {
990 DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
991 atom_card_info->ioreg_read = cail_reg_read;
992 atom_card_info->ioreg_write = cail_reg_write;
993 }
994 atom_card_info->mc_read = cail_mc_read;
995 atom_card_info->mc_write = cail_mc_write;
996 atom_card_info->pll_read = cail_pll_read;
997 atom_card_info->pll_write = cail_pll_write;
998
999 rdev->mode_info.atom_context = atom_parse(atom_card_info, rdev->bios);
1000 if (!rdev->mode_info.atom_context) {
1001 radeon_atombios_fini(rdev);
1002 return -ENOMEM;
1003 }
1004
1005 mutex_init(&rdev->mode_info.atom_context->mutex);
1006 mutex_init(&rdev->mode_info.atom_context->scratch_mutex);
1007 radeon_atom_initialize_bios_scratch_regs(rdev->ddev);
1008 atom_allocate_fb_scratch(rdev->mode_info.atom_context);
1009 return 0;
1010}
1011
1012/**
1013 * radeon_atombios_fini - free the driver info and callbacks for atombios
1014 *
1015 * @rdev: radeon_device pointer
1016 *
1017 * Frees the driver info and register access callbacks for the ATOM
1018 * interpreter (r4xx+).
1019 * Called at driver shutdown.
1020 */
1021void radeon_atombios_fini(struct radeon_device *rdev)
1022{
1023 if (rdev->mode_info.atom_context) {
1024 kfree(rdev->mode_info.atom_context->scratch);
1025 }
1026 kfree(rdev->mode_info.atom_context);
1027 rdev->mode_info.atom_context = NULL;
1028 kfree(rdev->mode_info.atom_card_info);
1029 rdev->mode_info.atom_card_info = NULL;
1030}
1031
1032/* COMBIOS */
1033/*
1034 * COMBIOS is the bios format prior to ATOM. It provides
1035 * command tables similar to ATOM, but doesn't have a unified
1036 * parser. See radeon_combios.c
1037 */
1038
1039/**
1040 * radeon_combios_init - init the driver info for combios
1041 *
1042 * @rdev: radeon_device pointer
1043 *
1044 * Initializes the driver info for combios (r1xx-r3xx).
1045 * Returns 0 on sucess.
1046 * Called at driver startup.
1047 */
1048int radeon_combios_init(struct radeon_device *rdev)
1049{
1050 radeon_combios_initialize_bios_scratch_regs(rdev->ddev);
1051 return 0;
1052}
1053
1054/**
1055 * radeon_combios_fini - free the driver info for combios
1056 *
1057 * @rdev: radeon_device pointer
1058 *
1059 * Frees the driver info for combios (r1xx-r3xx).
1060 * Called at driver shutdown.
1061 */
1062void radeon_combios_fini(struct radeon_device *rdev)
1063{
1064}
1065
1066/* if we get transitioned to only one device, take VGA back */
1067/**
1068 * radeon_vga_set_decode - enable/disable vga decode
1069 *
1070 * @cookie: radeon_device pointer
1071 * @state: enable/disable vga decode
1072 *
1073 * Enable/disable vga decode (all asics).
1074 * Returns VGA resource flags.
1075 */
1076static unsigned int radeon_vga_set_decode(void *cookie, bool state)
1077{
1078 struct radeon_device *rdev = cookie;
1079 radeon_vga_set_state(rdev, state);
1080 if (state)
1081 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
1082 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1083 else
1084 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
1085}
1086
1087/**
1088 * radeon_check_pot_argument - check that argument is a power of two
1089 *
1090 * @arg: value to check
1091 *
1092 * Validates that a certain argument is a power of two (all asics).
1093 * Returns true if argument is valid.
1094 */
1095static bool radeon_check_pot_argument(int arg)
1096{
1097 return (arg & (arg - 1)) == 0;
1098}
1099
1100/**
1101 * Determine a sensible default GART size according to ASIC family.
1102 *
1103 * @family ASIC family name
1104 */
1105static int radeon_gart_size_auto(enum radeon_family family)
1106{
1107 /* default to a larger gart size on newer asics */
1108 if (family >= CHIP_TAHITI)
1109 return 2048;
1110 else if (family >= CHIP_RV770)
1111 return 1024;
1112 else
1113 return 512;
1114}
1115
1116/**
1117 * radeon_check_arguments - validate module params
1118 *
1119 * @rdev: radeon_device pointer
1120 *
1121 * Validates certain module parameters and updates
1122 * the associated values used by the driver (all asics).
1123 */
1124static void radeon_check_arguments(struct radeon_device *rdev)
1125{
1126 /* vramlimit must be a power of two */
1127 if (!radeon_check_pot_argument(radeon_vram_limit)) {
1128 dev_warn(rdev->dev, "vram limit (%d) must be a power of 2\n",
1129 radeon_vram_limit);
1130 radeon_vram_limit = 0;
1131 }
1132
1133 if (radeon_gart_size == -1) {
1134 radeon_gart_size = radeon_gart_size_auto(rdev->family);
1135 }
1136 /* gtt size must be power of two and greater or equal to 32M */
1137 if (radeon_gart_size < 32) {
1138 dev_warn(rdev->dev, "gart size (%d) too small\n",
1139 radeon_gart_size);
1140 radeon_gart_size = radeon_gart_size_auto(rdev->family);
1141 } else if (!radeon_check_pot_argument(radeon_gart_size)) {
1142 dev_warn(rdev->dev, "gart size (%d) must be a power of 2\n",
1143 radeon_gart_size);
1144 radeon_gart_size = radeon_gart_size_auto(rdev->family);
1145 }
1146 rdev->mc.gtt_size = (uint64_t)radeon_gart_size << 20;
1147
1148 /* AGP mode can only be -1, 1, 2, 4, 8 */
1149 switch (radeon_agpmode) {
1150 case -1:
1151 case 0:
1152 case 1:
1153 case 2:
1154 case 4:
1155 case 8:
1156 break;
1157 default:
1158 dev_warn(rdev->dev, "invalid AGP mode %d (valid mode: "
1159 "-1, 0, 1, 2, 4, 8)\n", radeon_agpmode);
1160 radeon_agpmode = 0;
1161 break;
1162 }
1163
1164 if (!radeon_check_pot_argument(radeon_vm_size)) {
1165 dev_warn(rdev->dev, "VM size (%d) must be a power of 2\n",
1166 radeon_vm_size);
1167 radeon_vm_size = 4;
1168 }
1169
1170 if (radeon_vm_size < 1) {
1171 dev_warn(rdev->dev, "VM size (%d) too small, min is 1GB\n",
1172 radeon_vm_size);
1173 radeon_vm_size = 4;
1174 }
1175
1176 /*
1177 * Max GPUVM size for Cayman, SI and CI are 40 bits.
1178 */
1179 if (radeon_vm_size > 1024) {
1180 dev_warn(rdev->dev, "VM size (%d) too large, max is 1TB\n",
1181 radeon_vm_size);
1182 radeon_vm_size = 4;
1183 }
1184
1185 /* defines number of bits in page table versus page directory,
1186 * a page is 4KB so we have 12 bits offset, minimum 9 bits in the
1187 * page table and the remaining bits are in the page directory */
1188 if (radeon_vm_block_size == -1) {
1189
1190 /* Total bits covered by PD + PTs */
1191 unsigned bits = ilog2(radeon_vm_size) + 18;
1192
1193 /* Make sure the PD is 4K in size up to 8GB address space.
1194 Above that split equal between PD and PTs */
1195 if (radeon_vm_size <= 8)
1196 radeon_vm_block_size = bits - 9;
1197 else
1198 radeon_vm_block_size = (bits + 3) / 2;
1199
1200 } else if (radeon_vm_block_size < 9) {
1201 dev_warn(rdev->dev, "VM page table size (%d) too small\n",
1202 radeon_vm_block_size);
1203 radeon_vm_block_size = 9;
1204 }
1205
1206 if (radeon_vm_block_size > 24 ||
1207 (radeon_vm_size * 1024) < (1ull << radeon_vm_block_size)) {
1208 dev_warn(rdev->dev, "VM page table size (%d) too large\n",
1209 radeon_vm_block_size);
1210 radeon_vm_block_size = 9;
1211 }
1212}
1213
1214/**
1215 * radeon_switcheroo_set_state - set switcheroo state
1216 *
1217 * @pdev: pci dev pointer
1218 * @state: vga_switcheroo state
1219 *
1220 * Callback for the switcheroo driver. Suspends or resumes the
1221 * the asics before or after it is powered up using ACPI methods.
1222 */
1223static void radeon_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
1224{
1225 struct drm_device *dev = pci_get_drvdata(pdev);
1226
1227 if (radeon_is_px(dev) && state == VGA_SWITCHEROO_OFF)
1228 return;
1229
1230 if (state == VGA_SWITCHEROO_ON) {
1231 pr_info("radeon: switched on\n");
1232 /* don't suspend or resume card normally */
1233 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1234
1235 radeon_resume_kms(dev, true, true);
1236
1237 dev->switch_power_state = DRM_SWITCH_POWER_ON;
1238 drm_kms_helper_poll_enable(dev);
1239 } else {
1240 pr_info("radeon: switched off\n");
1241 drm_kms_helper_poll_disable(dev);
1242 dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
1243 radeon_suspend_kms(dev, true, true, false);
1244 dev->switch_power_state = DRM_SWITCH_POWER_OFF;
1245 }
1246}
1247
1248/**
1249 * radeon_switcheroo_can_switch - see if switcheroo state can change
1250 *
1251 * @pdev: pci dev pointer
1252 *
1253 * Callback for the switcheroo driver. Check of the switcheroo
1254 * state can be changed.
1255 * Returns true if the state can be changed, false if not.
1256 */
1257static bool radeon_switcheroo_can_switch(struct pci_dev *pdev)
1258{
1259 struct drm_device *dev = pci_get_drvdata(pdev);
1260
1261 /*
1262 * FIXME: open_count is protected by drm_global_mutex but that would lead to
1263 * locking inversion with the driver load path. And the access here is
1264 * completely racy anyway. So don't bother with locking for now.
1265 */
1266 return atomic_read(&dev->open_count) == 0;
1267}
1268
1269static const struct vga_switcheroo_client_ops radeon_switcheroo_ops = {
1270 .set_gpu_state = radeon_switcheroo_set_state,
1271 .reprobe = NULL,
1272 .can_switch = radeon_switcheroo_can_switch,
1273};
1274
1275/**
1276 * radeon_device_init - initialize the driver
1277 *
1278 * @rdev: radeon_device pointer
1279 * @pdev: drm dev pointer
1280 * @pdev: pci dev pointer
1281 * @flags: driver flags
1282 *
1283 * Initializes the driver info and hw (all asics).
1284 * Returns 0 for success or an error on failure.
1285 * Called at driver startup.
1286 */
1287int radeon_device_init(struct radeon_device *rdev,
1288 struct drm_device *ddev,
1289 struct pci_dev *pdev,
1290 uint32_t flags)
1291{
1292 int r, i;
1293 int dma_bits;
1294 bool runtime = false;
1295
1296 rdev->shutdown = false;
1297 rdev->dev = &pdev->dev;
1298 rdev->ddev = ddev;
1299 rdev->pdev = pdev;
1300 rdev->flags = flags;
1301 rdev->family = flags & RADEON_FAMILY_MASK;
1302 rdev->is_atom_bios = false;
1303 rdev->usec_timeout = RADEON_MAX_USEC_TIMEOUT;
1304 rdev->mc.gtt_size = 512 * 1024 * 1024;
1305 rdev->accel_working = false;
1306 /* set up ring ids */
1307 for (i = 0; i < RADEON_NUM_RINGS; i++) {
1308 rdev->ring[i].idx = i;
1309 }
1310 rdev->fence_context = dma_fence_context_alloc(RADEON_NUM_RINGS);
1311
1312 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
1313 radeon_family_name[rdev->family], pdev->vendor, pdev->device,
1314 pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
1315
1316 /* mutex initialization are all done here so we
1317 * can recall function without having locking issues */
1318 mutex_init(&rdev->ring_lock);
1319 mutex_init(&rdev->dc_hw_i2c_mutex);
1320 atomic_set(&rdev->ih.lock, 0);
1321 mutex_init(&rdev->gem.mutex);
1322 mutex_init(&rdev->pm.mutex);
1323 mutex_init(&rdev->gpu_clock_mutex);
1324 mutex_init(&rdev->srbm_mutex);
1325 init_rwsem(&rdev->pm.mclk_lock);
1326 init_rwsem(&rdev->exclusive_lock);
1327 init_waitqueue_head(&rdev->irq.vblank_queue);
1328 r = radeon_gem_init(rdev);
1329 if (r)
1330 return r;
1331
1332 radeon_check_arguments(rdev);
1333 /* Adjust VM size here.
1334 * Max GPUVM size for cayman+ is 40 bits.
1335 */
1336 rdev->vm_manager.max_pfn = radeon_vm_size << 18;
1337
1338 /* Set asic functions */
1339 r = radeon_asic_init(rdev);
1340 if (r)
1341 return r;
1342
1343 /* all of the newer IGP chips have an internal gart
1344 * However some rs4xx report as AGP, so remove that here.
1345 */
1346 if ((rdev->family >= CHIP_RS400) &&
1347 (rdev->flags & RADEON_IS_IGP)) {
1348 rdev->flags &= ~RADEON_IS_AGP;
1349 }
1350
1351 if (rdev->flags & RADEON_IS_AGP && radeon_agpmode == -1) {
1352 radeon_agp_disable(rdev);
1353 }
1354
1355 /* Set the internal MC address mask
1356 * This is the max address of the GPU's
1357 * internal address space.
1358 */
1359 if (rdev->family >= CHIP_CAYMAN)
1360 rdev->mc.mc_mask = 0xffffffffffULL; /* 40 bit MC */
1361 else if (rdev->family >= CHIP_CEDAR)
1362 rdev->mc.mc_mask = 0xfffffffffULL; /* 36 bit MC */
1363 else
1364 rdev->mc.mc_mask = 0xffffffffULL; /* 32 bit MC */
1365
1366 /* set DMA mask.
1367 * PCIE - can handle 40-bits.
1368 * IGP - can handle 40-bits
1369 * AGP - generally dma32 is safest
1370 * PCI - dma32 for legacy pci gart, 40 bits on newer asics
1371 */
1372 dma_bits = 40;
1373 if (rdev->flags & RADEON_IS_AGP)
1374 dma_bits = 32;
1375 if ((rdev->flags & RADEON_IS_PCI) &&
1376 (rdev->family <= CHIP_RS740))
1377 dma_bits = 32;
1378#ifdef CONFIG_PPC64
1379 if (rdev->family == CHIP_CEDAR)
1380 dma_bits = 32;
1381#endif
1382
1383 r = dma_set_mask_and_coherent(&rdev->pdev->dev, DMA_BIT_MASK(dma_bits));
1384 if (r) {
1385 pr_warn("radeon: No suitable DMA available\n");
1386 return r;
1387 }
1388 rdev->need_swiotlb = drm_need_swiotlb(dma_bits);
1389
1390 /* Registers mapping */
1391 /* TODO: block userspace mapping of io register */
1392 spin_lock_init(&rdev->mmio_idx_lock);
1393 spin_lock_init(&rdev->smc_idx_lock);
1394 spin_lock_init(&rdev->pll_idx_lock);
1395 spin_lock_init(&rdev->mc_idx_lock);
1396 spin_lock_init(&rdev->pcie_idx_lock);
1397 spin_lock_init(&rdev->pciep_idx_lock);
1398 spin_lock_init(&rdev->pif_idx_lock);
1399 spin_lock_init(&rdev->cg_idx_lock);
1400 spin_lock_init(&rdev->uvd_idx_lock);
1401 spin_lock_init(&rdev->rcu_idx_lock);
1402 spin_lock_init(&rdev->didt_idx_lock);
1403 spin_lock_init(&rdev->end_idx_lock);
1404 if (rdev->family >= CHIP_BONAIRE) {
1405 rdev->rmmio_base = pci_resource_start(rdev->pdev, 5);
1406 rdev->rmmio_size = pci_resource_len(rdev->pdev, 5);
1407 } else {
1408 rdev->rmmio_base = pci_resource_start(rdev->pdev, 2);
1409 rdev->rmmio_size = pci_resource_len(rdev->pdev, 2);
1410 }
1411 rdev->rmmio = ioremap(rdev->rmmio_base, rdev->rmmio_size);
1412 if (rdev->rmmio == NULL)
1413 return -ENOMEM;
1414
1415 /* doorbell bar mapping */
1416 if (rdev->family >= CHIP_BONAIRE)
1417 radeon_doorbell_init(rdev);
1418
1419 /* io port mapping */
1420 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1421 if (pci_resource_flags(rdev->pdev, i) & IORESOURCE_IO) {
1422 rdev->rio_mem_size = pci_resource_len(rdev->pdev, i);
1423 rdev->rio_mem = pci_iomap(rdev->pdev, i, rdev->rio_mem_size);
1424 break;
1425 }
1426 }
1427 if (rdev->rio_mem == NULL)
1428 DRM_ERROR("Unable to find PCI I/O BAR\n");
1429
1430 if (rdev->flags & RADEON_IS_PX)
1431 radeon_device_handle_px_quirks(rdev);
1432
1433 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1434 /* this will fail for cards that aren't VGA class devices, just
1435 * ignore it */
1436 vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode);
1437
1438 if (rdev->flags & RADEON_IS_PX)
1439 runtime = true;
1440 if (!pci_is_thunderbolt_attached(rdev->pdev))
1441 vga_switcheroo_register_client(rdev->pdev,
1442 &radeon_switcheroo_ops, runtime);
1443 if (runtime)
1444 vga_switcheroo_init_domain_pm_ops(rdev->dev, &rdev->vga_pm_domain);
1445
1446 r = radeon_init(rdev);
1447 if (r)
1448 goto failed;
1449
1450 r = radeon_gem_debugfs_init(rdev);
1451 if (r) {
1452 DRM_ERROR("registering gem debugfs failed (%d).\n", r);
1453 }
1454
1455 r = radeon_mst_debugfs_init(rdev);
1456 if (r) {
1457 DRM_ERROR("registering mst debugfs failed (%d).\n", r);
1458 }
1459
1460 if (rdev->flags & RADEON_IS_AGP && !rdev->accel_working) {
1461 /* Acceleration not working on AGP card try again
1462 * with fallback to PCI or PCIE GART
1463 */
1464 radeon_asic_reset(rdev);
1465 radeon_fini(rdev);
1466 radeon_agp_disable(rdev);
1467 r = radeon_init(rdev);
1468 if (r)
1469 goto failed;
1470 }
1471
1472 r = radeon_ib_ring_tests(rdev);
1473 if (r)
1474 DRM_ERROR("ib ring test failed (%d).\n", r);
1475
1476 /*
1477 * Turks/Thames GPU will freeze whole laptop if DPM is not restarted
1478 * after the CP ring have chew one packet at least. Hence here we stop
1479 * and restart DPM after the radeon_ib_ring_tests().
1480 */
1481 if (rdev->pm.dpm_enabled &&
1482 (rdev->pm.pm_method == PM_METHOD_DPM) &&
1483 (rdev->family == CHIP_TURKS) &&
1484 (rdev->flags & RADEON_IS_MOBILITY)) {
1485 mutex_lock(&rdev->pm.mutex);
1486 radeon_dpm_disable(rdev);
1487 radeon_dpm_enable(rdev);
1488 mutex_unlock(&rdev->pm.mutex);
1489 }
1490
1491 if ((radeon_testing & 1)) {
1492 if (rdev->accel_working)
1493 radeon_test_moves(rdev);
1494 else
1495 DRM_INFO("radeon: acceleration disabled, skipping move tests\n");
1496 }
1497 if ((radeon_testing & 2)) {
1498 if (rdev->accel_working)
1499 radeon_test_syncing(rdev);
1500 else
1501 DRM_INFO("radeon: acceleration disabled, skipping sync tests\n");
1502 }
1503 if (radeon_benchmarking) {
1504 if (rdev->accel_working)
1505 radeon_benchmark(rdev, radeon_benchmarking);
1506 else
1507 DRM_INFO("radeon: acceleration disabled, skipping benchmarks\n");
1508 }
1509 return 0;
1510
1511failed:
1512 /* balance pm_runtime_get_sync() in radeon_driver_unload_kms() */
1513 if (radeon_is_px(ddev))
1514 pm_runtime_put_noidle(ddev->dev);
1515 if (runtime)
1516 vga_switcheroo_fini_domain_pm_ops(rdev->dev);
1517 return r;
1518}
1519
1520/**
1521 * radeon_device_fini - tear down the driver
1522 *
1523 * @rdev: radeon_device pointer
1524 *
1525 * Tear down the driver info (all asics).
1526 * Called at driver shutdown.
1527 */
1528void radeon_device_fini(struct radeon_device *rdev)
1529{
1530 DRM_INFO("radeon: finishing device.\n");
1531 rdev->shutdown = true;
1532 /* evict vram memory */
1533 radeon_bo_evict_vram(rdev);
1534 radeon_fini(rdev);
1535 if (!pci_is_thunderbolt_attached(rdev->pdev))
1536 vga_switcheroo_unregister_client(rdev->pdev);
1537 if (rdev->flags & RADEON_IS_PX)
1538 vga_switcheroo_fini_domain_pm_ops(rdev->dev);
1539 vga_client_register(rdev->pdev, NULL, NULL, NULL);
1540 if (rdev->rio_mem)
1541 pci_iounmap(rdev->pdev, rdev->rio_mem);
1542 rdev->rio_mem = NULL;
1543 iounmap(rdev->rmmio);
1544 rdev->rmmio = NULL;
1545 if (rdev->family >= CHIP_BONAIRE)
1546 radeon_doorbell_fini(rdev);
1547}
1548
1549
1550/*
1551 * Suspend & resume.
1552 */
1553/**
1554 * radeon_suspend_kms - initiate device suspend
1555 *
1556 * @pdev: drm dev pointer
1557 * @state: suspend state
1558 *
1559 * Puts the hw in the suspend state (all asics).
1560 * Returns 0 for success or an error on failure.
1561 * Called at driver suspend.
1562 */
1563int radeon_suspend_kms(struct drm_device *dev, bool suspend,
1564 bool fbcon, bool freeze)
1565{
1566 struct radeon_device *rdev;
1567 struct drm_crtc *crtc;
1568 struct drm_connector *connector;
1569 int i, r;
1570
1571 if (dev == NULL || dev->dev_private == NULL) {
1572 return -ENODEV;
1573 }
1574
1575 rdev = dev->dev_private;
1576
1577 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1578 return 0;
1579
1580 drm_kms_helper_poll_disable(dev);
1581
1582 drm_modeset_lock_all(dev);
1583 /* turn off display hw */
1584 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1585 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
1586 }
1587 drm_modeset_unlock_all(dev);
1588
1589 /* unpin the front buffers and cursors */
1590 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1591 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1592 struct drm_framebuffer *fb = crtc->primary->fb;
1593 struct radeon_bo *robj;
1594
1595 if (radeon_crtc->cursor_bo) {
1596 struct radeon_bo *robj = gem_to_radeon_bo(radeon_crtc->cursor_bo);
1597 r = radeon_bo_reserve(robj, false);
1598 if (r == 0) {
1599 radeon_bo_unpin(robj);
1600 radeon_bo_unreserve(robj);
1601 }
1602 }
1603
1604 if (fb == NULL || fb->obj[0] == NULL) {
1605 continue;
1606 }
1607 robj = gem_to_radeon_bo(fb->obj[0]);
1608 /* don't unpin kernel fb objects */
1609 if (!radeon_fbdev_robj_is_fb(rdev, robj)) {
1610 r = radeon_bo_reserve(robj, false);
1611 if (r == 0) {
1612 radeon_bo_unpin(robj);
1613 radeon_bo_unreserve(robj);
1614 }
1615 }
1616 }
1617 /* evict vram memory */
1618 radeon_bo_evict_vram(rdev);
1619
1620 /* wait for gpu to finish processing current batch */
1621 for (i = 0; i < RADEON_NUM_RINGS; i++) {
1622 r = radeon_fence_wait_empty(rdev, i);
1623 if (r) {
1624 /* delay GPU reset to resume */
1625 radeon_fence_driver_force_completion(rdev, i);
1626 }
1627 }
1628
1629 radeon_save_bios_scratch_regs(rdev);
1630
1631 radeon_suspend(rdev);
1632 radeon_hpd_fini(rdev);
1633 /* evict remaining vram memory
1634 * This second call to evict vram is to evict the gart page table
1635 * using the CPU.
1636 */
1637 radeon_bo_evict_vram(rdev);
1638
1639 radeon_agp_suspend(rdev);
1640
1641 pci_save_state(dev->pdev);
1642 if (freeze && rdev->family >= CHIP_CEDAR && !(rdev->flags & RADEON_IS_IGP)) {
1643 rdev->asic->asic_reset(rdev, true);
1644 pci_restore_state(dev->pdev);
1645 } else if (suspend) {
1646 /* Shut down the device */
1647 pci_disable_device(dev->pdev);
1648 pci_set_power_state(dev->pdev, PCI_D3hot);
1649 }
1650
1651 if (fbcon) {
1652 console_lock();
1653 radeon_fbdev_set_suspend(rdev, 1);
1654 console_unlock();
1655 }
1656 return 0;
1657}
1658
1659/**
1660 * radeon_resume_kms - initiate device resume
1661 *
1662 * @pdev: drm dev pointer
1663 *
1664 * Bring the hw back to operating state (all asics).
1665 * Returns 0 for success or an error on failure.
1666 * Called at driver resume.
1667 */
1668int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
1669{
1670 struct drm_connector *connector;
1671 struct radeon_device *rdev = dev->dev_private;
1672 struct drm_crtc *crtc;
1673 int r;
1674
1675 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1676 return 0;
1677
1678 if (fbcon) {
1679 console_lock();
1680 }
1681 if (resume) {
1682 pci_set_power_state(dev->pdev, PCI_D0);
1683 pci_restore_state(dev->pdev);
1684 if (pci_enable_device(dev->pdev)) {
1685 if (fbcon)
1686 console_unlock();
1687 return -1;
1688 }
1689 }
1690 /* resume AGP if in use */
1691 radeon_agp_resume(rdev);
1692 radeon_resume(rdev);
1693
1694 r = radeon_ib_ring_tests(rdev);
1695 if (r)
1696 DRM_ERROR("ib ring test failed (%d).\n", r);
1697
1698 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
1699 /* do dpm late init */
1700 r = radeon_pm_late_init(rdev);
1701 if (r) {
1702 rdev->pm.dpm_enabled = false;
1703 DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n");
1704 }
1705 } else {
1706 /* resume old pm late */
1707 radeon_pm_resume(rdev);
1708 }
1709
1710 radeon_restore_bios_scratch_regs(rdev);
1711
1712 /* pin cursors */
1713 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1714 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1715
1716 if (radeon_crtc->cursor_bo) {
1717 struct radeon_bo *robj = gem_to_radeon_bo(radeon_crtc->cursor_bo);
1718 r = radeon_bo_reserve(robj, false);
1719 if (r == 0) {
1720 /* Only 27 bit offset for legacy cursor */
1721 r = radeon_bo_pin_restricted(robj,
1722 RADEON_GEM_DOMAIN_VRAM,
1723 ASIC_IS_AVIVO(rdev) ?
1724 0 : 1 << 27,
1725 &radeon_crtc->cursor_addr);
1726 if (r != 0)
1727 DRM_ERROR("Failed to pin cursor BO (%d)\n", r);
1728 radeon_bo_unreserve(robj);
1729 }
1730 }
1731 }
1732
1733 /* init dig PHYs, disp eng pll */
1734 if (rdev->is_atom_bios) {
1735 radeon_atom_encoder_init(rdev);
1736 radeon_atom_disp_eng_pll_init(rdev);
1737 /* turn on the BL */
1738 if (rdev->mode_info.bl_encoder) {
1739 u8 bl_level = radeon_get_backlight_level(rdev,
1740 rdev->mode_info.bl_encoder);
1741 radeon_set_backlight_level(rdev, rdev->mode_info.bl_encoder,
1742 bl_level);
1743 }
1744 }
1745 /* reset hpd state */
1746 radeon_hpd_init(rdev);
1747 /* blat the mode back in */
1748 if (fbcon) {
1749 drm_helper_resume_force_mode(dev);
1750 /* turn on display hw */
1751 drm_modeset_lock_all(dev);
1752 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1753 drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
1754 }
1755 drm_modeset_unlock_all(dev);
1756 }
1757
1758 drm_kms_helper_poll_enable(dev);
1759
1760 /* set the power state here in case we are a PX system or headless */
1761 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled)
1762 radeon_pm_compute_clocks(rdev);
1763
1764 if (fbcon) {
1765 radeon_fbdev_set_suspend(rdev, 0);
1766 console_unlock();
1767 }
1768
1769 return 0;
1770}
1771
1772/**
1773 * radeon_gpu_reset - reset the asic
1774 *
1775 * @rdev: radeon device pointer
1776 *
1777 * Attempt the reset the GPU if it has hung (all asics).
1778 * Returns 0 for success or an error on failure.
1779 */
1780int radeon_gpu_reset(struct radeon_device *rdev)
1781{
1782 unsigned ring_sizes[RADEON_NUM_RINGS];
1783 uint32_t *ring_data[RADEON_NUM_RINGS];
1784
1785 bool saved = false;
1786
1787 int i, r;
1788 int resched;
1789
1790 down_write(&rdev->exclusive_lock);
1791
1792 if (!rdev->needs_reset) {
1793 up_write(&rdev->exclusive_lock);
1794 return 0;
1795 }
1796
1797 atomic_inc(&rdev->gpu_reset_counter);
1798
1799 radeon_save_bios_scratch_regs(rdev);
1800 /* block TTM */
1801 resched = ttm_bo_lock_delayed_workqueue(&rdev->mman.bdev);
1802 radeon_suspend(rdev);
1803 radeon_hpd_fini(rdev);
1804
1805 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
1806 ring_sizes[i] = radeon_ring_backup(rdev, &rdev->ring[i],
1807 &ring_data[i]);
1808 if (ring_sizes[i]) {
1809 saved = true;
1810 dev_info(rdev->dev, "Saved %d dwords of commands "
1811 "on ring %d.\n", ring_sizes[i], i);
1812 }
1813 }
1814
1815 r = radeon_asic_reset(rdev);
1816 if (!r) {
1817 dev_info(rdev->dev, "GPU reset succeeded, trying to resume\n");
1818 radeon_resume(rdev);
1819 }
1820
1821 radeon_restore_bios_scratch_regs(rdev);
1822
1823 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
1824 if (!r && ring_data[i]) {
1825 radeon_ring_restore(rdev, &rdev->ring[i],
1826 ring_sizes[i], ring_data[i]);
1827 } else {
1828 radeon_fence_driver_force_completion(rdev, i);
1829 kfree(ring_data[i]);
1830 }
1831 }
1832
1833 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
1834 /* do dpm late init */
1835 r = radeon_pm_late_init(rdev);
1836 if (r) {
1837 rdev->pm.dpm_enabled = false;
1838 DRM_ERROR("radeon_pm_late_init failed, disabling dpm\n");
1839 }
1840 } else {
1841 /* resume old pm late */
1842 radeon_pm_resume(rdev);
1843 }
1844
1845 /* init dig PHYs, disp eng pll */
1846 if (rdev->is_atom_bios) {
1847 radeon_atom_encoder_init(rdev);
1848 radeon_atom_disp_eng_pll_init(rdev);
1849 /* turn on the BL */
1850 if (rdev->mode_info.bl_encoder) {
1851 u8 bl_level = radeon_get_backlight_level(rdev,
1852 rdev->mode_info.bl_encoder);
1853 radeon_set_backlight_level(rdev, rdev->mode_info.bl_encoder,
1854 bl_level);
1855 }
1856 }
1857 /* reset hpd state */
1858 radeon_hpd_init(rdev);
1859
1860 ttm_bo_unlock_delayed_workqueue(&rdev->mman.bdev, resched);
1861
1862 rdev->in_reset = true;
1863 rdev->needs_reset = false;
1864
1865 downgrade_write(&rdev->exclusive_lock);
1866
1867 drm_helper_resume_force_mode(rdev->ddev);
1868
1869 /* set the power state here in case we are a PX system or headless */
1870 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled)
1871 radeon_pm_compute_clocks(rdev);
1872
1873 if (!r) {
1874 r = radeon_ib_ring_tests(rdev);
1875 if (r && saved)
1876 r = -EAGAIN;
1877 } else {
1878 /* bad news, how to tell it to userspace ? */
1879 dev_info(rdev->dev, "GPU reset failed\n");
1880 }
1881
1882 rdev->needs_reset = r == -EAGAIN;
1883 rdev->in_reset = false;
1884
1885 up_read(&rdev->exclusive_lock);
1886 return r;
1887}
1888
1889
1890/*
1891 * Debugfs
1892 */
1893int radeon_debugfs_add_files(struct radeon_device *rdev,
1894 struct drm_info_list *files,
1895 unsigned nfiles)
1896{
1897 unsigned i;
1898
1899 for (i = 0; i < rdev->debugfs_count; i++) {
1900 if (rdev->debugfs[i].files == files) {
1901 /* Already registered */
1902 return 0;
1903 }
1904 }
1905
1906 i = rdev->debugfs_count + 1;
1907 if (i > RADEON_DEBUGFS_MAX_COMPONENTS) {
1908 DRM_ERROR("Reached maximum number of debugfs components.\n");
1909 DRM_ERROR("Report so we increase "
1910 "RADEON_DEBUGFS_MAX_COMPONENTS.\n");
1911 return -EINVAL;
1912 }
1913 rdev->debugfs[rdev->debugfs_count].files = files;
1914 rdev->debugfs[rdev->debugfs_count].num_files = nfiles;
1915 rdev->debugfs_count = i;
1916#if defined(CONFIG_DEBUG_FS)
1917 drm_debugfs_create_files(files, nfiles,
1918 rdev->ddev->primary->debugfs_root,
1919 rdev->ddev->primary);
1920#endif
1921 return 0;
1922}