2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
28 #include <linux/console.h>
29 #include <linux/slab.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 "radeon_reg.h"
39 static const char radeon_family_name
[][16] = {
88 * Clear GPU surface registers.
90 void radeon_surface_init(struct radeon_device
*rdev
)
92 /* FIXME: check this out */
93 if (rdev
->family
< CHIP_R600
) {
96 for (i
= 0; i
< RADEON_GEM_MAX_SURFACES
; i
++) {
97 if (rdev
->surface_regs
[i
].bo
)
98 radeon_bo_get_surface_reg(rdev
->surface_regs
[i
].bo
);
100 radeon_clear_surface_reg(rdev
, i
);
102 /* enable surfaces */
103 WREG32(RADEON_SURFACE_CNTL
, 0);
108 * GPU scratch registers helpers function.
110 void radeon_scratch_init(struct radeon_device
*rdev
)
114 /* FIXME: check this out */
115 if (rdev
->family
< CHIP_R300
) {
116 rdev
->scratch
.num_reg
= 5;
118 rdev
->scratch
.num_reg
= 7;
120 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
121 rdev
->scratch
.free
[i
] = true;
122 rdev
->scratch
.reg
[i
] = RADEON_SCRATCH_REG0
+ (i
* 4);
126 int radeon_scratch_get(struct radeon_device
*rdev
, uint32_t *reg
)
130 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
131 if (rdev
->scratch
.free
[i
]) {
132 rdev
->scratch
.free
[i
] = false;
133 *reg
= rdev
->scratch
.reg
[i
];
140 void radeon_scratch_free(struct radeon_device
*rdev
, uint32_t reg
)
144 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
145 if (rdev
->scratch
.reg
[i
] == reg
) {
146 rdev
->scratch
.free
[i
] = true;
153 * radeon_vram_location - try to find VRAM location
154 * @rdev: radeon device structure holding all necessary informations
155 * @mc: memory controller structure holding memory informations
156 * @base: base address at which to put VRAM
158 * Function will place try to place VRAM at base address provided
159 * as parameter (which is so far either PCI aperture address or
160 * for IGP TOM base address).
162 * If there is not enough space to fit the unvisible VRAM in the 32bits
163 * address space then we limit the VRAM size to the aperture.
165 * If we are using AGP and if the AGP aperture doesn't allow us to have
166 * room for all the VRAM than we restrict the VRAM to the PCI aperture
167 * size and print a warning.
169 * This function will never fails, worst case are limiting VRAM.
171 * Note: GTT start, end, size should be initialized before calling this
172 * function on AGP platform.
174 * Note: We don't explictly enforce VRAM start to be aligned on VRAM size,
175 * this shouldn't be a problem as we are using the PCI aperture as a reference.
176 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
179 * Note: we use mc_vram_size as on some board we need to program the mc to
180 * cover the whole aperture even if VRAM size is inferior to aperture size
181 * Novell bug 204882 + along with lots of ubuntu ones
183 * Note: when limiting vram it's safe to overwritte real_vram_size because
184 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
185 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
188 * Note: IGP TOM addr should be the same as the aperture addr, we don't
189 * explicitly check for that thought.
191 * FIXME: when reducing VRAM size align new size on power of 2.
193 void radeon_vram_location(struct radeon_device
*rdev
, struct radeon_mc
*mc
, u64 base
)
195 mc
->vram_start
= base
;
196 if (mc
->mc_vram_size
> (0xFFFFFFFF - base
+ 1)) {
197 dev_warn(rdev
->dev
, "limiting VRAM to PCI aperture size\n");
198 mc
->real_vram_size
= mc
->aper_size
;
199 mc
->mc_vram_size
= mc
->aper_size
;
201 mc
->vram_end
= mc
->vram_start
+ mc
->mc_vram_size
- 1;
202 if (rdev
->flags
& RADEON_IS_AGP
&& mc
->vram_end
> mc
->gtt_start
&& mc
->vram_end
<= mc
->gtt_end
) {
203 dev_warn(rdev
->dev
, "limiting VRAM to PCI aperture size\n");
204 mc
->real_vram_size
= mc
->aper_size
;
205 mc
->mc_vram_size
= mc
->aper_size
;
207 mc
->vram_end
= mc
->vram_start
+ mc
->mc_vram_size
- 1;
208 dev_info(rdev
->dev
, "VRAM: %lluM 0x%08llX - 0x%08llX (%lluM used)\n",
209 mc
->mc_vram_size
>> 20, mc
->vram_start
,
210 mc
->vram_end
, mc
->real_vram_size
>> 20);
214 * radeon_gtt_location - try to find GTT location
215 * @rdev: radeon device structure holding all necessary informations
216 * @mc: memory controller structure holding memory informations
218 * Function will place try to place GTT before or after VRAM.
220 * If GTT size is bigger than space left then we ajust GTT size.
221 * Thus function will never fails.
223 * FIXME: when reducing GTT size align new size on power of 2.
225 void radeon_gtt_location(struct radeon_device
*rdev
, struct radeon_mc
*mc
)
227 u64 size_af
, size_bf
;
229 size_af
= 0xFFFFFFFF - mc
->vram_end
;
230 size_bf
= mc
->vram_start
;
231 if (size_bf
> size_af
) {
232 if (mc
->gtt_size
> size_bf
) {
233 dev_warn(rdev
->dev
, "limiting GTT\n");
234 mc
->gtt_size
= size_bf
;
236 mc
->gtt_start
= mc
->vram_start
- mc
->gtt_size
;
238 if (mc
->gtt_size
> size_af
) {
239 dev_warn(rdev
->dev
, "limiting GTT\n");
240 mc
->gtt_size
= size_af
;
242 mc
->gtt_start
= mc
->vram_end
+ 1;
244 mc
->gtt_end
= mc
->gtt_start
+ mc
->gtt_size
- 1;
245 dev_info(rdev
->dev
, "GTT: %lluM 0x%08llX - 0x%08llX\n",
246 mc
->gtt_size
>> 20, mc
->gtt_start
, mc
->gtt_end
);
250 * GPU helpers function.
252 bool radeon_card_posted(struct radeon_device
*rdev
)
256 /* first check CRTCs */
257 if (ASIC_IS_DCE4(rdev
)) {
258 reg
= RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC0_REGISTER_OFFSET
) |
259 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC1_REGISTER_OFFSET
) |
260 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC2_REGISTER_OFFSET
) |
261 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC3_REGISTER_OFFSET
) |
262 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC4_REGISTER_OFFSET
) |
263 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC5_REGISTER_OFFSET
);
264 if (reg
& EVERGREEN_CRTC_MASTER_EN
)
266 } else if (ASIC_IS_AVIVO(rdev
)) {
267 reg
= RREG32(AVIVO_D1CRTC_CONTROL
) |
268 RREG32(AVIVO_D2CRTC_CONTROL
);
269 if (reg
& AVIVO_CRTC_EN
) {
273 reg
= RREG32(RADEON_CRTC_GEN_CNTL
) |
274 RREG32(RADEON_CRTC2_GEN_CNTL
);
275 if (reg
& RADEON_CRTC_EN
) {
280 /* then check MEM_SIZE, in case the crtcs are off */
281 if (rdev
->family
>= CHIP_R600
)
282 reg
= RREG32(R600_CONFIG_MEMSIZE
);
284 reg
= RREG32(RADEON_CONFIG_MEMSIZE
);
293 void radeon_update_bandwidth_info(struct radeon_device
*rdev
)
298 if (rdev
->flags
& RADEON_IS_IGP
) {
299 sclk
= radeon_get_engine_clock(rdev
);
300 mclk
= rdev
->clock
.default_mclk
;
302 a
.full
= rfixed_const(100);
303 rdev
->pm
.sclk
.full
= rfixed_const(sclk
);
304 rdev
->pm
.sclk
.full
= rfixed_div(rdev
->pm
.sclk
, a
);
305 rdev
->pm
.mclk
.full
= rfixed_const(mclk
);
306 rdev
->pm
.mclk
.full
= rfixed_div(rdev
->pm
.mclk
, a
);
308 a
.full
= rfixed_const(16);
309 /* core_bandwidth = sclk(Mhz) * 16 */
310 rdev
->pm
.core_bandwidth
.full
= rfixed_div(rdev
->pm
.sclk
, a
);
312 sclk
= radeon_get_engine_clock(rdev
);
313 mclk
= radeon_get_memory_clock(rdev
);
315 a
.full
= rfixed_const(100);
316 rdev
->pm
.sclk
.full
= rfixed_const(sclk
);
317 rdev
->pm
.sclk
.full
= rfixed_div(rdev
->pm
.sclk
, a
);
318 rdev
->pm
.mclk
.full
= rfixed_const(mclk
);
319 rdev
->pm
.mclk
.full
= rfixed_div(rdev
->pm
.mclk
, a
);
323 bool radeon_boot_test_post_card(struct radeon_device
*rdev
)
325 if (radeon_card_posted(rdev
))
329 DRM_INFO("GPU not posted. posting now...\n");
330 if (rdev
->is_atom_bios
)
331 atom_asic_init(rdev
->mode_info
.atom_context
);
333 radeon_combios_asic_init(rdev
->ddev
);
336 dev_err(rdev
->dev
, "Card not posted and no BIOS - ignoring\n");
341 int radeon_dummy_page_init(struct radeon_device
*rdev
)
343 if (rdev
->dummy_page
.page
)
345 rdev
->dummy_page
.page
= alloc_page(GFP_DMA32
| GFP_KERNEL
| __GFP_ZERO
);
346 if (rdev
->dummy_page
.page
== NULL
)
348 rdev
->dummy_page
.addr
= pci_map_page(rdev
->pdev
, rdev
->dummy_page
.page
,
349 0, PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
350 if (!rdev
->dummy_page
.addr
) {
351 __free_page(rdev
->dummy_page
.page
);
352 rdev
->dummy_page
.page
= NULL
;
358 void radeon_dummy_page_fini(struct radeon_device
*rdev
)
360 if (rdev
->dummy_page
.page
== NULL
)
362 pci_unmap_page(rdev
->pdev
, rdev
->dummy_page
.addr
,
363 PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
364 __free_page(rdev
->dummy_page
.page
);
365 rdev
->dummy_page
.page
= NULL
;
369 /* ATOM accessor methods */
370 static uint32_t cail_pll_read(struct card_info
*info
, uint32_t reg
)
372 struct radeon_device
*rdev
= info
->dev
->dev_private
;
375 r
= rdev
->pll_rreg(rdev
, reg
);
379 static void cail_pll_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
381 struct radeon_device
*rdev
= info
->dev
->dev_private
;
383 rdev
->pll_wreg(rdev
, reg
, val
);
386 static uint32_t cail_mc_read(struct card_info
*info
, uint32_t reg
)
388 struct radeon_device
*rdev
= info
->dev
->dev_private
;
391 r
= rdev
->mc_rreg(rdev
, reg
);
395 static void cail_mc_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
397 struct radeon_device
*rdev
= info
->dev
->dev_private
;
399 rdev
->mc_wreg(rdev
, reg
, val
);
402 static void cail_reg_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
404 struct radeon_device
*rdev
= info
->dev
->dev_private
;
409 static uint32_t cail_reg_read(struct card_info
*info
, uint32_t reg
)
411 struct radeon_device
*rdev
= info
->dev
->dev_private
;
418 int radeon_atombios_init(struct radeon_device
*rdev
)
420 struct card_info
*atom_card_info
=
421 kzalloc(sizeof(struct card_info
), GFP_KERNEL
);
426 rdev
->mode_info
.atom_card_info
= atom_card_info
;
427 atom_card_info
->dev
= rdev
->ddev
;
428 atom_card_info
->reg_read
= cail_reg_read
;
429 atom_card_info
->reg_write
= cail_reg_write
;
430 atom_card_info
->mc_read
= cail_mc_read
;
431 atom_card_info
->mc_write
= cail_mc_write
;
432 atom_card_info
->pll_read
= cail_pll_read
;
433 atom_card_info
->pll_write
= cail_pll_write
;
435 rdev
->mode_info
.atom_context
= atom_parse(atom_card_info
, rdev
->bios
);
436 mutex_init(&rdev
->mode_info
.atom_context
->mutex
);
437 radeon_atom_initialize_bios_scratch_regs(rdev
->ddev
);
438 atom_allocate_fb_scratch(rdev
->mode_info
.atom_context
);
442 void radeon_atombios_fini(struct radeon_device
*rdev
)
444 if (rdev
->mode_info
.atom_context
) {
445 kfree(rdev
->mode_info
.atom_context
->scratch
);
446 kfree(rdev
->mode_info
.atom_context
);
448 kfree(rdev
->mode_info
.atom_card_info
);
451 int radeon_combios_init(struct radeon_device
*rdev
)
453 radeon_combios_initialize_bios_scratch_regs(rdev
->ddev
);
457 void radeon_combios_fini(struct radeon_device
*rdev
)
461 /* if we get transitioned to only one device, tak VGA back */
462 static unsigned int radeon_vga_set_decode(void *cookie
, bool state
)
464 struct radeon_device
*rdev
= cookie
;
465 radeon_vga_set_state(rdev
, state
);
467 return VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
|
468 VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
470 return VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
473 void radeon_check_arguments(struct radeon_device
*rdev
)
475 /* vramlimit must be a power of two */
476 switch (radeon_vram_limit
) {
491 dev_warn(rdev
->dev
, "vram limit (%d) must be a power of 2\n",
493 radeon_vram_limit
= 0;
496 radeon_vram_limit
= radeon_vram_limit
<< 20;
497 /* gtt size must be power of two and greater or equal to 32M */
498 switch (radeon_gart_size
) {
502 dev_warn(rdev
->dev
, "gart size (%d) too small forcing to 512M\n",
504 radeon_gart_size
= 512;
516 dev_warn(rdev
->dev
, "gart size (%d) must be a power of 2\n",
518 radeon_gart_size
= 512;
521 rdev
->mc
.gtt_size
= radeon_gart_size
* 1024 * 1024;
522 /* AGP mode can only be -1, 1, 2, 4, 8 */
523 switch (radeon_agpmode
) {
532 dev_warn(rdev
->dev
, "invalid AGP mode %d (valid mode: "
533 "-1, 0, 1, 2, 4, 8)\n", radeon_agpmode
);
539 static void radeon_switcheroo_set_state(struct pci_dev
*pdev
, enum vga_switcheroo_state state
)
541 struct drm_device
*dev
= pci_get_drvdata(pdev
);
542 struct radeon_device
*rdev
= dev
->dev_private
;
543 pm_message_t pmm
= { .event
= PM_EVENT_SUSPEND
};
544 if (state
== VGA_SWITCHEROO_ON
) {
545 printk(KERN_INFO
"radeon: switched on\n");
546 /* don't suspend or resume card normally */
547 rdev
->powered_down
= false;
548 radeon_resume_kms(dev
);
550 printk(KERN_INFO
"radeon: switched off\n");
551 radeon_suspend_kms(dev
, pmm
);
552 /* don't suspend or resume card normally */
553 rdev
->powered_down
= true;
557 static bool radeon_switcheroo_can_switch(struct pci_dev
*pdev
)
559 struct drm_device
*dev
= pci_get_drvdata(pdev
);
562 spin_lock(&dev
->count_lock
);
563 can_switch
= (dev
->open_count
== 0);
564 spin_unlock(&dev
->count_lock
);
569 int radeon_device_init(struct radeon_device
*rdev
,
570 struct drm_device
*ddev
,
571 struct pci_dev
*pdev
,
577 rdev
->shutdown
= false;
578 rdev
->dev
= &pdev
->dev
;
582 rdev
->family
= flags
& RADEON_FAMILY_MASK
;
583 rdev
->is_atom_bios
= false;
584 rdev
->usec_timeout
= RADEON_MAX_USEC_TIMEOUT
;
585 rdev
->mc
.gtt_size
= radeon_gart_size
* 1024 * 1024;
586 rdev
->gpu_lockup
= false;
587 rdev
->accel_working
= false;
589 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X).\n",
590 radeon_family_name
[rdev
->family
], pdev
->vendor
, pdev
->device
);
592 /* mutex initialization are all done here so we
593 * can recall function without having locking issues */
594 mutex_init(&rdev
->cs_mutex
);
595 mutex_init(&rdev
->ib_pool
.mutex
);
596 mutex_init(&rdev
->cp
.mutex
);
597 mutex_init(&rdev
->dc_hw_i2c_mutex
);
598 if (rdev
->family
>= CHIP_R600
)
599 spin_lock_init(&rdev
->ih
.lock
);
600 mutex_init(&rdev
->gem
.mutex
);
601 mutex_init(&rdev
->pm
.mutex
);
602 rwlock_init(&rdev
->fence_drv
.lock
);
603 INIT_LIST_HEAD(&rdev
->gem
.objects
);
604 init_waitqueue_head(&rdev
->irq
.vblank_queue
);
606 /* setup workqueue */
607 rdev
->wq
= create_workqueue("radeon");
608 if (rdev
->wq
== NULL
)
611 /* Set asic functions */
612 r
= radeon_asic_init(rdev
);
615 radeon_check_arguments(rdev
);
617 /* all of the newer IGP chips have an internal gart
618 * However some rs4xx report as AGP, so remove that here.
620 if ((rdev
->family
>= CHIP_RS400
) &&
621 (rdev
->flags
& RADEON_IS_IGP
)) {
622 rdev
->flags
&= ~RADEON_IS_AGP
;
625 if (rdev
->flags
& RADEON_IS_AGP
&& radeon_agpmode
== -1) {
626 radeon_agp_disable(rdev
);
629 /* set DMA mask + need_dma32 flags.
630 * PCIE - can handle 40-bits.
631 * IGP - can handle 40-bits (in theory)
632 * AGP - generally dma32 is safest
635 rdev
->need_dma32
= false;
636 if (rdev
->flags
& RADEON_IS_AGP
)
637 rdev
->need_dma32
= true;
638 if (rdev
->flags
& RADEON_IS_PCI
)
639 rdev
->need_dma32
= true;
641 dma_bits
= rdev
->need_dma32
? 32 : 40;
642 r
= pci_set_dma_mask(rdev
->pdev
, DMA_BIT_MASK(dma_bits
));
644 printk(KERN_WARNING
"radeon: No suitable DMA available.\n");
647 /* Registers mapping */
648 /* TODO: block userspace mapping of io register */
649 rdev
->rmmio_base
= drm_get_resource_start(rdev
->ddev
, 2);
650 rdev
->rmmio_size
= drm_get_resource_len(rdev
->ddev
, 2);
651 rdev
->rmmio
= ioremap(rdev
->rmmio_base
, rdev
->rmmio_size
);
652 if (rdev
->rmmio
== NULL
) {
655 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)rdev
->rmmio_base
);
656 DRM_INFO("register mmio size: %u\n", (unsigned)rdev
->rmmio_size
);
658 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
659 /* this will fail for cards that aren't VGA class devices, just
661 vga_client_register(rdev
->pdev
, rdev
, NULL
, radeon_vga_set_decode
);
662 vga_switcheroo_register_client(rdev
->pdev
,
663 radeon_switcheroo_set_state
,
664 radeon_switcheroo_can_switch
);
666 r
= radeon_init(rdev
);
670 if (rdev
->flags
& RADEON_IS_AGP
&& !rdev
->accel_working
) {
671 /* Acceleration not working on AGP card try again
672 * with fallback to PCI or PCIE GART
674 radeon_gpu_reset(rdev
);
676 radeon_agp_disable(rdev
);
677 r
= radeon_init(rdev
);
681 if (radeon_testing
) {
682 radeon_test_moves(rdev
);
684 if (radeon_benchmarking
) {
685 radeon_benchmark(rdev
);
690 void radeon_device_fini(struct radeon_device
*rdev
)
692 DRM_INFO("radeon: finishing device.\n");
693 rdev
->shutdown
= true;
695 destroy_workqueue(rdev
->wq
);
696 vga_switcheroo_unregister_client(rdev
->pdev
);
697 vga_client_register(rdev
->pdev
, NULL
, NULL
, NULL
);
698 iounmap(rdev
->rmmio
);
706 int radeon_suspend_kms(struct drm_device
*dev
, pm_message_t state
)
708 struct radeon_device
*rdev
;
709 struct drm_crtc
*crtc
;
712 if (dev
== NULL
|| dev
->dev_private
== NULL
) {
715 if (state
.event
== PM_EVENT_PRETHAW
) {
718 rdev
= dev
->dev_private
;
720 if (rdev
->powered_down
)
722 /* unpin the front buffers */
723 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
724 struct radeon_framebuffer
*rfb
= to_radeon_framebuffer(crtc
->fb
);
725 struct radeon_bo
*robj
;
727 if (rfb
== NULL
|| rfb
->obj
== NULL
) {
730 robj
= rfb
->obj
->driver_private
;
731 if (robj
!= rdev
->fbdev_rbo
) {
732 r
= radeon_bo_reserve(robj
, false);
733 if (unlikely(r
== 0)) {
734 radeon_bo_unpin(robj
);
735 radeon_bo_unreserve(robj
);
739 /* evict vram memory */
740 radeon_bo_evict_vram(rdev
);
741 /* wait for gpu to finish processing current batch */
742 radeon_fence_wait_last(rdev
);
744 radeon_save_bios_scratch_regs(rdev
);
746 radeon_suspend(rdev
);
747 radeon_hpd_fini(rdev
);
748 /* evict remaining vram memory */
749 radeon_bo_evict_vram(rdev
);
751 pci_save_state(dev
->pdev
);
752 if (state
.event
== PM_EVENT_SUSPEND
) {
753 /* Shut down the device */
754 pci_disable_device(dev
->pdev
);
755 pci_set_power_state(dev
->pdev
, PCI_D3hot
);
757 acquire_console_sem();
758 fb_set_suspend(rdev
->fbdev_info
, 1);
759 release_console_sem();
763 int radeon_resume_kms(struct drm_device
*dev
)
765 struct radeon_device
*rdev
= dev
->dev_private
;
767 if (rdev
->powered_down
)
770 acquire_console_sem();
771 pci_set_power_state(dev
->pdev
, PCI_D0
);
772 pci_restore_state(dev
->pdev
);
773 if (pci_enable_device(dev
->pdev
)) {
774 release_console_sem();
777 pci_set_master(dev
->pdev
);
778 /* resume AGP if in use */
779 radeon_agp_resume(rdev
);
781 radeon_restore_bios_scratch_regs(rdev
);
782 fb_set_suspend(rdev
->fbdev_info
, 0);
783 release_console_sem();
785 /* reset hpd state */
786 radeon_hpd_init(rdev
);
787 /* blat the mode back in */
788 drm_helper_resume_force_mode(dev
);
796 struct radeon_debugfs
{
797 struct drm_info_list
*files
;
800 static struct radeon_debugfs _radeon_debugfs
[RADEON_DEBUGFS_MAX_NUM_FILES
];
801 static unsigned _radeon_debugfs_count
= 0;
803 int radeon_debugfs_add_files(struct radeon_device
*rdev
,
804 struct drm_info_list
*files
,
809 for (i
= 0; i
< _radeon_debugfs_count
; i
++) {
810 if (_radeon_debugfs
[i
].files
== files
) {
811 /* Already registered */
815 if ((_radeon_debugfs_count
+ nfiles
) > RADEON_DEBUGFS_MAX_NUM_FILES
) {
816 DRM_ERROR("Reached maximum number of debugfs files.\n");
817 DRM_ERROR("Report so we increase RADEON_DEBUGFS_MAX_NUM_FILES.\n");
820 _radeon_debugfs
[_radeon_debugfs_count
].files
= files
;
821 _radeon_debugfs
[_radeon_debugfs_count
].num_files
= nfiles
;
822 _radeon_debugfs_count
++;
823 #if defined(CONFIG_DEBUG_FS)
824 drm_debugfs_create_files(files
, nfiles
,
825 rdev
->ddev
->control
->debugfs_root
,
826 rdev
->ddev
->control
);
827 drm_debugfs_create_files(files
, nfiles
,
828 rdev
->ddev
->primary
->debugfs_root
,
829 rdev
->ddev
->primary
);
834 #if defined(CONFIG_DEBUG_FS)
835 int radeon_debugfs_init(struct drm_minor
*minor
)
840 void radeon_debugfs_cleanup(struct drm_minor
*minor
)
844 for (i
= 0; i
< _radeon_debugfs_count
; i
++) {
845 drm_debugfs_remove_files(_radeon_debugfs
[i
].files
,
846 _radeon_debugfs
[i
].num_files
, minor
);