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>
33 /* This files gather functions specifics to : rs400,rs480 */
34 static int rs400_debugfs_pcie_gart_info_init(struct radeon_device
*rdev
);
36 void rs400_gart_adjust_size(struct radeon_device
*rdev
)
39 switch (rdev
->mc
.gtt_size
/(1024*1024)) {
49 DRM_ERROR("Unable to use IGP GART size %uM\n",
50 (unsigned)(rdev
->mc
.gtt_size
>> 20));
51 DRM_ERROR("Valid GART size for IGP are 32M,64M,128M,256M,512M,1G,2G\n");
52 DRM_ERROR("Forcing to 32M GART size\n");
53 rdev
->mc
.gtt_size
= 32 * 1024 * 1024;
56 if (rdev
->family
== CHIP_RS400
|| rdev
->family
== CHIP_RS480
) {
57 /* FIXME: RS400 & RS480 seems to have issue with GART size
58 * if 4G of system memory (needs more testing) */
59 rdev
->mc
.gtt_size
= 32 * 1024 * 1024;
60 DRM_ERROR("Forcing to 32M GART size (because of ASIC bug ?)\n");
64 void rs400_gart_tlb_flush(struct radeon_device
*rdev
)
67 unsigned int timeout
= rdev
->usec_timeout
;
69 WREG32_MC(RS480_GART_CACHE_CNTRL
, RS480_GART_CACHE_INVALIDATE
);
71 tmp
= RREG32_MC(RS480_GART_CACHE_CNTRL
);
72 if ((tmp
& RS480_GART_CACHE_INVALIDATE
) == 0)
76 } while (timeout
> 0);
77 WREG32_MC(RS480_GART_CACHE_CNTRL
, 0);
80 int rs400_gart_init(struct radeon_device
*rdev
)
84 if (rdev
->gart
.table
.ram
.ptr
) {
85 WARN(1, "RS400 GART already initialized.\n");
89 switch(rdev
->mc
.gtt_size
/ (1024 * 1024)) {
101 /* Initialize common gart structure */
102 r
= radeon_gart_init(rdev
);
105 if (rs400_debugfs_pcie_gart_info_init(rdev
))
106 DRM_ERROR("Failed to register debugfs file for RS400 GART !\n");
107 rdev
->gart
.table_size
= rdev
->gart
.num_gpu_pages
* 4;
108 return radeon_gart_table_ram_alloc(rdev
);
111 int rs400_gart_enable(struct radeon_device
*rdev
)
116 tmp
= RREG32_MC(RS690_AIC_CTRL_SCRATCH
);
117 tmp
|= RS690_DIS_OUT_OF_PCI_GART_ACCESS
;
118 WREG32_MC(RS690_AIC_CTRL_SCRATCH
, tmp
);
119 /* Check gart size */
120 switch(rdev
->mc
.gtt_size
/ (1024 * 1024)) {
122 size_reg
= RS480_VA_SIZE_32MB
;
125 size_reg
= RS480_VA_SIZE_64MB
;
128 size_reg
= RS480_VA_SIZE_128MB
;
131 size_reg
= RS480_VA_SIZE_256MB
;
134 size_reg
= RS480_VA_SIZE_512MB
;
137 size_reg
= RS480_VA_SIZE_1GB
;
140 size_reg
= RS480_VA_SIZE_2GB
;
145 /* It should be fine to program it to max value */
146 if (rdev
->family
== CHIP_RS690
|| (rdev
->family
== CHIP_RS740
)) {
147 WREG32_MC(RS690_MCCFG_AGP_BASE
, 0xFFFFFFFF);
148 WREG32_MC(RS690_MCCFG_AGP_BASE_2
, 0);
150 WREG32(RADEON_AGP_BASE
, 0xFFFFFFFF);
151 WREG32(RS480_AGP_BASE_2
, 0);
153 tmp
= rdev
->mc
.gtt_location
+ rdev
->mc
.gtt_size
- 1;
154 tmp
= REG_SET(RS690_MC_AGP_TOP
, tmp
>> 16);
155 tmp
|= REG_SET(RS690_MC_AGP_START
, rdev
->mc
.gtt_location
>> 16);
156 if ((rdev
->family
== CHIP_RS690
) || (rdev
->family
== CHIP_RS740
)) {
157 WREG32_MC(RS690_MCCFG_AGP_LOCATION
, tmp
);
158 tmp
= RREG32(RADEON_BUS_CNTL
) & ~RS600_BUS_MASTER_DIS
;
159 WREG32(RADEON_BUS_CNTL
, tmp
);
161 WREG32(RADEON_MC_AGP_LOCATION
, tmp
);
162 tmp
= RREG32(RADEON_BUS_CNTL
) & ~RADEON_BUS_MASTER_DIS
;
163 WREG32(RADEON_BUS_CNTL
, tmp
);
165 /* Table should be in 32bits address space so ignore bits above. */
166 tmp
= (u32
)rdev
->gart
.table_addr
& 0xfffff000;
167 tmp
|= (upper_32_bits(rdev
->gart
.table_addr
) & 0xff) << 4;
169 WREG32_MC(RS480_GART_BASE
, tmp
);
170 /* TODO: more tweaking here */
171 WREG32_MC(RS480_GART_FEATURE_ID
,
173 RS480_GTW_LAC_EN
| RS480_1LEVEL_GART
));
174 /* Disable snooping */
175 WREG32_MC(RS480_AGP_MODE_CNTL
,
176 (1 << RS480_REQ_TYPE_SNOOP_SHIFT
) | RS480_REQ_TYPE_SNOOP_DIS
);
177 /* Disable AGP mode */
178 /* FIXME: according to doc we should set HIDE_MMCFG_BAR=0,
179 * AGPMODE30=0 & AGP30ENHANCED=0 in NB_CNTL */
180 if ((rdev
->family
== CHIP_RS690
) || (rdev
->family
== CHIP_RS740
)) {
181 WREG32_MC(RS480_MC_MISC_CNTL
,
182 (RS480_GART_INDEX_REG_EN
| RS690_BLOCK_GFX_D3_EN
));
184 WREG32_MC(RS480_MC_MISC_CNTL
, RS480_GART_INDEX_REG_EN
);
187 WREG32_MC(RS480_AGP_ADDRESS_SPACE_SIZE
, (RS480_GART_EN
| size_reg
));
188 rs400_gart_tlb_flush(rdev
);
189 rdev
->gart
.ready
= true;
193 void rs400_gart_disable(struct radeon_device
*rdev
)
197 tmp
= RREG32_MC(RS690_AIC_CTRL_SCRATCH
);
198 tmp
|= RS690_DIS_OUT_OF_PCI_GART_ACCESS
;
199 WREG32_MC(RS690_AIC_CTRL_SCRATCH
, tmp
);
200 WREG32_MC(RS480_AGP_ADDRESS_SPACE_SIZE
, 0);
203 void rs400_gart_fini(struct radeon_device
*rdev
)
205 rs400_gart_disable(rdev
);
206 radeon_gart_table_ram_free(rdev
);
207 radeon_gart_fini(rdev
);
210 int rs400_gart_set_page(struct radeon_device
*rdev
, int i
, uint64_t addr
)
214 if (i
< 0 || i
> rdev
->gart
.num_gpu_pages
) {
218 entry
= (lower_32_bits(addr
) & PAGE_MASK
) |
219 ((upper_32_bits(addr
) & 0xff) << 4) |
221 entry
= cpu_to_le32(entry
);
222 rdev
->gart
.table
.ram
.ptr
[i
] = entry
;
226 void rs400_gpu_init(struct radeon_device
*rdev
)
228 /* FIXME: HDP same place on rs400 ? */
229 r100_hdp_reset(rdev
);
230 /* FIXME: is this correct ? */
231 r420_pipes_init(rdev
);
232 if (r300_mc_wait_for_idle(rdev
)) {
233 printk(KERN_WARNING
"Failed to wait MC idle while "
234 "programming pipes. Bad things might happen.\n");
238 void rs400_vram_info(struct radeon_device
*rdev
)
240 rs400_gart_adjust_size(rdev
);
241 /* DDR for all card after R300 & IGP */
242 rdev
->mc
.vram_is_ddr
= true;
243 rdev
->mc
.vram_width
= 128;
245 r100_vram_init_sizes(rdev
);
248 uint32_t rs400_mc_rreg(struct radeon_device
*rdev
, uint32_t reg
)
252 WREG32(RS480_NB_MC_INDEX
, reg
& 0xff);
253 r
= RREG32(RS480_NB_MC_DATA
);
254 WREG32(RS480_NB_MC_INDEX
, 0xff);
258 void rs400_mc_wreg(struct radeon_device
*rdev
, uint32_t reg
, uint32_t v
)
260 WREG32(RS480_NB_MC_INDEX
, ((reg
) & 0xff) | RS480_NB_MC_IND_WR_EN
);
261 WREG32(RS480_NB_MC_DATA
, (v
));
262 WREG32(RS480_NB_MC_INDEX
, 0xff);
265 #if defined(CONFIG_DEBUG_FS)
266 static int rs400_debugfs_gart_info(struct seq_file
*m
, void *data
)
268 struct drm_info_node
*node
= (struct drm_info_node
*) m
->private;
269 struct drm_device
*dev
= node
->minor
->dev
;
270 struct radeon_device
*rdev
= dev
->dev_private
;
273 tmp
= RREG32(RADEON_HOST_PATH_CNTL
);
274 seq_printf(m
, "HOST_PATH_CNTL 0x%08x\n", tmp
);
275 tmp
= RREG32(RADEON_BUS_CNTL
);
276 seq_printf(m
, "BUS_CNTL 0x%08x\n", tmp
);
277 tmp
= RREG32_MC(RS690_AIC_CTRL_SCRATCH
);
278 seq_printf(m
, "AIC_CTRL_SCRATCH 0x%08x\n", tmp
);
279 if (rdev
->family
== CHIP_RS690
|| (rdev
->family
== CHIP_RS740
)) {
280 tmp
= RREG32_MC(RS690_MCCFG_AGP_BASE
);
281 seq_printf(m
, "MCCFG_AGP_BASE 0x%08x\n", tmp
);
282 tmp
= RREG32_MC(RS690_MCCFG_AGP_BASE_2
);
283 seq_printf(m
, "MCCFG_AGP_BASE_2 0x%08x\n", tmp
);
284 tmp
= RREG32_MC(RS690_MCCFG_AGP_LOCATION
);
285 seq_printf(m
, "MCCFG_AGP_LOCATION 0x%08x\n", tmp
);
286 tmp
= RREG32_MC(0x100);
287 seq_printf(m
, "MCCFG_FB_LOCATION 0x%08x\n", tmp
);
289 seq_printf(m
, "HDP_FB_LOCATION 0x%08x\n", tmp
);
291 tmp
= RREG32(RADEON_AGP_BASE
);
292 seq_printf(m
, "AGP_BASE 0x%08x\n", tmp
);
293 tmp
= RREG32(RS480_AGP_BASE_2
);
294 seq_printf(m
, "AGP_BASE_2 0x%08x\n", tmp
);
295 tmp
= RREG32(RADEON_MC_AGP_LOCATION
);
296 seq_printf(m
, "MC_AGP_LOCATION 0x%08x\n", tmp
);
298 tmp
= RREG32_MC(RS480_GART_BASE
);
299 seq_printf(m
, "GART_BASE 0x%08x\n", tmp
);
300 tmp
= RREG32_MC(RS480_GART_FEATURE_ID
);
301 seq_printf(m
, "GART_FEATURE_ID 0x%08x\n", tmp
);
302 tmp
= RREG32_MC(RS480_AGP_MODE_CNTL
);
303 seq_printf(m
, "AGP_MODE_CONTROL 0x%08x\n", tmp
);
304 tmp
= RREG32_MC(RS480_MC_MISC_CNTL
);
305 seq_printf(m
, "MC_MISC_CNTL 0x%08x\n", tmp
);
306 tmp
= RREG32_MC(0x5F);
307 seq_printf(m
, "MC_MISC_UMA_CNTL 0x%08x\n", tmp
);
308 tmp
= RREG32_MC(RS480_AGP_ADDRESS_SPACE_SIZE
);
309 seq_printf(m
, "AGP_ADDRESS_SPACE_SIZE 0x%08x\n", tmp
);
310 tmp
= RREG32_MC(RS480_GART_CACHE_CNTRL
);
311 seq_printf(m
, "GART_CACHE_CNTRL 0x%08x\n", tmp
);
312 tmp
= RREG32_MC(0x3B);
313 seq_printf(m
, "MC_GART_ERROR_ADDRESS 0x%08x\n", tmp
);
314 tmp
= RREG32_MC(0x3C);
315 seq_printf(m
, "MC_GART_ERROR_ADDRESS_HI 0x%08x\n", tmp
);
316 tmp
= RREG32_MC(0x30);
317 seq_printf(m
, "GART_ERROR_0 0x%08x\n", tmp
);
318 tmp
= RREG32_MC(0x31);
319 seq_printf(m
, "GART_ERROR_1 0x%08x\n", tmp
);
320 tmp
= RREG32_MC(0x32);
321 seq_printf(m
, "GART_ERROR_2 0x%08x\n", tmp
);
322 tmp
= RREG32_MC(0x33);
323 seq_printf(m
, "GART_ERROR_3 0x%08x\n", tmp
);
324 tmp
= RREG32_MC(0x34);
325 seq_printf(m
, "GART_ERROR_4 0x%08x\n", tmp
);
326 tmp
= RREG32_MC(0x35);
327 seq_printf(m
, "GART_ERROR_5 0x%08x\n", tmp
);
328 tmp
= RREG32_MC(0x36);
329 seq_printf(m
, "GART_ERROR_6 0x%08x\n", tmp
);
330 tmp
= RREG32_MC(0x37);
331 seq_printf(m
, "GART_ERROR_7 0x%08x\n", tmp
);
335 static struct drm_info_list rs400_gart_info_list
[] = {
336 {"rs400_gart_info", rs400_debugfs_gart_info
, 0, NULL
},
340 static int rs400_debugfs_pcie_gart_info_init(struct radeon_device
*rdev
)
342 #if defined(CONFIG_DEBUG_FS)
343 return radeon_debugfs_add_files(rdev
, rs400_gart_info_list
, 1);
349 static int rs400_mc_init(struct radeon_device
*rdev
)
354 /* Setup GPU memory space */
355 tmp
= RREG32(R_00015C_NB_TOM
);
356 rdev
->mc
.vram_location
= G_00015C_MC_FB_START(tmp
) << 16;
357 rdev
->mc
.gtt_location
= 0xFFFFFFFFUL
;
358 r
= radeon_mc_setup(rdev
);
359 rdev
->mc
.igp_sideport_enabled
= radeon_combios_sideport_present(rdev
);
365 void rs400_mc_program(struct radeon_device
*rdev
)
367 struct r100_mc_save save
;
369 /* Stops all mc clients */
370 r100_mc_stop(rdev
, &save
);
372 /* Wait for mc idle */
373 if (r300_mc_wait_for_idle(rdev
))
374 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
375 WREG32(R_000148_MC_FB_LOCATION
,
376 S_000148_MC_FB_START(rdev
->mc
.vram_start
>> 16) |
377 S_000148_MC_FB_TOP(rdev
->mc
.vram_end
>> 16));
379 r100_mc_resume(rdev
, &save
);
382 static int rs400_startup(struct radeon_device
*rdev
)
386 rs400_mc_program(rdev
);
388 r300_clock_startup(rdev
);
389 /* Initialize GPU configuration (# pipes, ...) */
390 rs400_gpu_init(rdev
);
391 r100_enable_bm(rdev
);
392 /* Initialize GART (initialize after TTM so we can allocate
393 * memory through TTM but finalize after TTM) */
394 r
= rs400_gart_enable(rdev
);
399 rdev
->config
.r300
.hdp_cntl
= RREG32(RADEON_HOST_PATH_CNTL
);
401 r
= r100_cp_init(rdev
, 1024 * 1024);
403 dev_err(rdev
->dev
, "failled initializing CP (%d).\n", r
);
406 r
= r100_wb_init(rdev
);
408 dev_err(rdev
->dev
, "failled initializing WB (%d).\n", r
);
409 r
= r100_ib_init(rdev
);
411 dev_err(rdev
->dev
, "failled initializing IB (%d).\n", r
);
417 int rs400_resume(struct radeon_device
*rdev
)
419 /* Make sur GART are not working */
420 rs400_gart_disable(rdev
);
421 /* Resume clock before doing reset */
422 r300_clock_startup(rdev
);
423 /* setup MC before calling post tables */
424 rs400_mc_program(rdev
);
425 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
426 if (radeon_gpu_reset(rdev
)) {
427 dev_warn(rdev
->dev
, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
428 RREG32(R_000E40_RBBM_STATUS
),
429 RREG32(R_0007C0_CP_STAT
));
432 radeon_combios_asic_init(rdev
->ddev
);
433 /* Resume clock after posting */
434 r300_clock_startup(rdev
);
435 /* Initialize surface registers */
436 radeon_surface_init(rdev
);
437 return rs400_startup(rdev
);
440 int rs400_suspend(struct radeon_device
*rdev
)
442 r100_cp_disable(rdev
);
443 r100_wb_disable(rdev
);
444 r100_irq_disable(rdev
);
445 rs400_gart_disable(rdev
);
449 void rs400_fini(struct radeon_device
*rdev
)
455 radeon_gem_fini(rdev
);
456 rs400_gart_fini(rdev
);
457 radeon_irq_kms_fini(rdev
);
458 radeon_fence_driver_fini(rdev
);
459 radeon_bo_fini(rdev
);
460 radeon_atombios_fini(rdev
);
465 int rs400_init(struct radeon_device
*rdev
)
470 r100_vga_render_disable(rdev
);
471 /* Initialize scratch registers */
472 radeon_scratch_init(rdev
);
473 /* Initialize surface registers */
474 radeon_surface_init(rdev
);
475 /* TODO: disable VGA need to use VGA request */
477 if (!radeon_get_bios(rdev
)) {
478 if (ASIC_IS_AVIVO(rdev
))
481 if (rdev
->is_atom_bios
) {
482 dev_err(rdev
->dev
, "Expecting combios for RS400/RS480 GPU\n");
485 r
= radeon_combios_init(rdev
);
489 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
490 if (radeon_gpu_reset(rdev
)) {
492 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
493 RREG32(R_000E40_RBBM_STATUS
),
494 RREG32(R_0007C0_CP_STAT
));
496 /* check if cards are posted or not */
497 if (radeon_boot_test_post_card(rdev
) == false)
500 /* Initialize clocks */
501 radeon_get_clock_info(rdev
->ddev
);
502 /* Initialize power management */
503 radeon_pm_init(rdev
);
504 /* Get vram informations */
505 rs400_vram_info(rdev
);
506 /* Initialize memory controller (also test AGP) */
507 r
= rs400_mc_init(rdev
);
511 r
= radeon_fence_driver_init(rdev
);
514 r
= radeon_irq_kms_init(rdev
);
518 r
= radeon_bo_init(rdev
);
521 r
= rs400_gart_init(rdev
);
524 r300_set_reg_safe(rdev
);
525 rdev
->accel_working
= true;
526 r
= rs400_startup(rdev
);
528 /* Somethings want wront with the accel init stop accel */
529 dev_err(rdev
->dev
, "Disabling GPU acceleration\n");
534 rs400_gart_fini(rdev
);
535 radeon_irq_kms_fini(rdev
);
536 rdev
->accel_working
= false;