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 <linux/efi.h>
36 #include "radeon_reg.h"
40 static const char radeon_family_name
[][16] = {
96 * Clear GPU surface registers.
98 void radeon_surface_init(struct radeon_device
*rdev
)
100 /* FIXME: check this out */
101 if (rdev
->family
< CHIP_R600
) {
104 for (i
= 0; i
< RADEON_GEM_MAX_SURFACES
; i
++) {
105 if (rdev
->surface_regs
[i
].bo
)
106 radeon_bo_get_surface_reg(rdev
->surface_regs
[i
].bo
);
108 radeon_clear_surface_reg(rdev
, i
);
110 /* enable surfaces */
111 WREG32(RADEON_SURFACE_CNTL
, 0);
116 * GPU scratch registers helpers function.
118 void radeon_scratch_init(struct radeon_device
*rdev
)
122 /* FIXME: check this out */
123 if (rdev
->family
< CHIP_R300
) {
124 rdev
->scratch
.num_reg
= 5;
126 rdev
->scratch
.num_reg
= 7;
128 rdev
->scratch
.reg_base
= RADEON_SCRATCH_REG0
;
129 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
130 rdev
->scratch
.free
[i
] = true;
131 rdev
->scratch
.reg
[i
] = rdev
->scratch
.reg_base
+ (i
* 4);
135 int radeon_scratch_get(struct radeon_device
*rdev
, uint32_t *reg
)
139 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
140 if (rdev
->scratch
.free
[i
]) {
141 rdev
->scratch
.free
[i
] = false;
142 *reg
= rdev
->scratch
.reg
[i
];
149 void radeon_scratch_free(struct radeon_device
*rdev
, uint32_t reg
)
153 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
154 if (rdev
->scratch
.reg
[i
] == reg
) {
155 rdev
->scratch
.free
[i
] = true;
161 void radeon_wb_disable(struct radeon_device
*rdev
)
165 if (rdev
->wb
.wb_obj
) {
166 r
= radeon_bo_reserve(rdev
->wb
.wb_obj
, false);
167 if (unlikely(r
!= 0))
169 radeon_bo_kunmap(rdev
->wb
.wb_obj
);
170 radeon_bo_unpin(rdev
->wb
.wb_obj
);
171 radeon_bo_unreserve(rdev
->wb
.wb_obj
);
173 rdev
->wb
.enabled
= false;
176 void radeon_wb_fini(struct radeon_device
*rdev
)
178 radeon_wb_disable(rdev
);
179 if (rdev
->wb
.wb_obj
) {
180 radeon_bo_unref(&rdev
->wb
.wb_obj
);
182 rdev
->wb
.wb_obj
= NULL
;
186 int radeon_wb_init(struct radeon_device
*rdev
)
190 if (rdev
->wb
.wb_obj
== NULL
) {
191 r
= radeon_bo_create(rdev
, RADEON_GPU_PAGE_SIZE
, PAGE_SIZE
, true,
192 RADEON_GEM_DOMAIN_GTT
, &rdev
->wb
.wb_obj
);
194 dev_warn(rdev
->dev
, "(%d) create WB bo failed\n", r
);
198 r
= radeon_bo_reserve(rdev
->wb
.wb_obj
, false);
199 if (unlikely(r
!= 0)) {
200 radeon_wb_fini(rdev
);
203 r
= radeon_bo_pin(rdev
->wb
.wb_obj
, RADEON_GEM_DOMAIN_GTT
,
206 radeon_bo_unreserve(rdev
->wb
.wb_obj
);
207 dev_warn(rdev
->dev
, "(%d) pin WB bo failed\n", r
);
208 radeon_wb_fini(rdev
);
211 r
= radeon_bo_kmap(rdev
->wb
.wb_obj
, (void **)&rdev
->wb
.wb
);
212 radeon_bo_unreserve(rdev
->wb
.wb_obj
);
214 dev_warn(rdev
->dev
, "(%d) map WB bo failed\n", r
);
215 radeon_wb_fini(rdev
);
219 /* clear wb memory */
220 memset((char *)rdev
->wb
.wb
, 0, RADEON_GPU_PAGE_SIZE
);
221 /* disable event_write fences */
222 rdev
->wb
.use_event
= false;
223 /* disabled via module param */
224 if (radeon_no_wb
== 1)
225 rdev
->wb
.enabled
= false;
227 if (rdev
->flags
& RADEON_IS_AGP
) {
228 /* often unreliable on AGP */
229 rdev
->wb
.enabled
= false;
230 } else if (rdev
->family
< CHIP_R300
) {
231 /* often unreliable on pre-r300 */
232 rdev
->wb
.enabled
= false;
234 rdev
->wb
.enabled
= true;
235 /* event_write fences are only available on r600+ */
236 if (rdev
->family
>= CHIP_R600
)
237 rdev
->wb
.use_event
= true;
240 /* always use writeback/events on NI */
241 if (ASIC_IS_DCE5(rdev
)) {
242 rdev
->wb
.enabled
= true;
243 rdev
->wb
.use_event
= true;
246 dev_info(rdev
->dev
, "WB %sabled\n", rdev
->wb
.enabled
? "en" : "dis");
252 * radeon_vram_location - try to find VRAM location
253 * @rdev: radeon device structure holding all necessary informations
254 * @mc: memory controller structure holding memory informations
255 * @base: base address at which to put VRAM
257 * Function will place try to place VRAM at base address provided
258 * as parameter (which is so far either PCI aperture address or
259 * for IGP TOM base address).
261 * If there is not enough space to fit the unvisible VRAM in the 32bits
262 * address space then we limit the VRAM size to the aperture.
264 * If we are using AGP and if the AGP aperture doesn't allow us to have
265 * room for all the VRAM than we restrict the VRAM to the PCI aperture
266 * size and print a warning.
268 * This function will never fails, worst case are limiting VRAM.
270 * Note: GTT start, end, size should be initialized before calling this
271 * function on AGP platform.
273 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
274 * this shouldn't be a problem as we are using the PCI aperture as a reference.
275 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
278 * Note: we use mc_vram_size as on some board we need to program the mc to
279 * cover the whole aperture even if VRAM size is inferior to aperture size
280 * Novell bug 204882 + along with lots of ubuntu ones
282 * Note: when limiting vram it's safe to overwritte real_vram_size because
283 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
284 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
287 * Note: IGP TOM addr should be the same as the aperture addr, we don't
288 * explicitly check for that thought.
290 * FIXME: when reducing VRAM size align new size on power of 2.
292 void radeon_vram_location(struct radeon_device
*rdev
, struct radeon_mc
*mc
, u64 base
)
294 mc
->vram_start
= base
;
295 if (mc
->mc_vram_size
> (0xFFFFFFFF - base
+ 1)) {
296 dev_warn(rdev
->dev
, "limiting VRAM to PCI aperture size\n");
297 mc
->real_vram_size
= mc
->aper_size
;
298 mc
->mc_vram_size
= mc
->aper_size
;
300 mc
->vram_end
= mc
->vram_start
+ mc
->mc_vram_size
- 1;
301 if (rdev
->flags
& RADEON_IS_AGP
&& mc
->vram_end
> mc
->gtt_start
&& mc
->vram_start
<= mc
->gtt_end
) {
302 dev_warn(rdev
->dev
, "limiting VRAM to PCI aperture size\n");
303 mc
->real_vram_size
= mc
->aper_size
;
304 mc
->mc_vram_size
= mc
->aper_size
;
306 mc
->vram_end
= mc
->vram_start
+ mc
->mc_vram_size
- 1;
307 if (radeon_vram_limit
&& radeon_vram_limit
< mc
->real_vram_size
)
308 mc
->real_vram_size
= radeon_vram_limit
;
309 dev_info(rdev
->dev
, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
310 mc
->mc_vram_size
>> 20, mc
->vram_start
,
311 mc
->vram_end
, mc
->real_vram_size
>> 20);
315 * radeon_gtt_location - try to find GTT location
316 * @rdev: radeon device structure holding all necessary informations
317 * @mc: memory controller structure holding memory informations
319 * Function will place try to place GTT before or after VRAM.
321 * If GTT size is bigger than space left then we ajust GTT size.
322 * Thus function will never fails.
324 * FIXME: when reducing GTT size align new size on power of 2.
326 void radeon_gtt_location(struct radeon_device
*rdev
, struct radeon_mc
*mc
)
328 u64 size_af
, size_bf
;
330 size_af
= ((0xFFFFFFFF - mc
->vram_end
) + mc
->gtt_base_align
) & ~mc
->gtt_base_align
;
331 size_bf
= mc
->vram_start
& ~mc
->gtt_base_align
;
332 if (size_bf
> size_af
) {
333 if (mc
->gtt_size
> size_bf
) {
334 dev_warn(rdev
->dev
, "limiting GTT\n");
335 mc
->gtt_size
= size_bf
;
337 mc
->gtt_start
= (mc
->vram_start
& ~mc
->gtt_base_align
) - mc
->gtt_size
;
339 if (mc
->gtt_size
> size_af
) {
340 dev_warn(rdev
->dev
, "limiting GTT\n");
341 mc
->gtt_size
= size_af
;
343 mc
->gtt_start
= (mc
->vram_end
+ 1 + mc
->gtt_base_align
) & ~mc
->gtt_base_align
;
345 mc
->gtt_end
= mc
->gtt_start
+ mc
->gtt_size
- 1;
346 dev_info(rdev
->dev
, "GTT: %lluM 0x%016llX - 0x%016llX\n",
347 mc
->gtt_size
>> 20, mc
->gtt_start
, mc
->gtt_end
);
351 * GPU helpers function.
353 bool radeon_card_posted(struct radeon_device
*rdev
)
357 if (efi_enabled
&& rdev
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_APPLE
)
360 /* first check CRTCs */
361 if (ASIC_IS_DCE41(rdev
)) {
362 reg
= RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC0_REGISTER_OFFSET
) |
363 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC1_REGISTER_OFFSET
);
364 if (reg
& EVERGREEN_CRTC_MASTER_EN
)
366 } else if (ASIC_IS_DCE4(rdev
)) {
367 reg
= RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC0_REGISTER_OFFSET
) |
368 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC1_REGISTER_OFFSET
) |
369 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC2_REGISTER_OFFSET
) |
370 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC3_REGISTER_OFFSET
) |
371 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC4_REGISTER_OFFSET
) |
372 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC5_REGISTER_OFFSET
);
373 if (reg
& EVERGREEN_CRTC_MASTER_EN
)
375 } else if (ASIC_IS_AVIVO(rdev
)) {
376 reg
= RREG32(AVIVO_D1CRTC_CONTROL
) |
377 RREG32(AVIVO_D2CRTC_CONTROL
);
378 if (reg
& AVIVO_CRTC_EN
) {
382 reg
= RREG32(RADEON_CRTC_GEN_CNTL
) |
383 RREG32(RADEON_CRTC2_GEN_CNTL
);
384 if (reg
& RADEON_CRTC_EN
) {
389 /* then check MEM_SIZE, in case the crtcs are off */
390 if (rdev
->family
>= CHIP_R600
)
391 reg
= RREG32(R600_CONFIG_MEMSIZE
);
393 reg
= RREG32(RADEON_CONFIG_MEMSIZE
);
402 void radeon_update_bandwidth_info(struct radeon_device
*rdev
)
405 u32 sclk
= rdev
->pm
.current_sclk
;
406 u32 mclk
= rdev
->pm
.current_mclk
;
408 /* sclk/mclk in Mhz */
409 a
.full
= dfixed_const(100);
410 rdev
->pm
.sclk
.full
= dfixed_const(sclk
);
411 rdev
->pm
.sclk
.full
= dfixed_div(rdev
->pm
.sclk
, a
);
412 rdev
->pm
.mclk
.full
= dfixed_const(mclk
);
413 rdev
->pm
.mclk
.full
= dfixed_div(rdev
->pm
.mclk
, a
);
415 if (rdev
->flags
& RADEON_IS_IGP
) {
416 a
.full
= dfixed_const(16);
417 /* core_bandwidth = sclk(Mhz) * 16 */
418 rdev
->pm
.core_bandwidth
.full
= dfixed_div(rdev
->pm
.sclk
, a
);
422 bool radeon_boot_test_post_card(struct radeon_device
*rdev
)
424 if (radeon_card_posted(rdev
))
428 DRM_INFO("GPU not posted. posting now...\n");
429 if (rdev
->is_atom_bios
)
430 atom_asic_init(rdev
->mode_info
.atom_context
);
432 radeon_combios_asic_init(rdev
->ddev
);
435 dev_err(rdev
->dev
, "Card not posted and no BIOS - ignoring\n");
440 int radeon_dummy_page_init(struct radeon_device
*rdev
)
442 if (rdev
->dummy_page
.page
)
444 rdev
->dummy_page
.page
= alloc_page(GFP_DMA32
| GFP_KERNEL
| __GFP_ZERO
);
445 if (rdev
->dummy_page
.page
== NULL
)
447 rdev
->dummy_page
.addr
= pci_map_page(rdev
->pdev
, rdev
->dummy_page
.page
,
448 0, PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
449 if (pci_dma_mapping_error(rdev
->pdev
, rdev
->dummy_page
.addr
)) {
450 dev_err(&rdev
->pdev
->dev
, "Failed to DMA MAP the dummy page\n");
451 __free_page(rdev
->dummy_page
.page
);
452 rdev
->dummy_page
.page
= NULL
;
458 void radeon_dummy_page_fini(struct radeon_device
*rdev
)
460 if (rdev
->dummy_page
.page
== NULL
)
462 pci_unmap_page(rdev
->pdev
, rdev
->dummy_page
.addr
,
463 PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
464 __free_page(rdev
->dummy_page
.page
);
465 rdev
->dummy_page
.page
= NULL
;
469 /* ATOM accessor methods */
470 static uint32_t cail_pll_read(struct card_info
*info
, uint32_t reg
)
472 struct radeon_device
*rdev
= info
->dev
->dev_private
;
475 r
= rdev
->pll_rreg(rdev
, reg
);
479 static void cail_pll_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
481 struct radeon_device
*rdev
= info
->dev
->dev_private
;
483 rdev
->pll_wreg(rdev
, reg
, val
);
486 static uint32_t cail_mc_read(struct card_info
*info
, uint32_t reg
)
488 struct radeon_device
*rdev
= info
->dev
->dev_private
;
491 r
= rdev
->mc_rreg(rdev
, reg
);
495 static void cail_mc_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
497 struct radeon_device
*rdev
= info
->dev
->dev_private
;
499 rdev
->mc_wreg(rdev
, reg
, val
);
502 static void cail_reg_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
504 struct radeon_device
*rdev
= info
->dev
->dev_private
;
509 static uint32_t cail_reg_read(struct card_info
*info
, uint32_t reg
)
511 struct radeon_device
*rdev
= info
->dev
->dev_private
;
518 static void cail_ioreg_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
520 struct radeon_device
*rdev
= info
->dev
->dev_private
;
522 WREG32_IO(reg
*4, val
);
525 static uint32_t cail_ioreg_read(struct card_info
*info
, uint32_t reg
)
527 struct radeon_device
*rdev
= info
->dev
->dev_private
;
530 r
= RREG32_IO(reg
*4);
534 int radeon_atombios_init(struct radeon_device
*rdev
)
536 struct card_info
*atom_card_info
=
537 kzalloc(sizeof(struct card_info
), GFP_KERNEL
);
542 rdev
->mode_info
.atom_card_info
= atom_card_info
;
543 atom_card_info
->dev
= rdev
->ddev
;
544 atom_card_info
->reg_read
= cail_reg_read
;
545 atom_card_info
->reg_write
= cail_reg_write
;
546 /* needed for iio ops */
548 atom_card_info
->ioreg_read
= cail_ioreg_read
;
549 atom_card_info
->ioreg_write
= cail_ioreg_write
;
551 DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
552 atom_card_info
->ioreg_read
= cail_reg_read
;
553 atom_card_info
->ioreg_write
= cail_reg_write
;
555 atom_card_info
->mc_read
= cail_mc_read
;
556 atom_card_info
->mc_write
= cail_mc_write
;
557 atom_card_info
->pll_read
= cail_pll_read
;
558 atom_card_info
->pll_write
= cail_pll_write
;
560 rdev
->mode_info
.atom_context
= atom_parse(atom_card_info
, rdev
->bios
);
561 mutex_init(&rdev
->mode_info
.atom_context
->mutex
);
562 radeon_atom_initialize_bios_scratch_regs(rdev
->ddev
);
563 atom_allocate_fb_scratch(rdev
->mode_info
.atom_context
);
567 void radeon_atombios_fini(struct radeon_device
*rdev
)
569 if (rdev
->mode_info
.atom_context
) {
570 kfree(rdev
->mode_info
.atom_context
->scratch
);
571 kfree(rdev
->mode_info
.atom_context
);
573 kfree(rdev
->mode_info
.atom_card_info
);
576 int radeon_combios_init(struct radeon_device
*rdev
)
578 radeon_combios_initialize_bios_scratch_regs(rdev
->ddev
);
582 void radeon_combios_fini(struct radeon_device
*rdev
)
586 /* if we get transitioned to only one device, tak VGA back */
587 static unsigned int radeon_vga_set_decode(void *cookie
, bool state
)
589 struct radeon_device
*rdev
= cookie
;
590 radeon_vga_set_state(rdev
, state
);
592 return VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
|
593 VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
595 return VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
598 void radeon_check_arguments(struct radeon_device
*rdev
)
600 /* vramlimit must be a power of two */
601 switch (radeon_vram_limit
) {
616 dev_warn(rdev
->dev
, "vram limit (%d) must be a power of 2\n",
618 radeon_vram_limit
= 0;
621 radeon_vram_limit
= radeon_vram_limit
<< 20;
622 /* gtt size must be power of two and greater or equal to 32M */
623 switch (radeon_gart_size
) {
627 dev_warn(rdev
->dev
, "gart size (%d) too small forcing to 512M\n",
629 radeon_gart_size
= 512;
641 dev_warn(rdev
->dev
, "gart size (%d) must be a power of 2\n",
643 radeon_gart_size
= 512;
646 rdev
->mc
.gtt_size
= radeon_gart_size
* 1024 * 1024;
647 /* AGP mode can only be -1, 1, 2, 4, 8 */
648 switch (radeon_agpmode
) {
657 dev_warn(rdev
->dev
, "invalid AGP mode %d (valid mode: "
658 "-1, 0, 1, 2, 4, 8)\n", radeon_agpmode
);
664 static void radeon_switcheroo_set_state(struct pci_dev
*pdev
, enum vga_switcheroo_state state
)
666 struct drm_device
*dev
= pci_get_drvdata(pdev
);
667 pm_message_t pmm
= { .event
= PM_EVENT_SUSPEND
};
668 if (state
== VGA_SWITCHEROO_ON
) {
669 printk(KERN_INFO
"radeon: switched on\n");
670 /* don't suspend or resume card normally */
671 dev
->switch_power_state
= DRM_SWITCH_POWER_CHANGING
;
672 radeon_resume_kms(dev
);
673 dev
->switch_power_state
= DRM_SWITCH_POWER_ON
;
674 drm_kms_helper_poll_enable(dev
);
676 printk(KERN_INFO
"radeon: switched off\n");
677 drm_kms_helper_poll_disable(dev
);
678 dev
->switch_power_state
= DRM_SWITCH_POWER_CHANGING
;
679 radeon_suspend_kms(dev
, pmm
);
680 dev
->switch_power_state
= DRM_SWITCH_POWER_OFF
;
684 static bool radeon_switcheroo_can_switch(struct pci_dev
*pdev
)
686 struct drm_device
*dev
= pci_get_drvdata(pdev
);
689 spin_lock(&dev
->count_lock
);
690 can_switch
= (dev
->open_count
== 0);
691 spin_unlock(&dev
->count_lock
);
696 int radeon_device_init(struct radeon_device
*rdev
,
697 struct drm_device
*ddev
,
698 struct pci_dev
*pdev
,
704 rdev
->shutdown
= false;
705 rdev
->dev
= &pdev
->dev
;
709 rdev
->family
= flags
& RADEON_FAMILY_MASK
;
710 rdev
->is_atom_bios
= false;
711 rdev
->usec_timeout
= RADEON_MAX_USEC_TIMEOUT
;
712 rdev
->mc
.gtt_size
= radeon_gart_size
* 1024 * 1024;
713 rdev
->gpu_lockup
= false;
714 rdev
->accel_working
= false;
716 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X).\n",
717 radeon_family_name
[rdev
->family
], pdev
->vendor
, pdev
->device
,
718 pdev
->subsystem_vendor
, pdev
->subsystem_device
);
720 /* mutex initialization are all done here so we
721 * can recall function without having locking issues */
722 radeon_mutex_init(&rdev
->cs_mutex
);
723 radeon_mutex_init(&rdev
->ib_pool
.mutex
);
724 for (i
= 0; i
< RADEON_NUM_RINGS
; ++i
)
725 mutex_init(&rdev
->ring
[i
].mutex
);
726 mutex_init(&rdev
->dc_hw_i2c_mutex
);
727 if (rdev
->family
>= CHIP_R600
)
728 spin_lock_init(&rdev
->ih
.lock
);
729 mutex_init(&rdev
->gem
.mutex
);
730 mutex_init(&rdev
->pm
.mutex
);
731 mutex_init(&rdev
->vram_mutex
);
732 rwlock_init(&rdev
->fence_lock
);
733 rwlock_init(&rdev
->semaphore_drv
.lock
);
734 INIT_LIST_HEAD(&rdev
->gem
.objects
);
735 init_waitqueue_head(&rdev
->irq
.vblank_queue
);
736 init_waitqueue_head(&rdev
->irq
.idle_queue
);
737 INIT_LIST_HEAD(&rdev
->semaphore_drv
.bo
);
738 /* initialize vm here */
739 rdev
->vm_manager
.use_bitmap
= 1;
740 rdev
->vm_manager
.max_pfn
= 1 << 20;
741 INIT_LIST_HEAD(&rdev
->vm_manager
.lru_vm
);
743 /* Set asic functions */
744 r
= radeon_asic_init(rdev
);
747 radeon_check_arguments(rdev
);
749 /* all of the newer IGP chips have an internal gart
750 * However some rs4xx report as AGP, so remove that here.
752 if ((rdev
->family
>= CHIP_RS400
) &&
753 (rdev
->flags
& RADEON_IS_IGP
)) {
754 rdev
->flags
&= ~RADEON_IS_AGP
;
757 if (rdev
->flags
& RADEON_IS_AGP
&& radeon_agpmode
== -1) {
758 radeon_agp_disable(rdev
);
761 /* set DMA mask + need_dma32 flags.
762 * PCIE - can handle 40-bits.
763 * IGP - can handle 40-bits
764 * AGP - generally dma32 is safest
765 * PCI - dma32 for legacy pci gart, 40 bits on newer asics
767 rdev
->need_dma32
= false;
768 if (rdev
->flags
& RADEON_IS_AGP
)
769 rdev
->need_dma32
= true;
770 if ((rdev
->flags
& RADEON_IS_PCI
) &&
771 (rdev
->family
< CHIP_RS400
))
772 rdev
->need_dma32
= true;
774 dma_bits
= rdev
->need_dma32
? 32 : 40;
775 r
= pci_set_dma_mask(rdev
->pdev
, DMA_BIT_MASK(dma_bits
));
777 rdev
->need_dma32
= true;
779 printk(KERN_WARNING
"radeon: No suitable DMA available.\n");
781 r
= pci_set_consistent_dma_mask(rdev
->pdev
, DMA_BIT_MASK(dma_bits
));
783 pci_set_consistent_dma_mask(rdev
->pdev
, DMA_BIT_MASK(32));
784 printk(KERN_WARNING
"radeon: No coherent DMA available.\n");
787 /* Registers mapping */
788 /* TODO: block userspace mapping of io register */
789 rdev
->rmmio_base
= pci_resource_start(rdev
->pdev
, 2);
790 rdev
->rmmio_size
= pci_resource_len(rdev
->pdev
, 2);
791 rdev
->rmmio
= ioremap(rdev
->rmmio_base
, rdev
->rmmio_size
);
792 if (rdev
->rmmio
== NULL
) {
795 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)rdev
->rmmio_base
);
796 DRM_INFO("register mmio size: %u\n", (unsigned)rdev
->rmmio_size
);
798 /* io port mapping */
799 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
800 if (pci_resource_flags(rdev
->pdev
, i
) & IORESOURCE_IO
) {
801 rdev
->rio_mem_size
= pci_resource_len(rdev
->pdev
, i
);
802 rdev
->rio_mem
= pci_iomap(rdev
->pdev
, i
, rdev
->rio_mem_size
);
806 if (rdev
->rio_mem
== NULL
)
807 DRM_ERROR("Unable to find PCI I/O BAR\n");
809 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
810 /* this will fail for cards that aren't VGA class devices, just
812 vga_client_register(rdev
->pdev
, rdev
, NULL
, radeon_vga_set_decode
);
813 vga_switcheroo_register_client(rdev
->pdev
,
814 radeon_switcheroo_set_state
,
816 radeon_switcheroo_can_switch
);
818 r
= radeon_init(rdev
);
822 if (rdev
->flags
& RADEON_IS_AGP
&& !rdev
->accel_working
) {
823 /* Acceleration not working on AGP card try again
824 * with fallback to PCI or PCIE GART
826 radeon_asic_reset(rdev
);
828 radeon_agp_disable(rdev
);
829 r
= radeon_init(rdev
);
833 if ((radeon_testing
& 1)) {
834 radeon_test_moves(rdev
);
836 if ((radeon_testing
& 2)) {
837 radeon_test_syncing(rdev
);
839 if (radeon_benchmarking
) {
840 radeon_benchmark(rdev
, radeon_benchmarking
);
845 static void radeon_debugfs_remove_files(struct radeon_device
*rdev
);
847 void radeon_device_fini(struct radeon_device
*rdev
)
849 DRM_INFO("radeon: finishing device.\n");
850 rdev
->shutdown
= true;
851 /* evict vram memory */
852 radeon_bo_evict_vram(rdev
);
854 vga_switcheroo_unregister_client(rdev
->pdev
);
855 vga_client_register(rdev
->pdev
, NULL
, NULL
, NULL
);
857 pci_iounmap(rdev
->pdev
, rdev
->rio_mem
);
858 rdev
->rio_mem
= NULL
;
859 iounmap(rdev
->rmmio
);
861 radeon_debugfs_remove_files(rdev
);
868 int radeon_suspend_kms(struct drm_device
*dev
, pm_message_t state
)
870 struct radeon_device
*rdev
;
871 struct drm_crtc
*crtc
;
872 struct drm_connector
*connector
;
875 if (dev
== NULL
|| dev
->dev_private
== NULL
) {
878 if (state
.event
== PM_EVENT_PRETHAW
) {
881 rdev
= dev
->dev_private
;
883 if (dev
->switch_power_state
== DRM_SWITCH_POWER_OFF
)
886 drm_kms_helper_poll_disable(dev
);
888 /* turn off display hw */
889 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
890 drm_helper_connector_dpms(connector
, DRM_MODE_DPMS_OFF
);
893 /* unpin the front buffers */
894 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
895 struct radeon_framebuffer
*rfb
= to_radeon_framebuffer(crtc
->fb
);
896 struct radeon_bo
*robj
;
898 if (rfb
== NULL
|| rfb
->obj
== NULL
) {
901 robj
= gem_to_radeon_bo(rfb
->obj
);
902 /* don't unpin kernel fb objects */
903 if (!radeon_fbdev_robj_is_fb(rdev
, robj
)) {
904 r
= radeon_bo_reserve(robj
, false);
906 radeon_bo_unpin(robj
);
907 radeon_bo_unreserve(robj
);
911 /* evict vram memory */
912 radeon_bo_evict_vram(rdev
);
913 /* wait for gpu to finish processing current batch */
914 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++)
915 radeon_fence_wait_last(rdev
, i
);
917 radeon_save_bios_scratch_regs(rdev
);
919 radeon_pm_suspend(rdev
);
920 radeon_suspend(rdev
);
921 radeon_hpd_fini(rdev
);
922 /* evict remaining vram memory */
923 radeon_bo_evict_vram(rdev
);
925 radeon_agp_suspend(rdev
);
927 pci_save_state(dev
->pdev
);
928 if (state
.event
== PM_EVENT_SUSPEND
) {
929 /* Shut down the device */
930 pci_disable_device(dev
->pdev
);
931 pci_set_power_state(dev
->pdev
, PCI_D3hot
);
934 radeon_fbdev_set_suspend(rdev
, 1);
939 int radeon_resume_kms(struct drm_device
*dev
)
941 struct drm_connector
*connector
;
942 struct radeon_device
*rdev
= dev
->dev_private
;
944 if (dev
->switch_power_state
== DRM_SWITCH_POWER_OFF
)
948 pci_set_power_state(dev
->pdev
, PCI_D0
);
949 pci_restore_state(dev
->pdev
);
950 if (pci_enable_device(dev
->pdev
)) {
954 pci_set_master(dev
->pdev
);
955 /* resume AGP if in use */
956 radeon_agp_resume(rdev
);
958 radeon_pm_resume(rdev
);
959 radeon_restore_bios_scratch_regs(rdev
);
961 radeon_fbdev_set_suspend(rdev
, 0);
964 /* init dig PHYs, disp eng pll */
965 if (rdev
->is_atom_bios
) {
966 radeon_atom_encoder_init(rdev
);
967 radeon_atom_dcpll_init(rdev
);
969 /* reset hpd state */
970 radeon_hpd_init(rdev
);
971 /* blat the mode back in */
972 drm_helper_resume_force_mode(dev
);
973 /* turn on display hw */
974 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
975 drm_helper_connector_dpms(connector
, DRM_MODE_DPMS_ON
);
978 drm_kms_helper_poll_enable(dev
);
982 int radeon_gpu_reset(struct radeon_device
*rdev
)
987 /* Prevent CS ioctl from interfering */
988 radeon_mutex_lock(&rdev
->cs_mutex
);
990 radeon_save_bios_scratch_regs(rdev
);
992 resched
= ttm_bo_lock_delayed_workqueue(&rdev
->mman
.bdev
);
993 radeon_suspend(rdev
);
995 r
= radeon_asic_reset(rdev
);
997 dev_info(rdev
->dev
, "GPU reset succeed\n");
999 radeon_restore_bios_scratch_regs(rdev
);
1000 drm_helper_resume_force_mode(rdev
->ddev
);
1001 ttm_bo_unlock_delayed_workqueue(&rdev
->mman
.bdev
, resched
);
1004 radeon_mutex_unlock(&rdev
->cs_mutex
);
1007 /* bad news, how to tell it to userspace ? */
1008 dev_info(rdev
->dev
, "GPU reset failed\n");
1018 int radeon_debugfs_add_files(struct radeon_device
*rdev
,
1019 struct drm_info_list
*files
,
1024 for (i
= 0; i
< rdev
->debugfs_count
; i
++) {
1025 if (rdev
->debugfs
[i
].files
== files
) {
1026 /* Already registered */
1031 i
= rdev
->debugfs_count
+ 1;
1032 if (i
> RADEON_DEBUGFS_MAX_COMPONENTS
) {
1033 DRM_ERROR("Reached maximum number of debugfs components.\n");
1034 DRM_ERROR("Report so we increase "
1035 "RADEON_DEBUGFS_MAX_COMPONENTS.\n");
1038 rdev
->debugfs
[rdev
->debugfs_count
].files
= files
;
1039 rdev
->debugfs
[rdev
->debugfs_count
].num_files
= nfiles
;
1040 rdev
->debugfs_count
= i
;
1041 #if defined(CONFIG_DEBUG_FS)
1042 drm_debugfs_create_files(files
, nfiles
,
1043 rdev
->ddev
->control
->debugfs_root
,
1044 rdev
->ddev
->control
);
1045 drm_debugfs_create_files(files
, nfiles
,
1046 rdev
->ddev
->primary
->debugfs_root
,
1047 rdev
->ddev
->primary
);
1052 static void radeon_debugfs_remove_files(struct radeon_device
*rdev
)
1054 #if defined(CONFIG_DEBUG_FS)
1057 for (i
= 0; i
< rdev
->debugfs_count
; i
++) {
1058 drm_debugfs_remove_files(rdev
->debugfs
[i
].files
,
1059 rdev
->debugfs
[i
].num_files
,
1060 rdev
->ddev
->control
);
1061 drm_debugfs_remove_files(rdev
->debugfs
[i
].files
,
1062 rdev
->debugfs
[i
].num_files
,
1063 rdev
->ddev
->primary
);
1068 #if defined(CONFIG_DEBUG_FS)
1069 int radeon_debugfs_init(struct drm_minor
*minor
)
1074 void radeon_debugfs_cleanup(struct drm_minor
*minor
)