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/seq_file.h>
29 #include <linux/slab.h>
31 #include "radeon_reg.h"
33 #include "radeon_asic.h"
37 #include "r420_reg_safe.h"
39 static void r420_set_reg_safe(struct radeon_device
*rdev
)
41 rdev
->config
.r300
.reg_safe_bm
= r420_reg_safe_bm
;
42 rdev
->config
.r300
.reg_safe_bm_size
= ARRAY_SIZE(r420_reg_safe_bm
);
45 void r420_pipes_init(struct radeon_device
*rdev
)
48 unsigned gb_pipe_select
;
51 /* GA_ENHANCE workaround TCL deadlock issue */
52 WREG32(R300_GA_ENHANCE
, R300_GA_DEADLOCK_CNTL
| R300_GA_FASTSYNC_CNTL
|
54 /* add idle wait as per freedesktop.org bug 24041 */
55 if (r100_gui_wait_for_idle(rdev
)) {
56 printk(KERN_WARNING
"Failed to wait GUI idle while "
57 "programming pipes. Bad things might happen.\n");
59 /* get max number of pipes */
60 gb_pipe_select
= RREG32(0x402C);
61 num_pipes
= ((gb_pipe_select
>> 12) & 3) + 1;
63 /* SE chips have 1 pipe */
64 if ((rdev
->pdev
->device
== 0x5e4c) ||
65 (rdev
->pdev
->device
== 0x5e4f))
68 rdev
->num_gb_pipes
= num_pipes
;
87 WREG32(R500_SU_REG_DEST
, (1 << num_pipes
) - 1);
88 /* Sub pixel 1/12 so we can have 4K rendering according to doc */
89 tmp
|= R300_TILE_SIZE_16
| R300_ENABLE_TILING
;
90 WREG32(R300_GB_TILE_CONFIG
, tmp
);
91 if (r100_gui_wait_for_idle(rdev
)) {
92 printk(KERN_WARNING
"Failed to wait GUI idle while "
93 "programming pipes. Bad things might happen.\n");
96 tmp
= RREG32(R300_DST_PIPE_CONFIG
);
97 WREG32(R300_DST_PIPE_CONFIG
, tmp
| R300_PIPE_AUTO_CONFIG
);
99 WREG32(R300_RB2D_DSTCACHE_MODE
,
100 RREG32(R300_RB2D_DSTCACHE_MODE
) |
101 R300_DC_AUTOFLUSH_ENABLE
|
102 R300_DC_DC_DISABLE_IGNORE_PE
);
104 if (r100_gui_wait_for_idle(rdev
)) {
105 printk(KERN_WARNING
"Failed to wait GUI idle while "
106 "programming pipes. Bad things might happen.\n");
109 if (rdev
->family
== CHIP_RV530
) {
110 tmp
= RREG32(RV530_GB_PIPE_SELECT2
);
112 rdev
->num_z_pipes
= 2;
114 rdev
->num_z_pipes
= 1;
116 rdev
->num_z_pipes
= 1;
118 DRM_INFO("radeon: %d quad pipes, %d z pipes initialized.\n",
119 rdev
->num_gb_pipes
, rdev
->num_z_pipes
);
122 u32
r420_mc_rreg(struct radeon_device
*rdev
, u32 reg
)
126 WREG32(R_0001F8_MC_IND_INDEX
, S_0001F8_MC_IND_ADDR(reg
));
127 r
= RREG32(R_0001FC_MC_IND_DATA
);
131 void r420_mc_wreg(struct radeon_device
*rdev
, u32 reg
, u32 v
)
133 WREG32(R_0001F8_MC_IND_INDEX
, S_0001F8_MC_IND_ADDR(reg
) |
134 S_0001F8_MC_IND_WR_EN(1));
135 WREG32(R_0001FC_MC_IND_DATA
, v
);
138 static void r420_debugfs(struct radeon_device
*rdev
)
140 if (r100_debugfs_rbbm_init(rdev
)) {
141 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
143 if (r420_debugfs_pipes_info_init(rdev
)) {
144 DRM_ERROR("Failed to register debugfs file for pipes !\n");
148 static void r420_clock_resume(struct radeon_device
*rdev
)
152 if (radeon_dynclks
!= -1 && radeon_dynclks
)
153 radeon_atom_set_clock_gating(rdev
, 1);
154 sclk_cntl
= RREG32_PLL(R_00000D_SCLK_CNTL
);
155 sclk_cntl
|= S_00000D_FORCE_CP(1) | S_00000D_FORCE_VIP(1);
156 if (rdev
->family
== CHIP_R420
)
157 sclk_cntl
|= S_00000D_FORCE_PX(1) | S_00000D_FORCE_TX(1);
158 WREG32_PLL(R_00000D_SCLK_CNTL
, sclk_cntl
);
161 static void r420_cp_errata_init(struct radeon_device
*rdev
)
163 /* RV410 and R420 can lock up if CP DMA to host memory happens
164 * while the 2D engine is busy.
166 * The proper workaround is to queue a RESYNC at the beginning
167 * of the CP init, apparently.
169 radeon_scratch_get(rdev
, &rdev
->config
.r300
.resync_scratch
);
170 radeon_ring_lock(rdev
, 8);
171 radeon_ring_write(rdev
, PACKET0(R300_CP_RESYNC_ADDR
, 1));
172 radeon_ring_write(rdev
, rdev
->config
.r300
.resync_scratch
);
173 radeon_ring_write(rdev
, 0xDEADBEEF);
174 radeon_ring_unlock_commit(rdev
);
177 static void r420_cp_errata_fini(struct radeon_device
*rdev
)
179 /* Catch the RESYNC we dispatched all the way back,
180 * at the very beginning of the CP init.
182 radeon_ring_lock(rdev
, 8);
183 radeon_ring_write(rdev
, PACKET0(R300_RB3D_DSTCACHE_CTLSTAT
, 0));
184 radeon_ring_write(rdev
, R300_RB3D_DC_FINISH
);
185 radeon_ring_unlock_commit(rdev
);
186 radeon_scratch_free(rdev
, rdev
->config
.r300
.resync_scratch
);
189 static int r420_startup(struct radeon_device
*rdev
)
193 /* set common regs */
194 r100_set_common_regs(rdev
);
196 r300_mc_program(rdev
);
198 r420_clock_resume(rdev
);
199 /* Initialize GART (initialize after TTM so we can allocate
200 * memory through TTM but finalize after TTM) */
201 if (rdev
->flags
& RADEON_IS_PCIE
) {
202 r
= rv370_pcie_gart_enable(rdev
);
206 if (rdev
->flags
& RADEON_IS_PCI
) {
207 r
= r100_pci_gart_enable(rdev
);
211 r420_pipes_init(rdev
);
214 rdev
->config
.r300
.hdp_cntl
= RREG32(RADEON_HOST_PATH_CNTL
);
216 r
= r100_cp_init(rdev
, 1024 * 1024);
218 dev_err(rdev
->dev
, "failled initializing CP (%d).\n", r
);
221 r420_cp_errata_init(rdev
);
222 r
= r100_wb_init(rdev
);
224 dev_err(rdev
->dev
, "failled initializing WB (%d).\n", r
);
226 r
= r100_ib_init(rdev
);
228 dev_err(rdev
->dev
, "failled initializing IB (%d).\n", r
);
234 int r420_resume(struct radeon_device
*rdev
)
236 /* Make sur GART are not working */
237 if (rdev
->flags
& RADEON_IS_PCIE
)
238 rv370_pcie_gart_disable(rdev
);
239 if (rdev
->flags
& RADEON_IS_PCI
)
240 r100_pci_gart_disable(rdev
);
241 /* Resume clock before doing reset */
242 r420_clock_resume(rdev
);
243 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
244 if (radeon_gpu_reset(rdev
)) {
245 dev_warn(rdev
->dev
, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
246 RREG32(R_000E40_RBBM_STATUS
),
247 RREG32(R_0007C0_CP_STAT
));
249 /* check if cards are posted or not */
250 if (rdev
->is_atom_bios
) {
251 atom_asic_init(rdev
->mode_info
.atom_context
);
253 radeon_combios_asic_init(rdev
->ddev
);
255 /* Resume clock after posting */
256 r420_clock_resume(rdev
);
257 /* Initialize surface registers */
258 radeon_surface_init(rdev
);
259 return r420_startup(rdev
);
262 int r420_suspend(struct radeon_device
*rdev
)
264 r420_cp_errata_fini(rdev
);
265 r100_cp_disable(rdev
);
266 r100_wb_disable(rdev
);
267 r100_irq_disable(rdev
);
268 if (rdev
->flags
& RADEON_IS_PCIE
)
269 rv370_pcie_gart_disable(rdev
);
270 if (rdev
->flags
& RADEON_IS_PCI
)
271 r100_pci_gart_disable(rdev
);
275 void r420_fini(struct radeon_device
*rdev
)
277 radeon_pm_fini(rdev
);
281 radeon_gem_fini(rdev
);
282 if (rdev
->flags
& RADEON_IS_PCIE
)
283 rv370_pcie_gart_fini(rdev
);
284 if (rdev
->flags
& RADEON_IS_PCI
)
285 r100_pci_gart_fini(rdev
);
286 radeon_agp_fini(rdev
);
287 radeon_irq_kms_fini(rdev
);
288 radeon_fence_driver_fini(rdev
);
289 radeon_bo_fini(rdev
);
290 if (rdev
->is_atom_bios
) {
291 radeon_atombios_fini(rdev
);
293 radeon_combios_fini(rdev
);
299 int r420_init(struct radeon_device
*rdev
)
303 /* Initialize scratch registers */
304 radeon_scratch_init(rdev
);
305 /* Initialize surface registers */
306 radeon_surface_init(rdev
);
307 /* TODO: disable VGA need to use VGA request */
309 if (!radeon_get_bios(rdev
)) {
310 if (ASIC_IS_AVIVO(rdev
))
313 if (rdev
->is_atom_bios
) {
314 r
= radeon_atombios_init(rdev
);
319 r
= radeon_combios_init(rdev
);
324 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
325 if (radeon_gpu_reset(rdev
)) {
327 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
328 RREG32(R_000E40_RBBM_STATUS
),
329 RREG32(R_0007C0_CP_STAT
));
331 /* check if cards are posted or not */
332 if (radeon_boot_test_post_card(rdev
) == false)
335 /* Initialize clocks */
336 radeon_get_clock_info(rdev
->ddev
);
337 /* Initialize power management */
338 radeon_pm_init(rdev
);
340 if (rdev
->flags
& RADEON_IS_AGP
) {
341 r
= radeon_agp_init(rdev
);
343 radeon_agp_disable(rdev
);
346 /* initialize memory controller */
350 r
= radeon_fence_driver_init(rdev
);
354 r
= radeon_irq_kms_init(rdev
);
359 r
= radeon_bo_init(rdev
);
363 if (rdev
->family
== CHIP_R420
)
364 r100_enable_bm(rdev
);
366 if (rdev
->flags
& RADEON_IS_PCIE
) {
367 r
= rv370_pcie_gart_init(rdev
);
371 if (rdev
->flags
& RADEON_IS_PCI
) {
372 r
= r100_pci_gart_init(rdev
);
376 r420_set_reg_safe(rdev
);
377 rdev
->accel_working
= true;
378 r
= r420_startup(rdev
);
380 /* Somethings want wront with the accel init stop accel */
381 dev_err(rdev
->dev
, "Disabling GPU acceleration\n");
385 radeon_irq_kms_fini(rdev
);
386 if (rdev
->flags
& RADEON_IS_PCIE
)
387 rv370_pcie_gart_fini(rdev
);
388 if (rdev
->flags
& RADEON_IS_PCI
)
389 r100_pci_gart_fini(rdev
);
390 radeon_agp_fini(rdev
);
391 rdev
->accel_working
= false;
399 #if defined(CONFIG_DEBUG_FS)
400 static int r420_debugfs_pipes_info(struct seq_file
*m
, void *data
)
402 struct drm_info_node
*node
= (struct drm_info_node
*) m
->private;
403 struct drm_device
*dev
= node
->minor
->dev
;
404 struct radeon_device
*rdev
= dev
->dev_private
;
407 tmp
= RREG32(R400_GB_PIPE_SELECT
);
408 seq_printf(m
, "GB_PIPE_SELECT 0x%08x\n", tmp
);
409 tmp
= RREG32(R300_GB_TILE_CONFIG
);
410 seq_printf(m
, "GB_TILE_CONFIG 0x%08x\n", tmp
);
411 tmp
= RREG32(R300_DST_PIPE_CONFIG
);
412 seq_printf(m
, "DST_PIPE_CONFIG 0x%08x\n", tmp
);
416 static struct drm_info_list r420_pipes_info_list
[] = {
417 {"r420_pipes_info", r420_debugfs_pipes_info
, 0, NULL
},
421 int r420_debugfs_pipes_info_init(struct radeon_device
*rdev
)
423 #if defined(CONFIG_DEBUG_FS)
424 return radeon_debugfs_add_files(rdev
, r420_pipes_info_list
, 1);