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] = {
100 * radeon_surface_init - Clear GPU surface registers.
102 * @rdev: radeon_device pointer
104 * Clear GPU surface registers (r1xx-r5xx).
106 void radeon_surface_init(struct radeon_device
*rdev
)
108 /* FIXME: check this out */
109 if (rdev
->family
< CHIP_R600
) {
112 for (i
= 0; i
< RADEON_GEM_MAX_SURFACES
; i
++) {
113 if (rdev
->surface_regs
[i
].bo
)
114 radeon_bo_get_surface_reg(rdev
->surface_regs
[i
].bo
);
116 radeon_clear_surface_reg(rdev
, i
);
118 /* enable surfaces */
119 WREG32(RADEON_SURFACE_CNTL
, 0);
124 * GPU scratch registers helpers function.
127 * radeon_scratch_init - Init scratch register driver information.
129 * @rdev: radeon_device pointer
131 * Init CP scratch register driver information (r1xx-r5xx)
133 void radeon_scratch_init(struct radeon_device
*rdev
)
137 /* FIXME: check this out */
138 if (rdev
->family
< CHIP_R300
) {
139 rdev
->scratch
.num_reg
= 5;
141 rdev
->scratch
.num_reg
= 7;
143 rdev
->scratch
.reg_base
= RADEON_SCRATCH_REG0
;
144 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
145 rdev
->scratch
.free
[i
] = true;
146 rdev
->scratch
.reg
[i
] = rdev
->scratch
.reg_base
+ (i
* 4);
151 * radeon_scratch_get - Allocate a scratch register
153 * @rdev: radeon_device pointer
154 * @reg: scratch register mmio offset
156 * Allocate a CP scratch register for use by the driver (all asics).
157 * Returns 0 on success or -EINVAL on failure.
159 int radeon_scratch_get(struct radeon_device
*rdev
, uint32_t *reg
)
163 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
164 if (rdev
->scratch
.free
[i
]) {
165 rdev
->scratch
.free
[i
] = false;
166 *reg
= rdev
->scratch
.reg
[i
];
174 * radeon_scratch_free - Free a scratch register
176 * @rdev: radeon_device pointer
177 * @reg: scratch register mmio offset
179 * Free a CP scratch register allocated for use by the driver (all asics)
181 void radeon_scratch_free(struct radeon_device
*rdev
, uint32_t reg
)
185 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
186 if (rdev
->scratch
.reg
[i
] == reg
) {
187 rdev
->scratch
.free
[i
] = true;
195 * Writeback is the the method by which the the GPU updates special pages
196 * in memory with the status of certain GPU events (fences, ring pointers,
201 * radeon_wb_disable - Disable Writeback
203 * @rdev: radeon_device pointer
205 * Disables Writeback (all asics). Used for suspend.
207 void radeon_wb_disable(struct radeon_device
*rdev
)
211 if (rdev
->wb
.wb_obj
) {
212 r
= radeon_bo_reserve(rdev
->wb
.wb_obj
, false);
213 if (unlikely(r
!= 0))
215 radeon_bo_kunmap(rdev
->wb
.wb_obj
);
216 radeon_bo_unpin(rdev
->wb
.wb_obj
);
217 radeon_bo_unreserve(rdev
->wb
.wb_obj
);
219 rdev
->wb
.enabled
= false;
223 * radeon_wb_fini - Disable Writeback and free memory
225 * @rdev: radeon_device pointer
227 * Disables Writeback and frees the Writeback memory (all asics).
228 * Used at driver shutdown.
230 void radeon_wb_fini(struct radeon_device
*rdev
)
232 radeon_wb_disable(rdev
);
233 if (rdev
->wb
.wb_obj
) {
234 radeon_bo_unref(&rdev
->wb
.wb_obj
);
236 rdev
->wb
.wb_obj
= NULL
;
241 * radeon_wb_init- Init Writeback driver info and allocate memory
243 * @rdev: radeon_device pointer
245 * Disables Writeback and frees the Writeback memory (all asics).
246 * Used at driver startup.
247 * Returns 0 on success or an -error on failure.
249 int radeon_wb_init(struct radeon_device
*rdev
)
253 if (rdev
->wb
.wb_obj
== NULL
) {
254 r
= radeon_bo_create(rdev
, RADEON_GPU_PAGE_SIZE
, PAGE_SIZE
, true,
255 RADEON_GEM_DOMAIN_GTT
, NULL
, &rdev
->wb
.wb_obj
);
257 dev_warn(rdev
->dev
, "(%d) create WB bo failed\n", r
);
261 r
= radeon_bo_reserve(rdev
->wb
.wb_obj
, false);
262 if (unlikely(r
!= 0)) {
263 radeon_wb_fini(rdev
);
266 r
= radeon_bo_pin(rdev
->wb
.wb_obj
, RADEON_GEM_DOMAIN_GTT
,
269 radeon_bo_unreserve(rdev
->wb
.wb_obj
);
270 dev_warn(rdev
->dev
, "(%d) pin WB bo failed\n", r
);
271 radeon_wb_fini(rdev
);
274 r
= radeon_bo_kmap(rdev
->wb
.wb_obj
, (void **)&rdev
->wb
.wb
);
275 radeon_bo_unreserve(rdev
->wb
.wb_obj
);
277 dev_warn(rdev
->dev
, "(%d) map WB bo failed\n", r
);
278 radeon_wb_fini(rdev
);
282 /* clear wb memory */
283 memset((char *)rdev
->wb
.wb
, 0, RADEON_GPU_PAGE_SIZE
);
284 /* disable event_write fences */
285 rdev
->wb
.use_event
= false;
286 /* disabled via module param */
287 if (radeon_no_wb
== 1) {
288 rdev
->wb
.enabled
= false;
290 if (rdev
->flags
& RADEON_IS_AGP
) {
291 /* often unreliable on AGP */
292 rdev
->wb
.enabled
= false;
293 } else if (rdev
->family
< CHIP_R300
) {
294 /* often unreliable on pre-r300 */
295 rdev
->wb
.enabled
= false;
297 rdev
->wb
.enabled
= true;
298 /* event_write fences are only available on r600+ */
299 if (rdev
->family
>= CHIP_R600
) {
300 rdev
->wb
.use_event
= true;
304 /* always use writeback/events on NI, APUs */
305 if (rdev
->family
>= CHIP_PALM
) {
306 rdev
->wb
.enabled
= true;
307 rdev
->wb
.use_event
= true;
310 dev_info(rdev
->dev
, "WB %sabled\n", rdev
->wb
.enabled
? "en" : "dis");
316 * radeon_vram_location - try to find VRAM location
317 * @rdev: radeon device structure holding all necessary informations
318 * @mc: memory controller structure holding memory informations
319 * @base: base address at which to put VRAM
321 * Function will place try to place VRAM at base address provided
322 * as parameter (which is so far either PCI aperture address or
323 * for IGP TOM base address).
325 * If there is not enough space to fit the unvisible VRAM in the 32bits
326 * address space then we limit the VRAM size to the aperture.
328 * If we are using AGP and if the AGP aperture doesn't allow us to have
329 * room for all the VRAM than we restrict the VRAM to the PCI aperture
330 * size and print a warning.
332 * This function will never fails, worst case are limiting VRAM.
334 * Note: GTT start, end, size should be initialized before calling this
335 * function on AGP platform.
337 * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size,
338 * this shouldn't be a problem as we are using the PCI aperture as a reference.
339 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
342 * Note: we use mc_vram_size as on some board we need to program the mc to
343 * cover the whole aperture even if VRAM size is inferior to aperture size
344 * Novell bug 204882 + along with lots of ubuntu ones
346 * Note: when limiting vram it's safe to overwritte real_vram_size because
347 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
348 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
351 * Note: IGP TOM addr should be the same as the aperture addr, we don't
352 * explicitly check for that thought.
354 * FIXME: when reducing VRAM size align new size on power of 2.
356 void radeon_vram_location(struct radeon_device
*rdev
, struct radeon_mc
*mc
, u64 base
)
358 mc
->vram_start
= base
;
359 if (mc
->mc_vram_size
> (0xFFFFFFFF - base
+ 1)) {
360 dev_warn(rdev
->dev
, "limiting VRAM to PCI aperture size\n");
361 mc
->real_vram_size
= mc
->aper_size
;
362 mc
->mc_vram_size
= mc
->aper_size
;
364 mc
->vram_end
= mc
->vram_start
+ mc
->mc_vram_size
- 1;
365 if (rdev
->flags
& RADEON_IS_AGP
&& mc
->vram_end
> mc
->gtt_start
&& mc
->vram_start
<= mc
->gtt_end
) {
366 dev_warn(rdev
->dev
, "limiting VRAM to PCI aperture size\n");
367 mc
->real_vram_size
= mc
->aper_size
;
368 mc
->mc_vram_size
= mc
->aper_size
;
370 mc
->vram_end
= mc
->vram_start
+ mc
->mc_vram_size
- 1;
371 if (radeon_vram_limit
&& radeon_vram_limit
< mc
->real_vram_size
)
372 mc
->real_vram_size
= radeon_vram_limit
;
373 dev_info(rdev
->dev
, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
374 mc
->mc_vram_size
>> 20, mc
->vram_start
,
375 mc
->vram_end
, mc
->real_vram_size
>> 20);
379 * radeon_gtt_location - try to find GTT location
380 * @rdev: radeon device structure holding all necessary informations
381 * @mc: memory controller structure holding memory informations
383 * Function will place try to place GTT before or after VRAM.
385 * If GTT size is bigger than space left then we ajust GTT size.
386 * Thus function will never fails.
388 * FIXME: when reducing GTT size align new size on power of 2.
390 void radeon_gtt_location(struct radeon_device
*rdev
, struct radeon_mc
*mc
)
392 u64 size_af
, size_bf
;
394 size_af
= ((0xFFFFFFFF - mc
->vram_end
) + mc
->gtt_base_align
) & ~mc
->gtt_base_align
;
395 size_bf
= mc
->vram_start
& ~mc
->gtt_base_align
;
396 if (size_bf
> size_af
) {
397 if (mc
->gtt_size
> size_bf
) {
398 dev_warn(rdev
->dev
, "limiting GTT\n");
399 mc
->gtt_size
= size_bf
;
401 mc
->gtt_start
= (mc
->vram_start
& ~mc
->gtt_base_align
) - mc
->gtt_size
;
403 if (mc
->gtt_size
> size_af
) {
404 dev_warn(rdev
->dev
, "limiting GTT\n");
405 mc
->gtt_size
= size_af
;
407 mc
->gtt_start
= (mc
->vram_end
+ 1 + mc
->gtt_base_align
) & ~mc
->gtt_base_align
;
409 mc
->gtt_end
= mc
->gtt_start
+ mc
->gtt_size
- 1;
410 dev_info(rdev
->dev
, "GTT: %lluM 0x%016llX - 0x%016llX\n",
411 mc
->gtt_size
>> 20, mc
->gtt_start
, mc
->gtt_end
);
415 * GPU helpers function.
418 * radeon_card_posted - check if the hw has already been initialized
420 * @rdev: radeon_device pointer
422 * Check if the asic has been initialized (all asics).
423 * Used at driver startup.
424 * Returns true if initialized or false if not.
426 bool radeon_card_posted(struct radeon_device
*rdev
)
430 if (efi_enabled
&& rdev
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_APPLE
)
433 /* first check CRTCs */
434 if (ASIC_IS_DCE41(rdev
)) {
435 reg
= RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC0_REGISTER_OFFSET
) |
436 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC1_REGISTER_OFFSET
);
437 if (reg
& EVERGREEN_CRTC_MASTER_EN
)
439 } else if (ASIC_IS_DCE4(rdev
)) {
440 reg
= RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC0_REGISTER_OFFSET
) |
441 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC1_REGISTER_OFFSET
) |
442 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC2_REGISTER_OFFSET
) |
443 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC3_REGISTER_OFFSET
) |
444 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC4_REGISTER_OFFSET
) |
445 RREG32(EVERGREEN_CRTC_CONTROL
+ EVERGREEN_CRTC5_REGISTER_OFFSET
);
446 if (reg
& EVERGREEN_CRTC_MASTER_EN
)
448 } else if (ASIC_IS_AVIVO(rdev
)) {
449 reg
= RREG32(AVIVO_D1CRTC_CONTROL
) |
450 RREG32(AVIVO_D2CRTC_CONTROL
);
451 if (reg
& AVIVO_CRTC_EN
) {
455 reg
= RREG32(RADEON_CRTC_GEN_CNTL
) |
456 RREG32(RADEON_CRTC2_GEN_CNTL
);
457 if (reg
& RADEON_CRTC_EN
) {
462 /* then check MEM_SIZE, in case the crtcs are off */
463 if (rdev
->family
>= CHIP_R600
)
464 reg
= RREG32(R600_CONFIG_MEMSIZE
);
466 reg
= RREG32(RADEON_CONFIG_MEMSIZE
);
476 * radeon_update_bandwidth_info - update display bandwidth params
478 * @rdev: radeon_device pointer
480 * Used when sclk/mclk are switched or display modes are set.
481 * params are used to calculate display watermarks (all asics)
483 void radeon_update_bandwidth_info(struct radeon_device
*rdev
)
486 u32 sclk
= rdev
->pm
.current_sclk
;
487 u32 mclk
= rdev
->pm
.current_mclk
;
489 /* sclk/mclk in Mhz */
490 a
.full
= dfixed_const(100);
491 rdev
->pm
.sclk
.full
= dfixed_const(sclk
);
492 rdev
->pm
.sclk
.full
= dfixed_div(rdev
->pm
.sclk
, a
);
493 rdev
->pm
.mclk
.full
= dfixed_const(mclk
);
494 rdev
->pm
.mclk
.full
= dfixed_div(rdev
->pm
.mclk
, a
);
496 if (rdev
->flags
& RADEON_IS_IGP
) {
497 a
.full
= dfixed_const(16);
498 /* core_bandwidth = sclk(Mhz) * 16 */
499 rdev
->pm
.core_bandwidth
.full
= dfixed_div(rdev
->pm
.sclk
, a
);
504 * radeon_boot_test_post_card - check and possibly initialize the hw
506 * @rdev: radeon_device pointer
508 * Check if the asic is initialized and if not, attempt to initialize
510 * Returns true if initialized or false if not.
512 bool radeon_boot_test_post_card(struct radeon_device
*rdev
)
514 if (radeon_card_posted(rdev
))
518 DRM_INFO("GPU not posted. posting now...\n");
519 if (rdev
->is_atom_bios
)
520 atom_asic_init(rdev
->mode_info
.atom_context
);
522 radeon_combios_asic_init(rdev
->ddev
);
525 dev_err(rdev
->dev
, "Card not posted and no BIOS - ignoring\n");
531 * radeon_dummy_page_init - init dummy page used by the driver
533 * @rdev: radeon_device pointer
535 * Allocate the dummy page used by the driver (all asics).
536 * This dummy page is used by the driver as a filler for gart entries
537 * when pages are taken out of the GART
538 * Returns 0 on sucess, -ENOMEM on failure.
540 int radeon_dummy_page_init(struct radeon_device
*rdev
)
542 if (rdev
->dummy_page
.page
)
544 rdev
->dummy_page
.page
= alloc_page(GFP_DMA32
| GFP_KERNEL
| __GFP_ZERO
);
545 if (rdev
->dummy_page
.page
== NULL
)
547 rdev
->dummy_page
.addr
= pci_map_page(rdev
->pdev
, rdev
->dummy_page
.page
,
548 0, PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
549 if (pci_dma_mapping_error(rdev
->pdev
, rdev
->dummy_page
.addr
)) {
550 dev_err(&rdev
->pdev
->dev
, "Failed to DMA MAP the dummy page\n");
551 __free_page(rdev
->dummy_page
.page
);
552 rdev
->dummy_page
.page
= NULL
;
559 * radeon_dummy_page_fini - free dummy page used by the driver
561 * @rdev: radeon_device pointer
563 * Frees the dummy page used by the driver (all asics).
565 void radeon_dummy_page_fini(struct radeon_device
*rdev
)
567 if (rdev
->dummy_page
.page
== NULL
)
569 pci_unmap_page(rdev
->pdev
, rdev
->dummy_page
.addr
,
570 PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
571 __free_page(rdev
->dummy_page
.page
);
572 rdev
->dummy_page
.page
= NULL
;
576 /* ATOM accessor methods */
578 * ATOM is an interpreted byte code stored in tables in the vbios. The
579 * driver registers callbacks to access registers and the interpreter
580 * in the driver parses the tables and executes then to program specific
581 * actions (set display modes, asic init, etc.). See radeon_atombios.c,
582 * atombios.h, and atom.c
586 * cail_pll_read - read PLL register
588 * @info: atom card_info pointer
589 * @reg: PLL register offset
591 * Provides a PLL register accessor for the atom interpreter (r4xx+).
592 * Returns the value of the PLL register.
594 static uint32_t cail_pll_read(struct card_info
*info
, uint32_t reg
)
596 struct radeon_device
*rdev
= info
->dev
->dev_private
;
599 r
= rdev
->pll_rreg(rdev
, reg
);
604 * cail_pll_write - write PLL register
606 * @info: atom card_info pointer
607 * @reg: PLL register offset
608 * @val: value to write to the pll register
610 * Provides a PLL register accessor for the atom interpreter (r4xx+).
612 static void cail_pll_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
614 struct radeon_device
*rdev
= info
->dev
->dev_private
;
616 rdev
->pll_wreg(rdev
, reg
, val
);
620 * cail_mc_read - read MC (Memory Controller) register
622 * @info: atom card_info pointer
623 * @reg: MC register offset
625 * Provides an MC register accessor for the atom interpreter (r4xx+).
626 * Returns the value of the MC register.
628 static uint32_t cail_mc_read(struct card_info
*info
, uint32_t reg
)
630 struct radeon_device
*rdev
= info
->dev
->dev_private
;
633 r
= rdev
->mc_rreg(rdev
, reg
);
638 * cail_mc_write - write MC (Memory Controller) register
640 * @info: atom card_info pointer
641 * @reg: MC register offset
642 * @val: value to write to the pll register
644 * Provides a MC register accessor for the atom interpreter (r4xx+).
646 static void cail_mc_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
648 struct radeon_device
*rdev
= info
->dev
->dev_private
;
650 rdev
->mc_wreg(rdev
, reg
, val
);
654 * cail_reg_write - write MMIO register
656 * @info: atom card_info pointer
657 * @reg: MMIO register offset
658 * @val: value to write to the pll register
660 * Provides a MMIO register accessor for the atom interpreter (r4xx+).
662 static void cail_reg_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
664 struct radeon_device
*rdev
= info
->dev
->dev_private
;
670 * cail_reg_read - read MMIO register
672 * @info: atom card_info pointer
673 * @reg: MMIO register offset
675 * Provides an MMIO register accessor for the atom interpreter (r4xx+).
676 * Returns the value of the MMIO register.
678 static uint32_t cail_reg_read(struct card_info
*info
, uint32_t reg
)
680 struct radeon_device
*rdev
= info
->dev
->dev_private
;
688 * cail_ioreg_write - write IO register
690 * @info: atom card_info pointer
691 * @reg: IO register offset
692 * @val: value to write to the pll register
694 * Provides a IO register accessor for the atom interpreter (r4xx+).
696 static void cail_ioreg_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
698 struct radeon_device
*rdev
= info
->dev
->dev_private
;
700 WREG32_IO(reg
*4, val
);
704 * cail_ioreg_read - read IO register
706 * @info: atom card_info pointer
707 * @reg: IO register offset
709 * Provides an IO register accessor for the atom interpreter (r4xx+).
710 * Returns the value of the IO register.
712 static uint32_t cail_ioreg_read(struct card_info
*info
, uint32_t reg
)
714 struct radeon_device
*rdev
= info
->dev
->dev_private
;
717 r
= RREG32_IO(reg
*4);
722 * radeon_atombios_init - init the driver info and callbacks for atombios
724 * @rdev: radeon_device pointer
726 * Initializes the driver info and register access callbacks for the
727 * ATOM interpreter (r4xx+).
728 * Returns 0 on sucess, -ENOMEM on failure.
729 * Called at driver startup.
731 int radeon_atombios_init(struct radeon_device
*rdev
)
733 struct card_info
*atom_card_info
=
734 kzalloc(sizeof(struct card_info
), GFP_KERNEL
);
739 rdev
->mode_info
.atom_card_info
= atom_card_info
;
740 atom_card_info
->dev
= rdev
->ddev
;
741 atom_card_info
->reg_read
= cail_reg_read
;
742 atom_card_info
->reg_write
= cail_reg_write
;
743 /* needed for iio ops */
745 atom_card_info
->ioreg_read
= cail_ioreg_read
;
746 atom_card_info
->ioreg_write
= cail_ioreg_write
;
748 DRM_ERROR("Unable to find PCI I/O BAR; using MMIO for ATOM IIO\n");
749 atom_card_info
->ioreg_read
= cail_reg_read
;
750 atom_card_info
->ioreg_write
= cail_reg_write
;
752 atom_card_info
->mc_read
= cail_mc_read
;
753 atom_card_info
->mc_write
= cail_mc_write
;
754 atom_card_info
->pll_read
= cail_pll_read
;
755 atom_card_info
->pll_write
= cail_pll_write
;
757 rdev
->mode_info
.atom_context
= atom_parse(atom_card_info
, rdev
->bios
);
758 mutex_init(&rdev
->mode_info
.atom_context
->mutex
);
759 radeon_atom_initialize_bios_scratch_regs(rdev
->ddev
);
760 atom_allocate_fb_scratch(rdev
->mode_info
.atom_context
);
765 * radeon_atombios_fini - free the driver info and callbacks for atombios
767 * @rdev: radeon_device pointer
769 * Frees the driver info and register access callbacks for the ATOM
770 * interpreter (r4xx+).
771 * Called at driver shutdown.
773 void radeon_atombios_fini(struct radeon_device
*rdev
)
775 if (rdev
->mode_info
.atom_context
) {
776 kfree(rdev
->mode_info
.atom_context
->scratch
);
777 kfree(rdev
->mode_info
.atom_context
);
779 kfree(rdev
->mode_info
.atom_card_info
);
784 * COMBIOS is the bios format prior to ATOM. It provides
785 * command tables similar to ATOM, but doesn't have a unified
786 * parser. See radeon_combios.c
790 * radeon_combios_init - init the driver info for combios
792 * @rdev: radeon_device pointer
794 * Initializes the driver info for combios (r1xx-r3xx).
795 * Returns 0 on sucess.
796 * Called at driver startup.
798 int radeon_combios_init(struct radeon_device
*rdev
)
800 radeon_combios_initialize_bios_scratch_regs(rdev
->ddev
);
805 * radeon_combios_fini - free the driver info for combios
807 * @rdev: radeon_device pointer
809 * Frees the driver info for combios (r1xx-r3xx).
810 * Called at driver shutdown.
812 void radeon_combios_fini(struct radeon_device
*rdev
)
816 /* if we get transitioned to only one device, take VGA back */
818 * radeon_vga_set_decode - enable/disable vga decode
820 * @cookie: radeon_device pointer
821 * @state: enable/disable vga decode
823 * Enable/disable vga decode (all asics).
824 * Returns VGA resource flags.
826 static unsigned int radeon_vga_set_decode(void *cookie
, bool state
)
828 struct radeon_device
*rdev
= cookie
;
829 radeon_vga_set_state(rdev
, state
);
831 return VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
|
832 VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
834 return VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
838 * radeon_check_arguments - validate module params
840 * @rdev: radeon_device pointer
842 * Validates certain module parameters and updates
843 * the associated values used by the driver (all asics).
845 void radeon_check_arguments(struct radeon_device
*rdev
)
847 /* vramlimit must be a power of two */
848 switch (radeon_vram_limit
) {
863 dev_warn(rdev
->dev
, "vram limit (%d) must be a power of 2\n",
865 radeon_vram_limit
= 0;
868 radeon_vram_limit
= radeon_vram_limit
<< 20;
869 /* gtt size must be power of two and greater or equal to 32M */
870 switch (radeon_gart_size
) {
874 dev_warn(rdev
->dev
, "gart size (%d) too small forcing to 512M\n",
876 radeon_gart_size
= 512;
888 dev_warn(rdev
->dev
, "gart size (%d) must be a power of 2\n",
890 radeon_gart_size
= 512;
893 rdev
->mc
.gtt_size
= radeon_gart_size
* 1024 * 1024;
894 /* AGP mode can only be -1, 1, 2, 4, 8 */
895 switch (radeon_agpmode
) {
904 dev_warn(rdev
->dev
, "invalid AGP mode %d (valid mode: "
905 "-1, 0, 1, 2, 4, 8)\n", radeon_agpmode
);
912 * radeon_switcheroo_set_state - set switcheroo state
914 * @pdev: pci dev pointer
915 * @state: vga switcheroo state
917 * Callback for the switcheroo driver. Suspends or resumes the
918 * the asics before or after it is powered up using ACPI methods.
920 static void radeon_switcheroo_set_state(struct pci_dev
*pdev
, enum vga_switcheroo_state state
)
922 struct drm_device
*dev
= pci_get_drvdata(pdev
);
923 pm_message_t pmm
= { .event
= PM_EVENT_SUSPEND
};
924 if (state
== VGA_SWITCHEROO_ON
) {
925 printk(KERN_INFO
"radeon: switched on\n");
926 /* don't suspend or resume card normally */
927 dev
->switch_power_state
= DRM_SWITCH_POWER_CHANGING
;
928 radeon_resume_kms(dev
);
929 dev
->switch_power_state
= DRM_SWITCH_POWER_ON
;
930 drm_kms_helper_poll_enable(dev
);
932 printk(KERN_INFO
"radeon: switched off\n");
933 drm_kms_helper_poll_disable(dev
);
934 dev
->switch_power_state
= DRM_SWITCH_POWER_CHANGING
;
935 radeon_suspend_kms(dev
, pmm
);
936 dev
->switch_power_state
= DRM_SWITCH_POWER_OFF
;
941 * radeon_switcheroo_can_switch - see if switcheroo state can change
943 * @pdev: pci dev pointer
945 * Callback for the switcheroo driver. Check of the switcheroo
946 * state can be changed.
947 * Returns true if the state can be changed, false if not.
949 static bool radeon_switcheroo_can_switch(struct pci_dev
*pdev
)
951 struct drm_device
*dev
= pci_get_drvdata(pdev
);
954 spin_lock(&dev
->count_lock
);
955 can_switch
= (dev
->open_count
== 0);
956 spin_unlock(&dev
->count_lock
);
960 static const struct vga_switcheroo_client_ops radeon_switcheroo_ops
= {
961 .set_gpu_state
= radeon_switcheroo_set_state
,
963 .can_switch
= radeon_switcheroo_can_switch
,
967 * radeon_device_init - initialize the driver
969 * @rdev: radeon_device pointer
970 * @pdev: drm dev pointer
971 * @pdev: pci dev pointer
972 * @flags: driver flags
974 * Initializes the driver info and hw (all asics).
975 * Returns 0 for success or an error on failure.
976 * Called at driver startup.
978 int radeon_device_init(struct radeon_device
*rdev
,
979 struct drm_device
*ddev
,
980 struct pci_dev
*pdev
,
986 rdev
->shutdown
= false;
987 rdev
->dev
= &pdev
->dev
;
991 rdev
->family
= flags
& RADEON_FAMILY_MASK
;
992 rdev
->is_atom_bios
= false;
993 rdev
->usec_timeout
= RADEON_MAX_USEC_TIMEOUT
;
994 rdev
->mc
.gtt_size
= radeon_gart_size
* 1024 * 1024;
995 rdev
->accel_working
= false;
996 /* set up ring ids */
997 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++) {
998 rdev
->ring
[i
].idx
= i
;
1001 DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X).\n",
1002 radeon_family_name
[rdev
->family
], pdev
->vendor
, pdev
->device
,
1003 pdev
->subsystem_vendor
, pdev
->subsystem_device
);
1005 /* mutex initialization are all done here so we
1006 * can recall function without having locking issues */
1007 mutex_init(&rdev
->ring_lock
);
1008 mutex_init(&rdev
->dc_hw_i2c_mutex
);
1009 atomic_set(&rdev
->ih
.lock
, 0);
1010 mutex_init(&rdev
->gem
.mutex
);
1011 mutex_init(&rdev
->pm
.mutex
);
1012 mutex_init(&rdev
->gpu_clock_mutex
);
1013 init_rwsem(&rdev
->pm
.mclk_lock
);
1014 init_rwsem(&rdev
->exclusive_lock
);
1015 init_waitqueue_head(&rdev
->irq
.vblank_queue
);
1016 init_waitqueue_head(&rdev
->irq
.idle_queue
);
1017 r
= radeon_gem_init(rdev
);
1020 /* initialize vm here */
1021 mutex_init(&rdev
->vm_manager
.lock
);
1022 rdev
->vm_manager
.use_bitmap
= 1;
1023 rdev
->vm_manager
.max_pfn
= 1 << 20;
1024 INIT_LIST_HEAD(&rdev
->vm_manager
.lru_vm
);
1026 /* Set asic functions */
1027 r
= radeon_asic_init(rdev
);
1030 radeon_check_arguments(rdev
);
1032 /* all of the newer IGP chips have an internal gart
1033 * However some rs4xx report as AGP, so remove that here.
1035 if ((rdev
->family
>= CHIP_RS400
) &&
1036 (rdev
->flags
& RADEON_IS_IGP
)) {
1037 rdev
->flags
&= ~RADEON_IS_AGP
;
1040 if (rdev
->flags
& RADEON_IS_AGP
&& radeon_agpmode
== -1) {
1041 radeon_agp_disable(rdev
);
1044 /* set DMA mask + need_dma32 flags.
1045 * PCIE - can handle 40-bits.
1046 * IGP - can handle 40-bits
1047 * AGP - generally dma32 is safest
1048 * PCI - dma32 for legacy pci gart, 40 bits on newer asics
1050 rdev
->need_dma32
= false;
1051 if (rdev
->flags
& RADEON_IS_AGP
)
1052 rdev
->need_dma32
= true;
1053 if ((rdev
->flags
& RADEON_IS_PCI
) &&
1054 (rdev
->family
<= CHIP_RS740
))
1055 rdev
->need_dma32
= true;
1057 dma_bits
= rdev
->need_dma32
? 32 : 40;
1058 r
= pci_set_dma_mask(rdev
->pdev
, DMA_BIT_MASK(dma_bits
));
1060 rdev
->need_dma32
= true;
1062 printk(KERN_WARNING
"radeon: No suitable DMA available.\n");
1064 r
= pci_set_consistent_dma_mask(rdev
->pdev
, DMA_BIT_MASK(dma_bits
));
1066 pci_set_consistent_dma_mask(rdev
->pdev
, DMA_BIT_MASK(32));
1067 printk(KERN_WARNING
"radeon: No coherent DMA available.\n");
1070 /* Registers mapping */
1071 /* TODO: block userspace mapping of io register */
1072 rdev
->rmmio_base
= pci_resource_start(rdev
->pdev
, 2);
1073 rdev
->rmmio_size
= pci_resource_len(rdev
->pdev
, 2);
1074 rdev
->rmmio
= ioremap(rdev
->rmmio_base
, rdev
->rmmio_size
);
1075 if (rdev
->rmmio
== NULL
) {
1078 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)rdev
->rmmio_base
);
1079 DRM_INFO("register mmio size: %u\n", (unsigned)rdev
->rmmio_size
);
1081 /* io port mapping */
1082 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
1083 if (pci_resource_flags(rdev
->pdev
, i
) & IORESOURCE_IO
) {
1084 rdev
->rio_mem_size
= pci_resource_len(rdev
->pdev
, i
);
1085 rdev
->rio_mem
= pci_iomap(rdev
->pdev
, i
, rdev
->rio_mem_size
);
1089 if (rdev
->rio_mem
== NULL
)
1090 DRM_ERROR("Unable to find PCI I/O BAR\n");
1092 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
1093 /* this will fail for cards that aren't VGA class devices, just
1095 vga_client_register(rdev
->pdev
, rdev
, NULL
, radeon_vga_set_decode
);
1096 vga_switcheroo_register_client(rdev
->pdev
, &radeon_switcheroo_ops
);
1098 r
= radeon_init(rdev
);
1102 r
= radeon_ib_ring_tests(rdev
);
1104 DRM_ERROR("ib ring test failed (%d).\n", r
);
1106 if (rdev
->flags
& RADEON_IS_AGP
&& !rdev
->accel_working
) {
1107 /* Acceleration not working on AGP card try again
1108 * with fallback to PCI or PCIE GART
1110 radeon_asic_reset(rdev
);
1112 radeon_agp_disable(rdev
);
1113 r
= radeon_init(rdev
);
1117 if ((radeon_testing
& 1)) {
1118 radeon_test_moves(rdev
);
1120 if ((radeon_testing
& 2)) {
1121 radeon_test_syncing(rdev
);
1123 if (radeon_benchmarking
) {
1124 radeon_benchmark(rdev
, radeon_benchmarking
);
1129 static void radeon_debugfs_remove_files(struct radeon_device
*rdev
);
1132 * radeon_device_fini - tear down the driver
1134 * @rdev: radeon_device pointer
1136 * Tear down the driver info (all asics).
1137 * Called at driver shutdown.
1139 void radeon_device_fini(struct radeon_device
*rdev
)
1141 DRM_INFO("radeon: finishing device.\n");
1142 rdev
->shutdown
= true;
1143 /* evict vram memory */
1144 radeon_bo_evict_vram(rdev
);
1146 vga_switcheroo_unregister_client(rdev
->pdev
);
1147 vga_client_register(rdev
->pdev
, NULL
, NULL
, NULL
);
1149 pci_iounmap(rdev
->pdev
, rdev
->rio_mem
);
1150 rdev
->rio_mem
= NULL
;
1151 iounmap(rdev
->rmmio
);
1153 radeon_debugfs_remove_files(rdev
);
1161 * radeon_suspend_kms - initiate device suspend
1163 * @pdev: drm dev pointer
1164 * @state: suspend state
1166 * Puts the hw in the suspend state (all asics).
1167 * Returns 0 for success or an error on failure.
1168 * Called at driver suspend.
1170 int radeon_suspend_kms(struct drm_device
*dev
, pm_message_t state
)
1172 struct radeon_device
*rdev
;
1173 struct drm_crtc
*crtc
;
1174 struct drm_connector
*connector
;
1177 if (dev
== NULL
|| dev
->dev_private
== NULL
) {
1180 if (state
.event
== PM_EVENT_PRETHAW
) {
1183 rdev
= dev
->dev_private
;
1185 if (dev
->switch_power_state
== DRM_SWITCH_POWER_OFF
)
1188 drm_kms_helper_poll_disable(dev
);
1190 /* turn off display hw */
1191 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
1192 drm_helper_connector_dpms(connector
, DRM_MODE_DPMS_OFF
);
1195 /* unpin the front buffers */
1196 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
1197 struct radeon_framebuffer
*rfb
= to_radeon_framebuffer(crtc
->fb
);
1198 struct radeon_bo
*robj
;
1200 if (rfb
== NULL
|| rfb
->obj
== NULL
) {
1203 robj
= gem_to_radeon_bo(rfb
->obj
);
1204 /* don't unpin kernel fb objects */
1205 if (!radeon_fbdev_robj_is_fb(rdev
, robj
)) {
1206 r
= radeon_bo_reserve(robj
, false);
1208 radeon_bo_unpin(robj
);
1209 radeon_bo_unreserve(robj
);
1213 /* evict vram memory */
1214 radeon_bo_evict_vram(rdev
);
1216 mutex_lock(&rdev
->ring_lock
);
1217 /* wait for gpu to finish processing current batch */
1218 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++)
1219 radeon_fence_wait_empty_locked(rdev
, i
);
1220 mutex_unlock(&rdev
->ring_lock
);
1222 radeon_save_bios_scratch_regs(rdev
);
1224 radeon_pm_suspend(rdev
);
1225 radeon_suspend(rdev
);
1226 radeon_hpd_fini(rdev
);
1227 /* evict remaining vram memory */
1228 radeon_bo_evict_vram(rdev
);
1230 radeon_agp_suspend(rdev
);
1232 pci_save_state(dev
->pdev
);
1233 if (state
.event
== PM_EVENT_SUSPEND
) {
1234 /* Shut down the device */
1235 pci_disable_device(dev
->pdev
);
1236 pci_set_power_state(dev
->pdev
, PCI_D3hot
);
1239 radeon_fbdev_set_suspend(rdev
, 1);
1245 * radeon_resume_kms - initiate device resume
1247 * @pdev: drm dev pointer
1249 * Bring the hw back to operating state (all asics).
1250 * Returns 0 for success or an error on failure.
1251 * Called at driver resume.
1253 int radeon_resume_kms(struct drm_device
*dev
)
1255 struct drm_connector
*connector
;
1256 struct radeon_device
*rdev
= dev
->dev_private
;
1259 if (dev
->switch_power_state
== DRM_SWITCH_POWER_OFF
)
1263 pci_set_power_state(dev
->pdev
, PCI_D0
);
1264 pci_restore_state(dev
->pdev
);
1265 if (pci_enable_device(dev
->pdev
)) {
1269 /* resume AGP if in use */
1270 radeon_agp_resume(rdev
);
1271 radeon_resume(rdev
);
1273 r
= radeon_ib_ring_tests(rdev
);
1275 DRM_ERROR("ib ring test failed (%d).\n", r
);
1277 radeon_pm_resume(rdev
);
1278 radeon_restore_bios_scratch_regs(rdev
);
1280 radeon_fbdev_set_suspend(rdev
, 0);
1283 /* init dig PHYs, disp eng pll */
1284 if (rdev
->is_atom_bios
) {
1285 radeon_atom_encoder_init(rdev
);
1286 radeon_atom_disp_eng_pll_init(rdev
);
1288 /* reset hpd state */
1289 radeon_hpd_init(rdev
);
1290 /* blat the mode back in */
1291 drm_helper_resume_force_mode(dev
);
1292 /* turn on display hw */
1293 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
1294 drm_helper_connector_dpms(connector
, DRM_MODE_DPMS_ON
);
1297 drm_kms_helper_poll_enable(dev
);
1302 * radeon_gpu_reset - reset the asic
1304 * @rdev: radeon device pointer
1306 * Attempt the reset the GPU if it has hung (all asics).
1307 * Returns 0 for success or an error on failure.
1309 int radeon_gpu_reset(struct radeon_device
*rdev
)
1311 unsigned ring_sizes
[RADEON_NUM_RINGS
];
1312 uint32_t *ring_data
[RADEON_NUM_RINGS
];
1319 down_write(&rdev
->exclusive_lock
);
1320 radeon_save_bios_scratch_regs(rdev
);
1322 resched
= ttm_bo_lock_delayed_workqueue(&rdev
->mman
.bdev
);
1323 radeon_suspend(rdev
);
1325 for (i
= 0; i
< RADEON_NUM_RINGS
; ++i
) {
1326 ring_sizes
[i
] = radeon_ring_backup(rdev
, &rdev
->ring
[i
],
1328 if (ring_sizes
[i
]) {
1330 dev_info(rdev
->dev
, "Saved %d dwords of commands "
1331 "on ring %d.\n", ring_sizes
[i
], i
);
1336 r
= radeon_asic_reset(rdev
);
1338 dev_info(rdev
->dev
, "GPU reset succeeded, trying to resume\n");
1339 radeon_resume(rdev
);
1342 radeon_restore_bios_scratch_regs(rdev
);
1343 drm_helper_resume_force_mode(rdev
->ddev
);
1346 for (i
= 0; i
< RADEON_NUM_RINGS
; ++i
) {
1347 radeon_ring_restore(rdev
, &rdev
->ring
[i
],
1348 ring_sizes
[i
], ring_data
[i
]);
1350 ring_data
[i
] = NULL
;
1353 r
= radeon_ib_ring_tests(rdev
);
1355 dev_err(rdev
->dev
, "ib ring test failed (%d).\n", r
);
1358 radeon_suspend(rdev
);
1363 for (i
= 0; i
< RADEON_NUM_RINGS
; ++i
) {
1364 kfree(ring_data
[i
]);
1368 ttm_bo_unlock_delayed_workqueue(&rdev
->mman
.bdev
, resched
);
1370 /* bad news, how to tell it to userspace ? */
1371 dev_info(rdev
->dev
, "GPU reset failed\n");
1374 up_write(&rdev
->exclusive_lock
);
1382 int radeon_debugfs_add_files(struct radeon_device
*rdev
,
1383 struct drm_info_list
*files
,
1388 for (i
= 0; i
< rdev
->debugfs_count
; i
++) {
1389 if (rdev
->debugfs
[i
].files
== files
) {
1390 /* Already registered */
1395 i
= rdev
->debugfs_count
+ 1;
1396 if (i
> RADEON_DEBUGFS_MAX_COMPONENTS
) {
1397 DRM_ERROR("Reached maximum number of debugfs components.\n");
1398 DRM_ERROR("Report so we increase "
1399 "RADEON_DEBUGFS_MAX_COMPONENTS.\n");
1402 rdev
->debugfs
[rdev
->debugfs_count
].files
= files
;
1403 rdev
->debugfs
[rdev
->debugfs_count
].num_files
= nfiles
;
1404 rdev
->debugfs_count
= i
;
1405 #if defined(CONFIG_DEBUG_FS)
1406 drm_debugfs_create_files(files
, nfiles
,
1407 rdev
->ddev
->control
->debugfs_root
,
1408 rdev
->ddev
->control
);
1409 drm_debugfs_create_files(files
, nfiles
,
1410 rdev
->ddev
->primary
->debugfs_root
,
1411 rdev
->ddev
->primary
);
1416 static void radeon_debugfs_remove_files(struct radeon_device
*rdev
)
1418 #if defined(CONFIG_DEBUG_FS)
1421 for (i
= 0; i
< rdev
->debugfs_count
; i
++) {
1422 drm_debugfs_remove_files(rdev
->debugfs
[i
].files
,
1423 rdev
->debugfs
[i
].num_files
,
1424 rdev
->ddev
->control
);
1425 drm_debugfs_remove_files(rdev
->debugfs
[i
].files
,
1426 rdev
->debugfs
[i
].num_files
,
1427 rdev
->ddev
->primary
);
1432 #if defined(CONFIG_DEBUG_FS)
1433 int radeon_debugfs_init(struct drm_minor
*minor
)
1438 void radeon_debugfs_cleanup(struct drm_minor
*minor
)