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