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 /* RS600 / Radeon X1250/X1270 integrated GPU
30 * This file gather function specific to RS600 which is the IGP of
31 * the X1250/X1270 family supporting intel CPU (while RS690/RS740
32 * is the X1250/X1270 supporting AMD CPU). The display engine are
33 * the avivo one, bios is an atombios, 3D block are the one of the
34 * R4XX family. The GART is different from the RS400 one and is very
35 * close to the one of the R600 family (R600 likely being an evolution
36 * of the RS600 GART block).
40 #include "radeon_asic.h"
44 #include "rs600_reg_safe.h"
46 void rs600_gpu_init(struct radeon_device
*rdev
);
47 int rs600_mc_wait_for_idle(struct radeon_device
*rdev
);
49 /* hpd for digital panel detect/disconnect */
50 bool rs600_hpd_sense(struct radeon_device
*rdev
, enum radeon_hpd_id hpd
)
53 bool connected
= false;
57 tmp
= RREG32(R_007D04_DC_HOT_PLUG_DETECT1_INT_STATUS
);
58 if (G_007D04_DC_HOT_PLUG_DETECT1_SENSE(tmp
))
62 tmp
= RREG32(R_007D14_DC_HOT_PLUG_DETECT2_INT_STATUS
);
63 if (G_007D14_DC_HOT_PLUG_DETECT2_SENSE(tmp
))
72 void rs600_hpd_set_polarity(struct radeon_device
*rdev
,
73 enum radeon_hpd_id hpd
)
76 bool connected
= rs600_hpd_sense(rdev
, hpd
);
80 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
82 tmp
&= ~S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
84 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
85 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
88 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
90 tmp
&= ~S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
92 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
93 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
100 void rs600_hpd_init(struct radeon_device
*rdev
)
102 struct drm_device
*dev
= rdev
->ddev
;
103 struct drm_connector
*connector
;
105 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
106 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
107 switch (radeon_connector
->hpd
.hpd
) {
109 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
110 S_007D00_DC_HOT_PLUG_DETECT1_EN(1));
111 rdev
->irq
.hpd
[0] = true;
114 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
115 S_007D10_DC_HOT_PLUG_DETECT2_EN(1));
116 rdev
->irq
.hpd
[1] = true;
122 if (rdev
->irq
.installed
)
126 void rs600_hpd_fini(struct radeon_device
*rdev
)
128 struct drm_device
*dev
= rdev
->ddev
;
129 struct drm_connector
*connector
;
131 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
132 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
133 switch (radeon_connector
->hpd
.hpd
) {
135 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
136 S_007D00_DC_HOT_PLUG_DETECT1_EN(0));
137 rdev
->irq
.hpd
[0] = false;
140 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
141 S_007D10_DC_HOT_PLUG_DETECT2_EN(0));
142 rdev
->irq
.hpd
[1] = false;
153 void rs600_gart_tlb_flush(struct radeon_device
*rdev
)
157 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
158 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
159 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
161 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
162 tmp
|= S_000100_INVALIDATE_ALL_L1_TLBS(1) | S_000100_INVALIDATE_L2_CACHE(1);
163 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
165 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
166 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
167 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
168 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
171 int rs600_gart_init(struct radeon_device
*rdev
)
175 if (rdev
->gart
.table
.vram
.robj
) {
176 WARN(1, "RS600 GART already initialized.\n");
179 /* Initialize common gart structure */
180 r
= radeon_gart_init(rdev
);
184 rdev
->gart
.table_size
= rdev
->gart
.num_gpu_pages
* 8;
185 return radeon_gart_table_vram_alloc(rdev
);
188 int rs600_gart_enable(struct radeon_device
*rdev
)
193 if (rdev
->gart
.table
.vram
.robj
== NULL
) {
194 dev_err(rdev
->dev
, "No VRAM object for PCIE GART.\n");
197 r
= radeon_gart_table_vram_pin(rdev
);
200 radeon_gart_restore(rdev
);
201 /* Enable bus master */
202 tmp
= RREG32(R_00004C_BUS_CNTL
) & C_00004C_BUS_MASTER_DIS
;
203 WREG32(R_00004C_BUS_CNTL
, tmp
);
204 /* FIXME: setup default page */
205 WREG32_MC(R_000100_MC_PT0_CNTL
,
206 (S_000100_EFFECTIVE_L2_CACHE_SIZE(6) |
207 S_000100_EFFECTIVE_L2_QUEUE_SIZE(6)));
209 for (i
= 0; i
< 19; i
++) {
210 WREG32_MC(R_00016C_MC_PT0_CLIENT0_CNTL
+ i
,
211 S_00016C_ENABLE_TRANSLATION_MODE_OVERRIDE(1) |
212 S_00016C_SYSTEM_ACCESS_MODE_MASK(
213 V_00016C_SYSTEM_ACCESS_MODE_NOT_IN_SYS
) |
214 S_00016C_SYSTEM_APERTURE_UNMAPPED_ACCESS(
215 V_00016C_SYSTEM_APERTURE_UNMAPPED_PASSTHROUGH
) |
216 S_00016C_EFFECTIVE_L1_CACHE_SIZE(3) |
217 S_00016C_ENABLE_FRAGMENT_PROCESSING(1) |
218 S_00016C_EFFECTIVE_L1_QUEUE_SIZE(3));
220 /* enable first context */
221 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
,
222 S_000102_ENABLE_PAGE_TABLE(1) |
223 S_000102_PAGE_TABLE_DEPTH(V_000102_PAGE_TABLE_FLAT
));
225 /* disable all other contexts */
226 for (i
= 1; i
< 8; i
++)
227 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
+ i
, 0);
229 /* setup the page table */
230 WREG32_MC(R_00012C_MC_PT0_CONTEXT0_FLAT_BASE_ADDR
,
231 rdev
->gart
.table_addr
);
232 WREG32_MC(R_00013C_MC_PT0_CONTEXT0_FLAT_START_ADDR
, rdev
->mc
.gtt_start
);
233 WREG32_MC(R_00014C_MC_PT0_CONTEXT0_FLAT_END_ADDR
, rdev
->mc
.gtt_end
);
234 WREG32_MC(R_00011C_MC_PT0_CONTEXT0_DEFAULT_READ_ADDR
, 0);
236 /* System context maps to VRAM space */
237 WREG32_MC(R_000112_MC_PT0_SYSTEM_APERTURE_LOW_ADDR
, rdev
->mc
.vram_start
);
238 WREG32_MC(R_000114_MC_PT0_SYSTEM_APERTURE_HIGH_ADDR
, rdev
->mc
.vram_end
);
240 /* enable page tables */
241 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
242 WREG32_MC(R_000100_MC_PT0_CNTL
, (tmp
| S_000100_ENABLE_PT(1)));
243 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
244 WREG32_MC(R_000009_MC_CNTL1
, (tmp
| S_000009_ENABLE_PAGE_TABLES(1)));
245 rs600_gart_tlb_flush(rdev
);
246 rdev
->gart
.ready
= true;
250 void rs600_gart_disable(struct radeon_device
*rdev
)
255 /* FIXME: disable out of gart access */
256 WREG32_MC(R_000100_MC_PT0_CNTL
, 0);
257 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
258 WREG32_MC(R_000009_MC_CNTL1
, tmp
& C_000009_ENABLE_PAGE_TABLES
);
259 if (rdev
->gart
.table
.vram
.robj
) {
260 r
= radeon_bo_reserve(rdev
->gart
.table
.vram
.robj
, false);
262 radeon_bo_kunmap(rdev
->gart
.table
.vram
.robj
);
263 radeon_bo_unpin(rdev
->gart
.table
.vram
.robj
);
264 radeon_bo_unreserve(rdev
->gart
.table
.vram
.robj
);
269 void rs600_gart_fini(struct radeon_device
*rdev
)
271 radeon_gart_fini(rdev
);
272 rs600_gart_disable(rdev
);
273 radeon_gart_table_vram_free(rdev
);
276 #define R600_PTE_VALID (1 << 0)
277 #define R600_PTE_SYSTEM (1 << 1)
278 #define R600_PTE_SNOOPED (1 << 2)
279 #define R600_PTE_READABLE (1 << 5)
280 #define R600_PTE_WRITEABLE (1 << 6)
282 int rs600_gart_set_page(struct radeon_device
*rdev
, int i
, uint64_t addr
)
284 void __iomem
*ptr
= (void *)rdev
->gart
.table
.vram
.ptr
;
286 if (i
< 0 || i
> rdev
->gart
.num_gpu_pages
) {
289 addr
= addr
& 0xFFFFFFFFFFFFF000ULL
;
290 addr
|= R600_PTE_VALID
| R600_PTE_SYSTEM
| R600_PTE_SNOOPED
;
291 addr
|= R600_PTE_READABLE
| R600_PTE_WRITEABLE
;
292 writeq(addr
, ((void __iomem
*)ptr
) + (i
* 8));
296 int rs600_irq_set(struct radeon_device
*rdev
)
299 uint32_t mode_int
= 0;
300 u32 hpd1
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
) &
301 ~S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
302 u32 hpd2
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
) &
303 ~S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
305 if (!rdev
->irq
.installed
) {
306 WARN(1, "Can't enable IRQ/MSI because no handler is installed.\n");
307 WREG32(R_000040_GEN_INT_CNTL
, 0);
310 if (rdev
->irq
.sw_int
) {
311 tmp
|= S_000040_SW_INT_EN(1);
313 if (rdev
->irq
.crtc_vblank_int
[0]) {
314 mode_int
|= S_006540_D1MODE_VBLANK_INT_MASK(1);
316 if (rdev
->irq
.crtc_vblank_int
[1]) {
317 mode_int
|= S_006540_D2MODE_VBLANK_INT_MASK(1);
319 if (rdev
->irq
.hpd
[0]) {
320 hpd1
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
322 if (rdev
->irq
.hpd
[1]) {
323 hpd2
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
325 WREG32(R_000040_GEN_INT_CNTL
, tmp
);
326 WREG32(R_006540_DxMODE_INT_MASK
, mode_int
);
327 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, hpd1
);
328 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, hpd2
);
332 static inline uint32_t rs600_irq_ack(struct radeon_device
*rdev
, u32
*r500_disp_int
)
334 uint32_t irqs
= RREG32(R_000044_GEN_INT_STATUS
);
335 uint32_t irq_mask
= ~C_000044_SW_INT
;
338 if (G_000044_DISPLAY_INT_STAT(irqs
)) {
339 *r500_disp_int
= RREG32(R_007EDC_DISP_INTERRUPT_STATUS
);
340 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(*r500_disp_int
)) {
341 WREG32(R_006534_D1MODE_VBLANK_STATUS
,
342 S_006534_D1MODE_VBLANK_ACK(1));
344 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(*r500_disp_int
)) {
345 WREG32(R_006D34_D2MODE_VBLANK_STATUS
,
346 S_006D34_D2MODE_VBLANK_ACK(1));
348 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(*r500_disp_int
)) {
349 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
350 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_ACK(1);
351 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
353 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(*r500_disp_int
)) {
354 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
355 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_ACK(1);
356 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
363 WREG32(R_000044_GEN_INT_STATUS
, irqs
);
365 return irqs
& irq_mask
;
368 void rs600_irq_disable(struct radeon_device
*rdev
)
372 WREG32(R_000040_GEN_INT_CNTL
, 0);
373 WREG32(R_006540_DxMODE_INT_MASK
, 0);
374 /* Wait and acknowledge irq */
376 rs600_irq_ack(rdev
, &tmp
);
379 int rs600_irq_process(struct radeon_device
*rdev
)
381 uint32_t status
, msi_rearm
;
382 uint32_t r500_disp_int
;
383 bool queue_hotplug
= false;
385 status
= rs600_irq_ack(rdev
, &r500_disp_int
);
386 if (!status
&& !r500_disp_int
) {
389 while (status
|| r500_disp_int
) {
391 if (G_000044_SW_INT(status
))
392 radeon_fence_process(rdev
);
393 /* Vertical blank interrupts */
394 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(r500_disp_int
)) {
395 drm_handle_vblank(rdev
->ddev
, 0);
396 rdev
->pm
.vblank_sync
= true;
397 wake_up(&rdev
->irq
.vblank_queue
);
399 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(r500_disp_int
)) {
400 drm_handle_vblank(rdev
->ddev
, 1);
401 rdev
->pm
.vblank_sync
= true;
402 wake_up(&rdev
->irq
.vblank_queue
);
404 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(r500_disp_int
)) {
405 queue_hotplug
= true;
408 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(r500_disp_int
)) {
409 queue_hotplug
= true;
412 status
= rs600_irq_ack(rdev
, &r500_disp_int
);
415 queue_work(rdev
->wq
, &rdev
->hotplug_work
);
416 if (rdev
->msi_enabled
) {
417 switch (rdev
->family
) {
421 msi_rearm
= RREG32(RADEON_BUS_CNTL
) & ~RS600_MSI_REARM
;
422 WREG32(RADEON_BUS_CNTL
, msi_rearm
);
423 WREG32(RADEON_BUS_CNTL
, msi_rearm
| RS600_MSI_REARM
);
426 msi_rearm
= RREG32(RADEON_MSI_REARM_EN
) & ~RV370_MSI_REARM_EN
;
427 WREG32(RADEON_MSI_REARM_EN
, msi_rearm
);
428 WREG32(RADEON_MSI_REARM_EN
, msi_rearm
| RV370_MSI_REARM_EN
);
435 u32
rs600_get_vblank_counter(struct radeon_device
*rdev
, int crtc
)
438 return RREG32(R_0060A4_D1CRTC_STATUS_FRAME_COUNT
);
440 return RREG32(R_0068A4_D2CRTC_STATUS_FRAME_COUNT
);
443 int rs600_mc_wait_for_idle(struct radeon_device
*rdev
)
447 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
448 if (G_000000_MC_IDLE(RREG32_MC(R_000000_MC_STATUS
)))
455 void rs600_gpu_init(struct radeon_device
*rdev
)
457 r100_hdp_reset(rdev
);
458 r420_pipes_init(rdev
);
459 /* Wait for mc idle */
460 if (rs600_mc_wait_for_idle(rdev
))
461 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
464 void rs600_mc_init(struct radeon_device
*rdev
)
468 rdev
->mc
.aper_base
= drm_get_resource_start(rdev
->ddev
, 0);
469 rdev
->mc
.aper_size
= drm_get_resource_len(rdev
->ddev
, 0);
470 rdev
->mc
.vram_is_ddr
= true;
471 rdev
->mc
.vram_width
= 128;
472 rdev
->mc
.real_vram_size
= RREG32(RADEON_CONFIG_MEMSIZE
);
473 rdev
->mc
.mc_vram_size
= rdev
->mc
.real_vram_size
;
474 rdev
->mc
.visible_vram_size
= rdev
->mc
.aper_size
;
475 rdev
->mc
.igp_sideport_enabled
= radeon_atombios_sideport_present(rdev
);
476 base
= RREG32_MC(R_000004_MC_FB_LOCATION
);
477 base
= G_000004_MC_FB_START(base
) << 16;
478 rdev
->mc
.igp_sideport_enabled
= radeon_atombios_sideport_present(rdev
);
479 radeon_vram_location(rdev
, &rdev
->mc
, base
);
480 radeon_gtt_location(rdev
, &rdev
->mc
);
481 radeon_update_bandwidth_info(rdev
);
484 void rs600_bandwidth_update(struct radeon_device
*rdev
)
486 struct drm_display_mode
*mode0
= NULL
;
487 struct drm_display_mode
*mode1
= NULL
;
488 u32 d1mode_priority_a_cnt
, d2mode_priority_a_cnt
;
489 /* FIXME: implement full support */
491 radeon_update_display_priority(rdev
);
493 if (rdev
->mode_info
.crtcs
[0]->base
.enabled
)
494 mode0
= &rdev
->mode_info
.crtcs
[0]->base
.mode
;
495 if (rdev
->mode_info
.crtcs
[1]->base
.enabled
)
496 mode1
= &rdev
->mode_info
.crtcs
[1]->base
.mode
;
498 rs690_line_buffer_adjust(rdev
, mode0
, mode1
);
500 if (rdev
->disp_priority
== 2) {
501 d1mode_priority_a_cnt
= RREG32(R_006548_D1MODE_PRIORITY_A_CNT
);
502 d2mode_priority_a_cnt
= RREG32(R_006D48_D2MODE_PRIORITY_A_CNT
);
503 d1mode_priority_a_cnt
|= S_006548_D1MODE_PRIORITY_A_ALWAYS_ON(1);
504 d2mode_priority_a_cnt
|= S_006D48_D2MODE_PRIORITY_A_ALWAYS_ON(1);
505 WREG32(R_006548_D1MODE_PRIORITY_A_CNT
, d1mode_priority_a_cnt
);
506 WREG32(R_00654C_D1MODE_PRIORITY_B_CNT
, d1mode_priority_a_cnt
);
507 WREG32(R_006D48_D2MODE_PRIORITY_A_CNT
, d2mode_priority_a_cnt
);
508 WREG32(R_006D4C_D2MODE_PRIORITY_B_CNT
, d2mode_priority_a_cnt
);
512 uint32_t rs600_mc_rreg(struct radeon_device
*rdev
, uint32_t reg
)
514 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
515 S_000070_MC_IND_CITF_ARB0(1));
516 return RREG32(R_000074_MC_IND_DATA
);
519 void rs600_mc_wreg(struct radeon_device
*rdev
, uint32_t reg
, uint32_t v
)
521 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
522 S_000070_MC_IND_CITF_ARB0(1) | S_000070_MC_IND_WR_EN(1));
523 WREG32(R_000074_MC_IND_DATA
, v
);
526 void rs600_debugfs(struct radeon_device
*rdev
)
528 if (r100_debugfs_rbbm_init(rdev
))
529 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
532 void rs600_set_safe_registers(struct radeon_device
*rdev
)
534 rdev
->config
.r300
.reg_safe_bm
= rs600_reg_safe_bm
;
535 rdev
->config
.r300
.reg_safe_bm_size
= ARRAY_SIZE(rs600_reg_safe_bm
);
538 static void rs600_mc_program(struct radeon_device
*rdev
)
540 struct rv515_mc_save save
;
542 /* Stops all mc clients */
543 rv515_mc_stop(rdev
, &save
);
545 /* Wait for mc idle */
546 if (rs600_mc_wait_for_idle(rdev
))
547 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
549 /* FIXME: What does AGP means for such chipset ? */
550 WREG32_MC(R_000005_MC_AGP_LOCATION
, 0x0FFFFFFF);
551 WREG32_MC(R_000006_AGP_BASE
, 0);
552 WREG32_MC(R_000007_AGP_BASE_2
, 0);
554 WREG32_MC(R_000004_MC_FB_LOCATION
,
555 S_000004_MC_FB_START(rdev
->mc
.vram_start
>> 16) |
556 S_000004_MC_FB_TOP(rdev
->mc
.vram_end
>> 16));
557 WREG32(R_000134_HDP_FB_LOCATION
,
558 S_000134_HDP_FB_START(rdev
->mc
.vram_start
>> 16));
560 rv515_mc_resume(rdev
, &save
);
563 static int rs600_startup(struct radeon_device
*rdev
)
567 rs600_mc_program(rdev
);
569 rv515_clock_startup(rdev
);
570 /* Initialize GPU configuration (# pipes, ...) */
571 rs600_gpu_init(rdev
);
572 /* Initialize GART (initialize after TTM so we can allocate
573 * memory through TTM but finalize after TTM) */
574 r
= rs600_gart_enable(rdev
);
579 rdev
->config
.r300
.hdp_cntl
= RREG32(RADEON_HOST_PATH_CNTL
);
581 r
= r100_cp_init(rdev
, 1024 * 1024);
583 dev_err(rdev
->dev
, "failled initializing CP (%d).\n", r
);
586 r
= r100_wb_init(rdev
);
588 dev_err(rdev
->dev
, "failled initializing WB (%d).\n", r
);
589 r
= r100_ib_init(rdev
);
591 dev_err(rdev
->dev
, "failled initializing IB (%d).\n", r
);
597 int rs600_resume(struct radeon_device
*rdev
)
599 /* Make sur GART are not working */
600 rs600_gart_disable(rdev
);
601 /* Resume clock before doing reset */
602 rv515_clock_startup(rdev
);
603 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
604 if (radeon_gpu_reset(rdev
)) {
605 dev_warn(rdev
->dev
, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
606 RREG32(R_000E40_RBBM_STATUS
),
607 RREG32(R_0007C0_CP_STAT
));
610 atom_asic_init(rdev
->mode_info
.atom_context
);
611 /* Resume clock after posting */
612 rv515_clock_startup(rdev
);
613 /* Initialize surface registers */
614 radeon_surface_init(rdev
);
615 return rs600_startup(rdev
);
618 int rs600_suspend(struct radeon_device
*rdev
)
620 r100_cp_disable(rdev
);
621 r100_wb_disable(rdev
);
622 rs600_irq_disable(rdev
);
623 rs600_gart_disable(rdev
);
627 void rs600_fini(struct radeon_device
*rdev
)
629 radeon_pm_fini(rdev
);
633 radeon_gem_fini(rdev
);
634 rs600_gart_fini(rdev
);
635 radeon_irq_kms_fini(rdev
);
636 radeon_fence_driver_fini(rdev
);
637 radeon_bo_fini(rdev
);
638 radeon_atombios_fini(rdev
);
643 int rs600_init(struct radeon_device
*rdev
)
648 rv515_vga_render_disable(rdev
);
649 /* Initialize scratch registers */
650 radeon_scratch_init(rdev
);
651 /* Initialize surface registers */
652 radeon_surface_init(rdev
);
654 if (!radeon_get_bios(rdev
)) {
655 if (ASIC_IS_AVIVO(rdev
))
658 if (rdev
->is_atom_bios
) {
659 r
= radeon_atombios_init(rdev
);
663 dev_err(rdev
->dev
, "Expecting atombios for RS600 GPU\n");
666 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
667 if (radeon_gpu_reset(rdev
)) {
669 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
670 RREG32(R_000E40_RBBM_STATUS
),
671 RREG32(R_0007C0_CP_STAT
));
673 /* check if cards are posted or not */
674 if (radeon_boot_test_post_card(rdev
) == false)
677 /* Initialize clocks */
678 radeon_get_clock_info(rdev
->ddev
);
679 /* Initialize power management */
680 radeon_pm_init(rdev
);
681 /* initialize memory controller */
685 r
= radeon_fence_driver_init(rdev
);
688 r
= radeon_irq_kms_init(rdev
);
692 r
= radeon_bo_init(rdev
);
695 r
= rs600_gart_init(rdev
);
698 rs600_set_safe_registers(rdev
);
699 rdev
->accel_working
= true;
700 r
= rs600_startup(rdev
);
702 /* Somethings want wront with the accel init stop accel */
703 dev_err(rdev
->dev
, "Disabling GPU acceleration\n");
707 rs600_gart_fini(rdev
);
708 radeon_irq_kms_fini(rdev
);
709 rdev
->accel_working
= false;