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
30 #include "radeon_asic.h"
34 /* This files gather functions specifics to: r520,rv530,rv560,rv570,r580 */
36 static int r520_mc_wait_for_idle(struct radeon_device
*rdev
)
41 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
43 tmp
= RREG32_MC(R520_MC_STATUS
);
44 if (tmp
& R520_MC_STATUS_IDLE
) {
52 static void r520_gpu_init(struct radeon_device
*rdev
)
54 unsigned pipe_select_current
, gb_pipe_select
, tmp
;
56 rv515_vga_render_disable(rdev
);
58 * DST_PIPE_CONFIG 0x170C
59 * GB_TILE_CONFIG 0x4018
61 * GB_PIPE_SELECT 0x402C
62 * GB_PIPE_SELECT2 0x4124
64 * Z_PIPE_MASK 0x000000003
65 * GB_FIFO_SIZE2 0x4128
66 * SC_SFIFO_SIZE_SHIFT 0
67 * SC_SFIFO_SIZE_MASK 0x000000003
68 * SC_MFIFO_SIZE_SHIFT 2
69 * SC_MFIFO_SIZE_MASK 0x00000000C
70 * FG_SFIFO_SIZE_SHIFT 4
71 * FG_SFIFO_SIZE_MASK 0x000000030
72 * ZB_MFIFO_SIZE_SHIFT 6
73 * ZB_MFIFO_SIZE_MASK 0x0000000C0
77 /* workaround for RV530 */
78 if (rdev
->family
== CHIP_RV530
) {
81 r420_pipes_init(rdev
);
82 gb_pipe_select
= RREG32(R400_GB_PIPE_SELECT
);
83 tmp
= RREG32(R300_DST_PIPE_CONFIG
);
84 pipe_select_current
= (tmp
>> 2) & 3;
85 tmp
= (1 << pipe_select_current
) |
86 (((gb_pipe_select
>> 8) & 0xF) << 4);
87 WREG32_PLL(0x000D, tmp
);
88 if (r520_mc_wait_for_idle(rdev
)) {
89 printk(KERN_WARNING
"Failed to wait MC idle while "
90 "programming pipes. Bad things might happen.\n");
94 static void r520_vram_get_type(struct radeon_device
*rdev
)
98 rdev
->mc
.vram_width
= 128;
99 rdev
->mc
.vram_is_ddr
= true;
100 tmp
= RREG32_MC(R520_MC_CNTL0
);
101 switch ((tmp
& R520_MEM_NUM_CHANNELS_MASK
) >> R520_MEM_NUM_CHANNELS_SHIFT
) {
103 rdev
->mc
.vram_width
= 32;
106 rdev
->mc
.vram_width
= 64;
109 rdev
->mc
.vram_width
= 128;
112 rdev
->mc
.vram_width
= 256;
115 rdev
->mc
.vram_width
= 128;
118 if (tmp
& R520_MC_CHANNEL_SIZE
)
119 rdev
->mc
.vram_width
*= 2;
122 void r520_mc_init(struct radeon_device
*rdev
)
125 r520_vram_get_type(rdev
);
126 r100_vram_init_sizes(rdev
);
127 radeon_vram_location(rdev
, &rdev
->mc
, 0);
128 rdev
->mc
.gtt_base_align
= 0;
129 if (!(rdev
->flags
& RADEON_IS_AGP
))
130 radeon_gtt_location(rdev
, &rdev
->mc
);
131 radeon_update_bandwidth_info(rdev
);
134 void r520_mc_program(struct radeon_device
*rdev
)
136 struct rv515_mc_save save
;
138 /* Stops all mc clients */
139 rv515_mc_stop(rdev
, &save
);
141 /* Wait for mc idle */
142 if (r520_mc_wait_for_idle(rdev
))
143 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
144 /* Write VRAM size in case we are limiting it */
145 WREG32(R_0000F8_CONFIG_MEMSIZE
, rdev
->mc
.real_vram_size
);
146 /* Program MC, should be a 32bits limited address space */
147 WREG32_MC(R_000004_MC_FB_LOCATION
,
148 S_000004_MC_FB_START(rdev
->mc
.vram_start
>> 16) |
149 S_000004_MC_FB_TOP(rdev
->mc
.vram_end
>> 16));
150 WREG32(R_000134_HDP_FB_LOCATION
,
151 S_000134_HDP_FB_START(rdev
->mc
.vram_start
>> 16));
152 if (rdev
->flags
& RADEON_IS_AGP
) {
153 WREG32_MC(R_000005_MC_AGP_LOCATION
,
154 S_000005_MC_AGP_START(rdev
->mc
.gtt_start
>> 16) |
155 S_000005_MC_AGP_TOP(rdev
->mc
.gtt_end
>> 16));
156 WREG32_MC(R_000006_AGP_BASE
, lower_32_bits(rdev
->mc
.agp_base
));
157 WREG32_MC(R_000007_AGP_BASE_2
,
158 S_000007_AGP_BASE_ADDR_2(upper_32_bits(rdev
->mc
.agp_base
)));
160 WREG32_MC(R_000005_MC_AGP_LOCATION
, 0xFFFFFFFF);
161 WREG32_MC(R_000006_AGP_BASE
, 0);
162 WREG32_MC(R_000007_AGP_BASE_2
, 0);
165 rv515_mc_resume(rdev
, &save
);
168 static int r520_startup(struct radeon_device
*rdev
)
172 r520_mc_program(rdev
);
174 rv515_clock_startup(rdev
);
175 /* Initialize GPU configuration (# pipes, ...) */
177 /* Initialize GART (initialize after TTM so we can allocate
178 * memory through TTM but finalize after TTM) */
179 if (rdev
->flags
& RADEON_IS_PCIE
) {
180 r
= rv370_pcie_gart_enable(rdev
);
185 /* allocate wb buffer */
186 r
= radeon_wb_init(rdev
);
192 rdev
->config
.r300
.hdp_cntl
= RREG32(RADEON_HOST_PATH_CNTL
);
194 r
= r100_cp_init(rdev
, 1024 * 1024);
196 dev_err(rdev
->dev
, "failed initializing CP (%d).\n", r
);
199 r
= r100_ib_init(rdev
);
201 dev_err(rdev
->dev
, "failed initializing IB (%d).\n", r
);
207 int r520_resume(struct radeon_device
*rdev
)
209 /* Make sur GART are not working */
210 if (rdev
->flags
& RADEON_IS_PCIE
)
211 rv370_pcie_gart_disable(rdev
);
212 /* Resume clock before doing reset */
213 rv515_clock_startup(rdev
);
214 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
215 if (radeon_asic_reset(rdev
)) {
216 dev_warn(rdev
->dev
, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
217 RREG32(R_000E40_RBBM_STATUS
),
218 RREG32(R_0007C0_CP_STAT
));
221 atom_asic_init(rdev
->mode_info
.atom_context
);
222 /* Resume clock after posting */
223 rv515_clock_startup(rdev
);
224 /* Initialize surface registers */
225 radeon_surface_init(rdev
);
226 return r520_startup(rdev
);
229 int r520_init(struct radeon_device
*rdev
)
233 /* Initialize scratch registers */
234 radeon_scratch_init(rdev
);
235 /* Initialize surface registers */
236 radeon_surface_init(rdev
);
237 /* restore some register to sane defaults */
238 r100_restore_sanity(rdev
);
239 /* TODO: disable VGA need to use VGA request */
241 if (!radeon_get_bios(rdev
)) {
242 if (ASIC_IS_AVIVO(rdev
))
245 if (rdev
->is_atom_bios
) {
246 r
= radeon_atombios_init(rdev
);
250 dev_err(rdev
->dev
, "Expecting atombios for RV515 GPU\n");
253 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
254 if (radeon_asic_reset(rdev
)) {
256 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
257 RREG32(R_000E40_RBBM_STATUS
),
258 RREG32(R_0007C0_CP_STAT
));
260 /* check if cards are posted or not */
261 if (radeon_boot_test_post_card(rdev
) == false)
264 if (!radeon_card_posted(rdev
) && rdev
->bios
) {
265 DRM_INFO("GPU not posted. posting now...\n");
266 atom_asic_init(rdev
->mode_info
.atom_context
);
268 /* Initialize clocks */
269 radeon_get_clock_info(rdev
->ddev
);
271 if (rdev
->flags
& RADEON_IS_AGP
) {
272 r
= radeon_agp_init(rdev
);
274 radeon_agp_disable(rdev
);
277 /* initialize memory controller */
281 r
= radeon_fence_driver_init(rdev
);
284 r
= radeon_irq_kms_init(rdev
);
288 r
= radeon_bo_init(rdev
);
291 r
= rv370_pcie_gart_init(rdev
);
294 rv515_set_safe_registers(rdev
);
295 rdev
->accel_working
= true;
296 r
= r520_startup(rdev
);
298 /* Somethings want wront with the accel init stop accel */
299 dev_err(rdev
->dev
, "Disabling GPU acceleration\n");
301 radeon_wb_fini(rdev
);
303 radeon_irq_kms_fini(rdev
);
304 rv370_pcie_gart_fini(rdev
);
305 radeon_agp_fini(rdev
);
306 rdev
->accel_working
= false;