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>
30 #include <drm/drm_crtc_helper.h>
31 #include <drm/radeon_drm.h>
32 #include <linux/vgaarb.h>
33 #include "radeon_reg.h"
35 #include "radeon_asic.h"
39 * Clear GPU surface registers.
41 void radeon_surface_init(struct radeon_device
*rdev
)
43 /* FIXME: check this out */
44 if (rdev
->family
< CHIP_R600
) {
47 for (i
= 0; i
< 8; i
++) {
48 WREG32(RADEON_SURFACE0_INFO
+
49 i
* (RADEON_SURFACE1_INFO
- RADEON_SURFACE0_INFO
),
53 WREG32(RADEON_SURFACE_CNTL
, 0);
58 * GPU scratch registers helpers function.
60 void radeon_scratch_init(struct radeon_device
*rdev
)
64 /* FIXME: check this out */
65 if (rdev
->family
< CHIP_R300
) {
66 rdev
->scratch
.num_reg
= 5;
68 rdev
->scratch
.num_reg
= 7;
70 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
71 rdev
->scratch
.free
[i
] = true;
72 rdev
->scratch
.reg
[i
] = RADEON_SCRATCH_REG0
+ (i
* 4);
76 int radeon_scratch_get(struct radeon_device
*rdev
, uint32_t *reg
)
80 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
81 if (rdev
->scratch
.free
[i
]) {
82 rdev
->scratch
.free
[i
] = false;
83 *reg
= rdev
->scratch
.reg
[i
];
90 void radeon_scratch_free(struct radeon_device
*rdev
, uint32_t reg
)
94 for (i
= 0; i
< rdev
->scratch
.num_reg
; i
++) {
95 if (rdev
->scratch
.reg
[i
] == reg
) {
96 rdev
->scratch
.free
[i
] = true;
103 * MC common functions
105 int radeon_mc_setup(struct radeon_device
*rdev
)
109 /* Some chips have an "issue" with the memory controller, the
110 * location must be aligned to the size. We just align it down,
111 * too bad if we walk over the top of system memory, we don't
112 * use DMA without a remapped anyway.
113 * Affected chips are rv280, all r3xx, and all r4xx, but not IGP
115 /* FGLRX seems to setup like this, VRAM a 0, then GART.
118 * Note: from R6xx the address space is 40bits but here we only
119 * use 32bits (still have to see a card which would exhaust 4G
122 if (rdev
->mc
.vram_location
!= 0xFFFFFFFFUL
) {
123 /* vram location was already setup try to put gtt after
125 tmp
= rdev
->mc
.vram_location
+ rdev
->mc
.mc_vram_size
;
126 tmp
= (tmp
+ rdev
->mc
.gtt_size
- 1) & ~(rdev
->mc
.gtt_size
- 1);
127 if ((0xFFFFFFFFUL
- tmp
) >= rdev
->mc
.gtt_size
) {
128 rdev
->mc
.gtt_location
= tmp
;
130 if (rdev
->mc
.gtt_size
>= rdev
->mc
.vram_location
) {
131 printk(KERN_ERR
"[drm] GTT too big to fit "
132 "before or after vram location.\n");
135 rdev
->mc
.gtt_location
= 0;
137 } else if (rdev
->mc
.gtt_location
!= 0xFFFFFFFFUL
) {
138 /* gtt location was already setup try to put vram before
140 if (rdev
->mc
.mc_vram_size
< rdev
->mc
.gtt_location
) {
141 rdev
->mc
.vram_location
= 0;
143 tmp
= rdev
->mc
.gtt_location
+ rdev
->mc
.gtt_size
;
144 tmp
+= (rdev
->mc
.mc_vram_size
- 1);
145 tmp
&= ~(rdev
->mc
.mc_vram_size
- 1);
146 if ((0xFFFFFFFFUL
- tmp
) >= rdev
->mc
.mc_vram_size
) {
147 rdev
->mc
.vram_location
= tmp
;
149 printk(KERN_ERR
"[drm] vram too big to fit "
150 "before or after GTT location.\n");
155 rdev
->mc
.vram_location
= 0;
156 tmp
= rdev
->mc
.mc_vram_size
;
157 tmp
= (tmp
+ rdev
->mc
.gtt_size
- 1) & ~(rdev
->mc
.gtt_size
- 1);
158 rdev
->mc
.gtt_location
= tmp
;
160 rdev
->mc
.vram_start
= rdev
->mc
.vram_location
;
161 rdev
->mc
.vram_end
= rdev
->mc
.vram_location
+ rdev
->mc
.mc_vram_size
- 1;
162 rdev
->mc
.gtt_start
= rdev
->mc
.gtt_location
;
163 rdev
->mc
.gtt_end
= rdev
->mc
.gtt_location
+ rdev
->mc
.gtt_size
- 1;
164 DRM_INFO("radeon: VRAM %uM\n", (unsigned)(rdev
->mc
.mc_vram_size
>> 20));
165 DRM_INFO("radeon: VRAM from 0x%08X to 0x%08X\n",
166 (unsigned)rdev
->mc
.vram_location
,
167 (unsigned)(rdev
->mc
.vram_location
+ rdev
->mc
.mc_vram_size
- 1));
168 DRM_INFO("radeon: GTT %uM\n", (unsigned)(rdev
->mc
.gtt_size
>> 20));
169 DRM_INFO("radeon: GTT from 0x%08X to 0x%08X\n",
170 (unsigned)rdev
->mc
.gtt_location
,
171 (unsigned)(rdev
->mc
.gtt_location
+ rdev
->mc
.gtt_size
- 1));
177 * GPU helpers function.
179 bool radeon_card_posted(struct radeon_device
*rdev
)
183 /* first check CRTCs */
184 if (ASIC_IS_AVIVO(rdev
)) {
185 reg
= RREG32(AVIVO_D1CRTC_CONTROL
) |
186 RREG32(AVIVO_D2CRTC_CONTROL
);
187 if (reg
& AVIVO_CRTC_EN
) {
191 reg
= RREG32(RADEON_CRTC_GEN_CNTL
) |
192 RREG32(RADEON_CRTC2_GEN_CNTL
);
193 if (reg
& RADEON_CRTC_EN
) {
198 /* then check MEM_SIZE, in case the crtcs are off */
199 if (rdev
->family
>= CHIP_R600
)
200 reg
= RREG32(R600_CONFIG_MEMSIZE
);
202 reg
= RREG32(RADEON_CONFIG_MEMSIZE
);
211 int radeon_dummy_page_init(struct radeon_device
*rdev
)
213 rdev
->dummy_page
.page
= alloc_page(GFP_DMA32
| GFP_KERNEL
| __GFP_ZERO
);
214 if (rdev
->dummy_page
.page
== NULL
)
216 rdev
->dummy_page
.addr
= pci_map_page(rdev
->pdev
, rdev
->dummy_page
.page
,
217 0, PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
218 if (!rdev
->dummy_page
.addr
) {
219 __free_page(rdev
->dummy_page
.page
);
220 rdev
->dummy_page
.page
= NULL
;
226 void radeon_dummy_page_fini(struct radeon_device
*rdev
)
228 if (rdev
->dummy_page
.page
== NULL
)
230 pci_unmap_page(rdev
->pdev
, rdev
->dummy_page
.addr
,
231 PAGE_SIZE
, PCI_DMA_BIDIRECTIONAL
);
232 __free_page(rdev
->dummy_page
.page
);
233 rdev
->dummy_page
.page
= NULL
;
238 * Registers accessors functions.
240 uint32_t radeon_invalid_rreg(struct radeon_device
*rdev
, uint32_t reg
)
242 DRM_ERROR("Invalid callback to read register 0x%04X\n", reg
);
247 void radeon_invalid_wreg(struct radeon_device
*rdev
, uint32_t reg
, uint32_t v
)
249 DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n",
254 void radeon_register_accessor_init(struct radeon_device
*rdev
)
256 rdev
->mc_rreg
= &radeon_invalid_rreg
;
257 rdev
->mc_wreg
= &radeon_invalid_wreg
;
258 rdev
->pll_rreg
= &radeon_invalid_rreg
;
259 rdev
->pll_wreg
= &radeon_invalid_wreg
;
260 rdev
->pciep_rreg
= &radeon_invalid_rreg
;
261 rdev
->pciep_wreg
= &radeon_invalid_wreg
;
263 /* Don't change order as we are overridding accessor. */
264 if (rdev
->family
< CHIP_RV515
) {
265 rdev
->pcie_reg_mask
= 0xff;
267 rdev
->pcie_reg_mask
= 0x7ff;
269 /* FIXME: not sure here */
270 if (rdev
->family
<= CHIP_R580
) {
271 rdev
->pll_rreg
= &r100_pll_rreg
;
272 rdev
->pll_wreg
= &r100_pll_wreg
;
274 if (rdev
->family
>= CHIP_R420
) {
275 rdev
->mc_rreg
= &r420_mc_rreg
;
276 rdev
->mc_wreg
= &r420_mc_wreg
;
278 if (rdev
->family
>= CHIP_RV515
) {
279 rdev
->mc_rreg
= &rv515_mc_rreg
;
280 rdev
->mc_wreg
= &rv515_mc_wreg
;
282 if (rdev
->family
== CHIP_RS400
|| rdev
->family
== CHIP_RS480
) {
283 rdev
->mc_rreg
= &rs400_mc_rreg
;
284 rdev
->mc_wreg
= &rs400_mc_wreg
;
286 if (rdev
->family
== CHIP_RS690
|| rdev
->family
== CHIP_RS740
) {
287 rdev
->mc_rreg
= &rs690_mc_rreg
;
288 rdev
->mc_wreg
= &rs690_mc_wreg
;
290 if (rdev
->family
== CHIP_RS600
) {
291 rdev
->mc_rreg
= &rs600_mc_rreg
;
292 rdev
->mc_wreg
= &rs600_mc_wreg
;
294 if (rdev
->family
>= CHIP_R600
) {
295 rdev
->pciep_rreg
= &r600_pciep_rreg
;
296 rdev
->pciep_wreg
= &r600_pciep_wreg
;
304 int radeon_asic_init(struct radeon_device
*rdev
)
306 radeon_register_accessor_init(rdev
);
307 switch (rdev
->family
) {
317 rdev
->asic
= &r100_asic
;
323 rdev
->asic
= &r300_asic
;
324 if (rdev
->flags
& RADEON_IS_PCIE
) {
325 rdev
->asic
->gart_tlb_flush
= &rv370_pcie_gart_tlb_flush
;
326 rdev
->asic
->gart_set_page
= &rv370_pcie_gart_set_page
;
332 rdev
->asic
= &r420_asic
;
336 rdev
->asic
= &rs400_asic
;
339 rdev
->asic
= &rs600_asic
;
343 rdev
->asic
= &rs690_asic
;
346 rdev
->asic
= &rv515_asic
;
353 rdev
->asic
= &r520_asic
;
363 rdev
->asic
= &r600_asic
;
369 rdev
->asic
= &rv770_asic
;
372 /* FIXME: not supported yet */
380 * Wrapper around modesetting bits.
382 int radeon_clocks_init(struct radeon_device
*rdev
)
386 r
= radeon_static_clocks_init(rdev
->ddev
);
390 DRM_INFO("Clocks initialized !\n");
394 void radeon_clocks_fini(struct radeon_device
*rdev
)
398 /* ATOM accessor methods */
399 static uint32_t cail_pll_read(struct card_info
*info
, uint32_t reg
)
401 struct radeon_device
*rdev
= info
->dev
->dev_private
;
404 r
= rdev
->pll_rreg(rdev
, reg
);
408 static void cail_pll_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
410 struct radeon_device
*rdev
= info
->dev
->dev_private
;
412 rdev
->pll_wreg(rdev
, reg
, val
);
415 static uint32_t cail_mc_read(struct card_info
*info
, uint32_t reg
)
417 struct radeon_device
*rdev
= info
->dev
->dev_private
;
420 r
= rdev
->mc_rreg(rdev
, reg
);
424 static void cail_mc_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
426 struct radeon_device
*rdev
= info
->dev
->dev_private
;
428 rdev
->mc_wreg(rdev
, reg
, val
);
431 static void cail_reg_write(struct card_info
*info
, uint32_t reg
, uint32_t val
)
433 struct radeon_device
*rdev
= info
->dev
->dev_private
;
438 static uint32_t cail_reg_read(struct card_info
*info
, uint32_t reg
)
440 struct radeon_device
*rdev
= info
->dev
->dev_private
;
447 static struct card_info atom_card_info
= {
449 .reg_read
= cail_reg_read
,
450 .reg_write
= cail_reg_write
,
451 .mc_read
= cail_mc_read
,
452 .mc_write
= cail_mc_write
,
453 .pll_read
= cail_pll_read
,
454 .pll_write
= cail_pll_write
,
457 int radeon_atombios_init(struct radeon_device
*rdev
)
459 atom_card_info
.dev
= rdev
->ddev
;
460 rdev
->mode_info
.atom_context
= atom_parse(&atom_card_info
, rdev
->bios
);
461 radeon_atom_initialize_bios_scratch_regs(rdev
->ddev
);
465 void radeon_atombios_fini(struct radeon_device
*rdev
)
467 kfree(rdev
->mode_info
.atom_context
);
470 int radeon_combios_init(struct radeon_device
*rdev
)
472 radeon_combios_initialize_bios_scratch_regs(rdev
->ddev
);
476 void radeon_combios_fini(struct radeon_device
*rdev
)
480 /* if we get transitioned to only one device, tak VGA back */
481 static unsigned int radeon_vga_set_decode(void *cookie
, bool state
)
483 struct radeon_device
*rdev
= cookie
;
484 radeon_vga_set_state(rdev
, state
);
486 return VGA_RSRC_LEGACY_IO
| VGA_RSRC_LEGACY_MEM
|
487 VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
489 return VGA_RSRC_NORMAL_IO
| VGA_RSRC_NORMAL_MEM
;
492 void radeon_agp_disable(struct radeon_device
*rdev
)
494 rdev
->flags
&= ~RADEON_IS_AGP
;
495 if (rdev
->family
>= CHIP_R600
) {
496 DRM_INFO("Forcing AGP to PCIE mode\n");
497 rdev
->flags
|= RADEON_IS_PCIE
;
498 } else if (rdev
->family
>= CHIP_RV515
||
499 rdev
->family
== CHIP_RV380
||
500 rdev
->family
== CHIP_RV410
||
501 rdev
->family
== CHIP_R423
) {
502 DRM_INFO("Forcing AGP to PCIE mode\n");
503 rdev
->flags
|= RADEON_IS_PCIE
;
504 rdev
->asic
->gart_tlb_flush
= &rv370_pcie_gart_tlb_flush
;
505 rdev
->asic
->gart_set_page
= &rv370_pcie_gart_set_page
;
507 DRM_INFO("Forcing AGP to PCI mode\n");
508 rdev
->flags
|= RADEON_IS_PCI
;
509 rdev
->asic
->gart_tlb_flush
= &r100_pci_gart_tlb_flush
;
510 rdev
->asic
->gart_set_page
= &r100_pci_gart_set_page
;
517 int radeon_device_init(struct radeon_device
*rdev
,
518 struct drm_device
*ddev
,
519 struct pci_dev
*pdev
,
525 DRM_INFO("radeon: Initializing kernel modesetting.\n");
526 rdev
->shutdown
= false;
527 rdev
->dev
= &pdev
->dev
;
531 rdev
->family
= flags
& RADEON_FAMILY_MASK
;
532 rdev
->is_atom_bios
= false;
533 rdev
->usec_timeout
= RADEON_MAX_USEC_TIMEOUT
;
534 rdev
->mc
.gtt_size
= radeon_gart_size
* 1024 * 1024;
535 rdev
->gpu_lockup
= false;
536 rdev
->accel_working
= false;
537 /* mutex initialization are all done here so we
538 * can recall function without having locking issues */
539 mutex_init(&rdev
->cs_mutex
);
540 mutex_init(&rdev
->ib_pool
.mutex
);
541 mutex_init(&rdev
->cp
.mutex
);
542 rwlock_init(&rdev
->fence_drv
.lock
);
543 INIT_LIST_HEAD(&rdev
->gem
.objects
);
545 /* Set asic functions */
546 r
= radeon_asic_init(rdev
);
551 if (radeon_agpmode
== -1) {
552 radeon_agp_disable(rdev
);
555 /* set DMA mask + need_dma32 flags.
556 * PCIE - can handle 40-bits.
557 * IGP - can handle 40-bits (in theory)
558 * AGP - generally dma32 is safest
561 rdev
->need_dma32
= false;
562 if (rdev
->flags
& RADEON_IS_AGP
)
563 rdev
->need_dma32
= true;
564 if (rdev
->flags
& RADEON_IS_PCI
)
565 rdev
->need_dma32
= true;
567 dma_bits
= rdev
->need_dma32
? 32 : 40;
568 r
= pci_set_dma_mask(rdev
->pdev
, DMA_BIT_MASK(dma_bits
));
570 printk(KERN_WARNING
"radeon: No suitable DMA available.\n");
573 /* Registers mapping */
574 /* TODO: block userspace mapping of io register */
575 rdev
->rmmio_base
= drm_get_resource_start(rdev
->ddev
, 2);
576 rdev
->rmmio_size
= drm_get_resource_len(rdev
->ddev
, 2);
577 rdev
->rmmio
= ioremap(rdev
->rmmio_base
, rdev
->rmmio_size
);
578 if (rdev
->rmmio
== NULL
) {
581 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)rdev
->rmmio_base
);
582 DRM_INFO("register mmio size: %u\n", (unsigned)rdev
->rmmio_size
);
584 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
585 r
= vga_client_register(rdev
->pdev
, rdev
, NULL
, radeon_vga_set_decode
);
590 r
= radeon_init(rdev
);
594 if (rdev
->flags
& RADEON_IS_AGP
&& !rdev
->accel_working
) {
595 /* Acceleration not working on AGP card try again
596 * with fallback to PCI or PCIE GART
598 radeon_gpu_reset(rdev
);
600 radeon_agp_disable(rdev
);
601 r
= radeon_init(rdev
);
605 if (radeon_testing
) {
606 radeon_test_moves(rdev
);
608 if (radeon_benchmarking
) {
609 radeon_benchmark(rdev
);
614 void radeon_device_fini(struct radeon_device
*rdev
)
616 DRM_INFO("radeon: finishing device.\n");
617 rdev
->shutdown
= true;
619 vga_client_register(rdev
->pdev
, NULL
, NULL
, NULL
);
620 iounmap(rdev
->rmmio
);
628 int radeon_suspend_kms(struct drm_device
*dev
, pm_message_t state
)
630 struct radeon_device
*rdev
= dev
->dev_private
;
631 struct drm_crtc
*crtc
;
633 if (dev
== NULL
|| rdev
== NULL
) {
636 if (state
.event
== PM_EVENT_PRETHAW
) {
639 /* unpin the front buffers */
640 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
641 struct radeon_framebuffer
*rfb
= to_radeon_framebuffer(crtc
->fb
);
642 struct radeon_object
*robj
;
644 if (rfb
== NULL
|| rfb
->obj
== NULL
) {
647 robj
= rfb
->obj
->driver_private
;
648 if (robj
!= rdev
->fbdev_robj
) {
649 radeon_object_unpin(robj
);
652 /* evict vram memory */
653 radeon_object_evict_vram(rdev
);
654 /* wait for gpu to finish processing current batch */
655 radeon_fence_wait_last(rdev
);
657 radeon_save_bios_scratch_regs(rdev
);
659 radeon_suspend(rdev
);
660 /* evict remaining vram memory */
661 radeon_object_evict_vram(rdev
);
663 pci_save_state(dev
->pdev
);
664 if (state
.event
== PM_EVENT_SUSPEND
) {
665 /* Shut down the device */
666 pci_disable_device(dev
->pdev
);
667 pci_set_power_state(dev
->pdev
, PCI_D3hot
);
669 acquire_console_sem();
670 fb_set_suspend(rdev
->fbdev_info
, 1);
671 release_console_sem();
675 int radeon_resume_kms(struct drm_device
*dev
)
677 struct radeon_device
*rdev
= dev
->dev_private
;
679 acquire_console_sem();
680 pci_set_power_state(dev
->pdev
, PCI_D0
);
681 pci_restore_state(dev
->pdev
);
682 if (pci_enable_device(dev
->pdev
)) {
683 release_console_sem();
686 pci_set_master(dev
->pdev
);
688 radeon_restore_bios_scratch_regs(rdev
);
689 fb_set_suspend(rdev
->fbdev_info
, 0);
690 release_console_sem();
692 /* blat the mode back in */
693 drm_helper_resume_force_mode(dev
);
701 struct radeon_debugfs
{
702 struct drm_info_list
*files
;
705 static struct radeon_debugfs _radeon_debugfs
[RADEON_DEBUGFS_MAX_NUM_FILES
];
706 static unsigned _radeon_debugfs_count
= 0;
708 int radeon_debugfs_add_files(struct radeon_device
*rdev
,
709 struct drm_info_list
*files
,
714 for (i
= 0; i
< _radeon_debugfs_count
; i
++) {
715 if (_radeon_debugfs
[i
].files
== files
) {
716 /* Already registered */
720 if ((_radeon_debugfs_count
+ nfiles
) > RADEON_DEBUGFS_MAX_NUM_FILES
) {
721 DRM_ERROR("Reached maximum number of debugfs files.\n");
722 DRM_ERROR("Report so we increase RADEON_DEBUGFS_MAX_NUM_FILES.\n");
725 _radeon_debugfs
[_radeon_debugfs_count
].files
= files
;
726 _radeon_debugfs
[_radeon_debugfs_count
].num_files
= nfiles
;
727 _radeon_debugfs_count
++;
728 #if defined(CONFIG_DEBUG_FS)
729 drm_debugfs_create_files(files
, nfiles
,
730 rdev
->ddev
->control
->debugfs_root
,
731 rdev
->ddev
->control
);
732 drm_debugfs_create_files(files
, nfiles
,
733 rdev
->ddev
->primary
->debugfs_root
,
734 rdev
->ddev
->primary
);
739 #if defined(CONFIG_DEBUG_FS)
740 int radeon_debugfs_init(struct drm_minor
*minor
)
745 void radeon_debugfs_cleanup(struct drm_minor
*minor
)
749 for (i
= 0; i
< _radeon_debugfs_count
; i
++) {
750 drm_debugfs_remove_files(_radeon_debugfs
[i
].files
,
751 _radeon_debugfs
[i
].num_files
, minor
);