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 void rs600_pre_page_flip(struct radeon_device
*rdev
, int crtc
)
51 /* enable the pflip int */
52 radeon_irq_kms_pflip_irq_get(rdev
, crtc
);
55 void rs600_post_page_flip(struct radeon_device
*rdev
, int crtc
)
57 /* disable the pflip int */
58 radeon_irq_kms_pflip_irq_put(rdev
, crtc
);
61 u32
rs600_page_flip(struct radeon_device
*rdev
, int crtc_id
, u64 crtc_base
)
63 struct radeon_crtc
*radeon_crtc
= rdev
->mode_info
.crtcs
[crtc_id
];
64 u32 tmp
= RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
);
66 /* Lock the graphics update lock */
67 tmp
|= AVIVO_D1GRPH_UPDATE_LOCK
;
68 WREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
, tmp
);
70 /* update the scanout addresses */
71 WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS
+ radeon_crtc
->crtc_offset
,
73 WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS
+ radeon_crtc
->crtc_offset
,
76 /* Wait for update_pending to go high. */
77 while (!(RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING
));
78 DRM_DEBUG("Update pending now high. Unlocking vupdate_lock.\n");
80 /* Unlock the lock, so double-buffering can take place inside vblank */
81 tmp
&= ~AVIVO_D1GRPH_UPDATE_LOCK
;
82 WREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
, tmp
);
84 /* Return current update_pending status: */
85 return RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING
;
88 void rs600_pm_misc(struct radeon_device
*rdev
)
90 int requested_index
= rdev
->pm
.requested_power_state_index
;
91 struct radeon_power_state
*ps
= &rdev
->pm
.power_state
[requested_index
];
92 struct radeon_voltage
*voltage
= &ps
->clock_info
[0].voltage
;
93 u32 tmp
, dyn_pwrmgt_sclk_length
, dyn_sclk_vol_cntl
;
94 u32 hdp_dyn_cntl
, /*mc_host_dyn_cntl,*/ dyn_backbias_cntl
;
96 if ((voltage
->type
== VOLTAGE_GPIO
) && (voltage
->gpio
.valid
)) {
97 if (ps
->misc
& ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT
) {
98 tmp
= RREG32(voltage
->gpio
.reg
);
99 if (voltage
->active_high
)
100 tmp
|= voltage
->gpio
.mask
;
102 tmp
&= ~(voltage
->gpio
.mask
);
103 WREG32(voltage
->gpio
.reg
, tmp
);
105 udelay(voltage
->delay
);
107 tmp
= RREG32(voltage
->gpio
.reg
);
108 if (voltage
->active_high
)
109 tmp
&= ~voltage
->gpio
.mask
;
111 tmp
|= voltage
->gpio
.mask
;
112 WREG32(voltage
->gpio
.reg
, tmp
);
114 udelay(voltage
->delay
);
116 } else if (voltage
->type
== VOLTAGE_VDDC
)
117 radeon_atom_set_voltage(rdev
, voltage
->vddc_id
, SET_VOLTAGE_TYPE_ASIC_VDDC
);
119 dyn_pwrmgt_sclk_length
= RREG32_PLL(DYN_PWRMGT_SCLK_LENGTH
);
120 dyn_pwrmgt_sclk_length
&= ~REDUCED_POWER_SCLK_HILEN(0xf);
121 dyn_pwrmgt_sclk_length
&= ~REDUCED_POWER_SCLK_LOLEN(0xf);
122 if (ps
->misc
& ATOM_PM_MISCINFO_ASIC_REDUCED_SPEED_SCLK_EN
) {
123 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_CLOCK_DIVIDER_BY_2
) {
124 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(2);
125 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(2);
126 } else if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_CLOCK_DIVIDER_BY_4
) {
127 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(4);
128 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(4);
131 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(1);
132 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(1);
134 WREG32_PLL(DYN_PWRMGT_SCLK_LENGTH
, dyn_pwrmgt_sclk_length
);
136 dyn_sclk_vol_cntl
= RREG32_PLL(DYN_SCLK_VOL_CNTL
);
137 if (ps
->misc
& ATOM_PM_MISCINFO_ASIC_DYNAMIC_VOLTAGE_EN
) {
138 dyn_sclk_vol_cntl
|= IO_CG_VOLTAGE_DROP
;
139 if (voltage
->delay
) {
140 dyn_sclk_vol_cntl
|= VOLTAGE_DROP_SYNC
;
141 dyn_sclk_vol_cntl
|= VOLTAGE_DELAY_SEL(voltage
->delay
);
143 dyn_sclk_vol_cntl
&= ~VOLTAGE_DROP_SYNC
;
145 dyn_sclk_vol_cntl
&= ~IO_CG_VOLTAGE_DROP
;
146 WREG32_PLL(DYN_SCLK_VOL_CNTL
, dyn_sclk_vol_cntl
);
148 hdp_dyn_cntl
= RREG32_PLL(HDP_DYN_CNTL
);
149 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_HDP_BLOCK_EN
)
150 hdp_dyn_cntl
&= ~HDP_FORCEON
;
152 hdp_dyn_cntl
|= HDP_FORCEON
;
153 WREG32_PLL(HDP_DYN_CNTL
, hdp_dyn_cntl
);
155 /* mc_host_dyn seems to cause hangs from time to time */
156 mc_host_dyn_cntl
= RREG32_PLL(MC_HOST_DYN_CNTL
);
157 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_MC_HOST_BLOCK_EN
)
158 mc_host_dyn_cntl
&= ~MC_HOST_FORCEON
;
160 mc_host_dyn_cntl
|= MC_HOST_FORCEON
;
161 WREG32_PLL(MC_HOST_DYN_CNTL
, mc_host_dyn_cntl
);
163 dyn_backbias_cntl
= RREG32_PLL(DYN_BACKBIAS_CNTL
);
164 if (ps
->misc
& ATOM_PM_MISCINFO2_DYNAMIC_BACK_BIAS_EN
)
165 dyn_backbias_cntl
|= IO_CG_BACKBIAS_EN
;
167 dyn_backbias_cntl
&= ~IO_CG_BACKBIAS_EN
;
168 WREG32_PLL(DYN_BACKBIAS_CNTL
, dyn_backbias_cntl
);
171 if ((rdev
->flags
& RADEON_IS_PCIE
) &&
172 !(rdev
->flags
& RADEON_IS_IGP
) &&
173 rdev
->asic
->set_pcie_lanes
&&
175 rdev
->pm
.power_state
[rdev
->pm
.current_power_state_index
].pcie_lanes
)) {
176 radeon_set_pcie_lanes(rdev
,
178 DRM_DEBUG("Setting: p: %d\n", ps
->pcie_lanes
);
182 void rs600_pm_prepare(struct radeon_device
*rdev
)
184 struct drm_device
*ddev
= rdev
->ddev
;
185 struct drm_crtc
*crtc
;
186 struct radeon_crtc
*radeon_crtc
;
189 /* disable any active CRTCs */
190 list_for_each_entry(crtc
, &ddev
->mode_config
.crtc_list
, head
) {
191 radeon_crtc
= to_radeon_crtc(crtc
);
192 if (radeon_crtc
->enabled
) {
193 tmp
= RREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
);
194 tmp
|= AVIVO_CRTC_DISP_READ_REQUEST_DISABLE
;
195 WREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
, tmp
);
200 void rs600_pm_finish(struct radeon_device
*rdev
)
202 struct drm_device
*ddev
= rdev
->ddev
;
203 struct drm_crtc
*crtc
;
204 struct radeon_crtc
*radeon_crtc
;
207 /* enable any active CRTCs */
208 list_for_each_entry(crtc
, &ddev
->mode_config
.crtc_list
, head
) {
209 radeon_crtc
= to_radeon_crtc(crtc
);
210 if (radeon_crtc
->enabled
) {
211 tmp
= RREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
);
212 tmp
&= ~AVIVO_CRTC_DISP_READ_REQUEST_DISABLE
;
213 WREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
, tmp
);
218 /* hpd for digital panel detect/disconnect */
219 bool rs600_hpd_sense(struct radeon_device
*rdev
, enum radeon_hpd_id hpd
)
222 bool connected
= false;
226 tmp
= RREG32(R_007D04_DC_HOT_PLUG_DETECT1_INT_STATUS
);
227 if (G_007D04_DC_HOT_PLUG_DETECT1_SENSE(tmp
))
231 tmp
= RREG32(R_007D14_DC_HOT_PLUG_DETECT2_INT_STATUS
);
232 if (G_007D14_DC_HOT_PLUG_DETECT2_SENSE(tmp
))
241 void rs600_hpd_set_polarity(struct radeon_device
*rdev
,
242 enum radeon_hpd_id hpd
)
245 bool connected
= rs600_hpd_sense(rdev
, hpd
);
249 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
251 tmp
&= ~S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
253 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
254 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
257 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
259 tmp
&= ~S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
261 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
262 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
269 void rs600_hpd_init(struct radeon_device
*rdev
)
271 struct drm_device
*dev
= rdev
->ddev
;
272 struct drm_connector
*connector
;
274 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
275 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
276 switch (radeon_connector
->hpd
.hpd
) {
278 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
279 S_007D00_DC_HOT_PLUG_DETECT1_EN(1));
280 rdev
->irq
.hpd
[0] = true;
283 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
284 S_007D10_DC_HOT_PLUG_DETECT2_EN(1));
285 rdev
->irq
.hpd
[1] = true;
291 if (rdev
->irq
.installed
)
295 void rs600_hpd_fini(struct radeon_device
*rdev
)
297 struct drm_device
*dev
= rdev
->ddev
;
298 struct drm_connector
*connector
;
300 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
301 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
302 switch (radeon_connector
->hpd
.hpd
) {
304 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
305 S_007D00_DC_HOT_PLUG_DETECT1_EN(0));
306 rdev
->irq
.hpd
[0] = false;
309 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
310 S_007D10_DC_HOT_PLUG_DETECT2_EN(0));
311 rdev
->irq
.hpd
[1] = false;
319 void rs600_bm_disable(struct radeon_device
*rdev
)
323 /* disable bus mastering */
324 pci_read_config_word(rdev
->pdev
, 0x4, (u16
*)&tmp
);
325 pci_write_config_word(rdev
->pdev
, 0x4, tmp
& 0xFFFB);
329 int rs600_asic_reset(struct radeon_device
*rdev
)
331 struct rv515_mc_save save
;
335 status
= RREG32(R_000E40_RBBM_STATUS
);
336 if (!G_000E40_GUI_ACTIVE(status
)) {
339 /* Stops all mc clients */
340 rv515_mc_stop(rdev
, &save
);
341 status
= RREG32(R_000E40_RBBM_STATUS
);
342 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
344 WREG32(RADEON_CP_CSQ_CNTL
, 0);
345 tmp
= RREG32(RADEON_CP_RB_CNTL
);
346 WREG32(RADEON_CP_RB_CNTL
, tmp
| RADEON_RB_RPTR_WR_ENA
);
347 WREG32(RADEON_CP_RB_RPTR_WR
, 0);
348 WREG32(RADEON_CP_RB_WPTR
, 0);
349 WREG32(RADEON_CP_RB_CNTL
, tmp
);
350 pci_save_state(rdev
->pdev
);
351 /* disable bus mastering */
352 rs600_bm_disable(rdev
);
354 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_VAP(1) |
355 S_0000F0_SOFT_RESET_GA(1));
356 RREG32(R_0000F0_RBBM_SOFT_RESET
);
358 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
360 status
= RREG32(R_000E40_RBBM_STATUS
);
361 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
363 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_CP(1));
364 RREG32(R_0000F0_RBBM_SOFT_RESET
);
366 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
368 status
= RREG32(R_000E40_RBBM_STATUS
);
369 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
371 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_MC(1));
372 RREG32(R_0000F0_RBBM_SOFT_RESET
);
374 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
376 status
= RREG32(R_000E40_RBBM_STATUS
);
377 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
378 /* restore PCI & busmastering */
379 pci_restore_state(rdev
->pdev
);
380 /* Check if GPU is idle */
381 if (G_000E40_GA_BUSY(status
) || G_000E40_VAP_BUSY(status
)) {
382 dev_err(rdev
->dev
, "failed to reset GPU\n");
383 rdev
->gpu_lockup
= true;
386 dev_info(rdev
->dev
, "GPU reset succeed\n");
387 rv515_mc_resume(rdev
, &save
);
394 void rs600_gart_tlb_flush(struct radeon_device
*rdev
)
398 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
399 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
400 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
402 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
403 tmp
|= S_000100_INVALIDATE_ALL_L1_TLBS(1) | S_000100_INVALIDATE_L2_CACHE(1);
404 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
406 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
407 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
408 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
409 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
412 int rs600_gart_init(struct radeon_device
*rdev
)
416 if (rdev
->gart
.table
.vram
.robj
) {
417 WARN(1, "RS600 GART already initialized\n");
420 /* Initialize common gart structure */
421 r
= radeon_gart_init(rdev
);
425 rdev
->gart
.table_size
= rdev
->gart
.num_gpu_pages
* 8;
426 return radeon_gart_table_vram_alloc(rdev
);
429 static int rs600_gart_enable(struct radeon_device
*rdev
)
434 if (rdev
->gart
.table
.vram
.robj
== NULL
) {
435 dev_err(rdev
->dev
, "No VRAM object for PCIE GART.\n");
438 r
= radeon_gart_table_vram_pin(rdev
);
441 radeon_gart_restore(rdev
);
442 /* Enable bus master */
443 tmp
= RREG32(RADEON_BUS_CNTL
) & ~RS600_BUS_MASTER_DIS
;
444 WREG32(RADEON_BUS_CNTL
, tmp
);
445 /* FIXME: setup default page */
446 WREG32_MC(R_000100_MC_PT0_CNTL
,
447 (S_000100_EFFECTIVE_L2_CACHE_SIZE(6) |
448 S_000100_EFFECTIVE_L2_QUEUE_SIZE(6)));
450 for (i
= 0; i
< 19; i
++) {
451 WREG32_MC(R_00016C_MC_PT0_CLIENT0_CNTL
+ i
,
452 S_00016C_ENABLE_TRANSLATION_MODE_OVERRIDE(1) |
453 S_00016C_SYSTEM_ACCESS_MODE_MASK(
454 V_00016C_SYSTEM_ACCESS_MODE_NOT_IN_SYS
) |
455 S_00016C_SYSTEM_APERTURE_UNMAPPED_ACCESS(
456 V_00016C_SYSTEM_APERTURE_UNMAPPED_PASSTHROUGH
) |
457 S_00016C_EFFECTIVE_L1_CACHE_SIZE(3) |
458 S_00016C_ENABLE_FRAGMENT_PROCESSING(1) |
459 S_00016C_EFFECTIVE_L1_QUEUE_SIZE(3));
461 /* enable first context */
462 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
,
463 S_000102_ENABLE_PAGE_TABLE(1) |
464 S_000102_PAGE_TABLE_DEPTH(V_000102_PAGE_TABLE_FLAT
));
466 /* disable all other contexts */
467 for (i
= 1; i
< 8; i
++)
468 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
+ i
, 0);
470 /* setup the page table */
471 WREG32_MC(R_00012C_MC_PT0_CONTEXT0_FLAT_BASE_ADDR
,
472 rdev
->gart
.table_addr
);
473 WREG32_MC(R_00013C_MC_PT0_CONTEXT0_FLAT_START_ADDR
, rdev
->mc
.gtt_start
);
474 WREG32_MC(R_00014C_MC_PT0_CONTEXT0_FLAT_END_ADDR
, rdev
->mc
.gtt_end
);
475 WREG32_MC(R_00011C_MC_PT0_CONTEXT0_DEFAULT_READ_ADDR
, 0);
477 /* System context maps to VRAM space */
478 WREG32_MC(R_000112_MC_PT0_SYSTEM_APERTURE_LOW_ADDR
, rdev
->mc
.vram_start
);
479 WREG32_MC(R_000114_MC_PT0_SYSTEM_APERTURE_HIGH_ADDR
, rdev
->mc
.vram_end
);
481 /* enable page tables */
482 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
483 WREG32_MC(R_000100_MC_PT0_CNTL
, (tmp
| S_000100_ENABLE_PT(1)));
484 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
485 WREG32_MC(R_000009_MC_CNTL1
, (tmp
| S_000009_ENABLE_PAGE_TABLES(1)));
486 rs600_gart_tlb_flush(rdev
);
487 DRM_INFO("PCIE GART of %uM enabled (table at 0x%016llX).\n",
488 (unsigned)(rdev
->mc
.gtt_size
>> 20),
489 (unsigned long long)rdev
->gart
.table_addr
);
490 rdev
->gart
.ready
= true;
494 void rs600_gart_disable(struct radeon_device
*rdev
)
499 /* FIXME: disable out of gart access */
500 WREG32_MC(R_000100_MC_PT0_CNTL
, 0);
501 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
502 WREG32_MC(R_000009_MC_CNTL1
, tmp
& C_000009_ENABLE_PAGE_TABLES
);
503 if (rdev
->gart
.table
.vram
.robj
) {
504 r
= radeon_bo_reserve(rdev
->gart
.table
.vram
.robj
, false);
506 radeon_bo_kunmap(rdev
->gart
.table
.vram
.robj
);
507 radeon_bo_unpin(rdev
->gart
.table
.vram
.robj
);
508 radeon_bo_unreserve(rdev
->gart
.table
.vram
.robj
);
513 void rs600_gart_fini(struct radeon_device
*rdev
)
515 radeon_gart_fini(rdev
);
516 rs600_gart_disable(rdev
);
517 radeon_gart_table_vram_free(rdev
);
520 #define R600_PTE_VALID (1 << 0)
521 #define R600_PTE_SYSTEM (1 << 1)
522 #define R600_PTE_SNOOPED (1 << 2)
523 #define R600_PTE_READABLE (1 << 5)
524 #define R600_PTE_WRITEABLE (1 << 6)
526 int rs600_gart_set_page(struct radeon_device
*rdev
, int i
, uint64_t addr
)
528 void __iomem
*ptr
= (void *)rdev
->gart
.table
.vram
.ptr
;
530 if (i
< 0 || i
> rdev
->gart
.num_gpu_pages
) {
533 addr
= addr
& 0xFFFFFFFFFFFFF000ULL
;
534 addr
|= R600_PTE_VALID
| R600_PTE_SYSTEM
| R600_PTE_SNOOPED
;
535 addr
|= R600_PTE_READABLE
| R600_PTE_WRITEABLE
;
536 writeq(addr
, ptr
+ (i
* 8));
540 int rs600_irq_set(struct radeon_device
*rdev
)
543 uint32_t mode_int
= 0;
544 u32 hpd1
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
) &
545 ~S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
546 u32 hpd2
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
) &
547 ~S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
549 if (!rdev
->irq
.installed
) {
550 WARN(1, "Can't enable IRQ/MSI because no handler is installed\n");
551 WREG32(R_000040_GEN_INT_CNTL
, 0);
554 if (rdev
->irq
.sw_int
) {
555 tmp
|= S_000040_SW_INT_EN(1);
557 if (rdev
->irq
.gui_idle
) {
558 tmp
|= S_000040_GUI_IDLE(1);
560 if (rdev
->irq
.crtc_vblank_int
[0] ||
561 rdev
->irq
.pflip
[0]) {
562 mode_int
|= S_006540_D1MODE_VBLANK_INT_MASK(1);
564 if (rdev
->irq
.crtc_vblank_int
[1] ||
565 rdev
->irq
.pflip
[1]) {
566 mode_int
|= S_006540_D2MODE_VBLANK_INT_MASK(1);
568 if (rdev
->irq
.hpd
[0]) {
569 hpd1
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
571 if (rdev
->irq
.hpd
[1]) {
572 hpd2
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
574 WREG32(R_000040_GEN_INT_CNTL
, tmp
);
575 WREG32(R_006540_DxMODE_INT_MASK
, mode_int
);
576 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, hpd1
);
577 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, hpd2
);
581 static inline u32
rs600_irq_ack(struct radeon_device
*rdev
)
583 uint32_t irqs
= RREG32(R_000044_GEN_INT_STATUS
);
584 uint32_t irq_mask
= S_000044_SW_INT(1);
587 /* the interrupt works, but the status bit is permanently asserted */
588 if (rdev
->irq
.gui_idle
&& radeon_gui_idle(rdev
)) {
589 if (!rdev
->irq
.gui_idle_acked
)
590 irq_mask
|= S_000044_GUI_IDLE_STAT(1);
593 if (G_000044_DISPLAY_INT_STAT(irqs
)) {
594 rdev
->irq
.stat_regs
.r500
.disp_int
= RREG32(R_007EDC_DISP_INTERRUPT_STATUS
);
595 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
596 WREG32(R_006534_D1MODE_VBLANK_STATUS
,
597 S_006534_D1MODE_VBLANK_ACK(1));
599 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
600 WREG32(R_006D34_D2MODE_VBLANK_STATUS
,
601 S_006D34_D2MODE_VBLANK_ACK(1));
603 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
604 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
605 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_ACK(1);
606 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
608 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
609 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
610 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_ACK(1);
611 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
614 rdev
->irq
.stat_regs
.r500
.disp_int
= 0;
618 WREG32(R_000044_GEN_INT_STATUS
, irqs
);
620 return irqs
& irq_mask
;
623 void rs600_irq_disable(struct radeon_device
*rdev
)
625 WREG32(R_000040_GEN_INT_CNTL
, 0);
626 WREG32(R_006540_DxMODE_INT_MASK
, 0);
627 /* Wait and acknowledge irq */
632 int rs600_irq_process(struct radeon_device
*rdev
)
634 u32 status
, msi_rearm
;
635 bool queue_hotplug
= false;
637 /* reset gui idle ack. the status bit is broken */
638 rdev
->irq
.gui_idle_acked
= false;
640 status
= rs600_irq_ack(rdev
);
641 if (!status
&& !rdev
->irq
.stat_regs
.r500
.disp_int
) {
644 while (status
|| rdev
->irq
.stat_regs
.r500
.disp_int
) {
646 if (G_000044_SW_INT(status
)) {
647 radeon_fence_process(rdev
);
650 if (G_000040_GUI_IDLE(status
)) {
651 rdev
->irq
.gui_idle_acked
= true;
652 rdev
->pm
.gui_idle
= true;
653 wake_up(&rdev
->irq
.idle_queue
);
655 /* Vertical blank interrupts */
656 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
657 if (rdev
->irq
.crtc_vblank_int
[0]) {
658 drm_handle_vblank(rdev
->ddev
, 0);
659 rdev
->pm
.vblank_sync
= true;
660 wake_up(&rdev
->irq
.vblank_queue
);
662 if (rdev
->irq
.pflip
[0])
663 radeon_crtc_handle_flip(rdev
, 0);
665 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
666 if (rdev
->irq
.crtc_vblank_int
[1]) {
667 drm_handle_vblank(rdev
->ddev
, 1);
668 rdev
->pm
.vblank_sync
= true;
669 wake_up(&rdev
->irq
.vblank_queue
);
671 if (rdev
->irq
.pflip
[1])
672 radeon_crtc_handle_flip(rdev
, 1);
674 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
675 queue_hotplug
= true;
678 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
679 queue_hotplug
= true;
682 status
= rs600_irq_ack(rdev
);
684 /* reset gui idle ack. the status bit is broken */
685 rdev
->irq
.gui_idle_acked
= false;
687 schedule_work(&rdev
->hotplug_work
);
688 if (rdev
->msi_enabled
) {
689 switch (rdev
->family
) {
693 msi_rearm
= RREG32(RADEON_BUS_CNTL
) & ~RS600_MSI_REARM
;
694 WREG32(RADEON_BUS_CNTL
, msi_rearm
);
695 WREG32(RADEON_BUS_CNTL
, msi_rearm
| RS600_MSI_REARM
);
698 msi_rearm
= RREG32(RADEON_MSI_REARM_EN
) & ~RV370_MSI_REARM_EN
;
699 WREG32(RADEON_MSI_REARM_EN
, msi_rearm
);
700 WREG32(RADEON_MSI_REARM_EN
, msi_rearm
| RV370_MSI_REARM_EN
);
707 u32
rs600_get_vblank_counter(struct radeon_device
*rdev
, int crtc
)
710 return RREG32(R_0060A4_D1CRTC_STATUS_FRAME_COUNT
);
712 return RREG32(R_0068A4_D2CRTC_STATUS_FRAME_COUNT
);
715 int rs600_mc_wait_for_idle(struct radeon_device
*rdev
)
719 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
720 if (G_000000_MC_IDLE(RREG32_MC(R_000000_MC_STATUS
)))
727 void rs600_gpu_init(struct radeon_device
*rdev
)
729 r420_pipes_init(rdev
);
730 /* Wait for mc idle */
731 if (rs600_mc_wait_for_idle(rdev
))
732 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
735 void rs600_mc_init(struct radeon_device
*rdev
)
739 rdev
->mc
.aper_base
= pci_resource_start(rdev
->pdev
, 0);
740 rdev
->mc
.aper_size
= pci_resource_len(rdev
->pdev
, 0);
741 rdev
->mc
.vram_is_ddr
= true;
742 rdev
->mc
.vram_width
= 128;
743 rdev
->mc
.real_vram_size
= RREG32(RADEON_CONFIG_MEMSIZE
);
744 rdev
->mc
.mc_vram_size
= rdev
->mc
.real_vram_size
;
745 rdev
->mc
.visible_vram_size
= rdev
->mc
.aper_size
;
746 rdev
->mc
.igp_sideport_enabled
= radeon_atombios_sideport_present(rdev
);
747 base
= RREG32_MC(R_000004_MC_FB_LOCATION
);
748 base
= G_000004_MC_FB_START(base
) << 16;
749 radeon_vram_location(rdev
, &rdev
->mc
, base
);
750 rdev
->mc
.gtt_base_align
= 0;
751 radeon_gtt_location(rdev
, &rdev
->mc
);
752 radeon_update_bandwidth_info(rdev
);
755 void rs600_bandwidth_update(struct radeon_device
*rdev
)
757 struct drm_display_mode
*mode0
= NULL
;
758 struct drm_display_mode
*mode1
= NULL
;
759 u32 d1mode_priority_a_cnt
, d2mode_priority_a_cnt
;
760 /* FIXME: implement full support */
762 radeon_update_display_priority(rdev
);
764 if (rdev
->mode_info
.crtcs
[0]->base
.enabled
)
765 mode0
= &rdev
->mode_info
.crtcs
[0]->base
.mode
;
766 if (rdev
->mode_info
.crtcs
[1]->base
.enabled
)
767 mode1
= &rdev
->mode_info
.crtcs
[1]->base
.mode
;
769 rs690_line_buffer_adjust(rdev
, mode0
, mode1
);
771 if (rdev
->disp_priority
== 2) {
772 d1mode_priority_a_cnt
= RREG32(R_006548_D1MODE_PRIORITY_A_CNT
);
773 d2mode_priority_a_cnt
= RREG32(R_006D48_D2MODE_PRIORITY_A_CNT
);
774 d1mode_priority_a_cnt
|= S_006548_D1MODE_PRIORITY_A_ALWAYS_ON(1);
775 d2mode_priority_a_cnt
|= S_006D48_D2MODE_PRIORITY_A_ALWAYS_ON(1);
776 WREG32(R_006548_D1MODE_PRIORITY_A_CNT
, d1mode_priority_a_cnt
);
777 WREG32(R_00654C_D1MODE_PRIORITY_B_CNT
, d1mode_priority_a_cnt
);
778 WREG32(R_006D48_D2MODE_PRIORITY_A_CNT
, d2mode_priority_a_cnt
);
779 WREG32(R_006D4C_D2MODE_PRIORITY_B_CNT
, d2mode_priority_a_cnt
);
783 uint32_t rs600_mc_rreg(struct radeon_device
*rdev
, uint32_t reg
)
785 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
786 S_000070_MC_IND_CITF_ARB0(1));
787 return RREG32(R_000074_MC_IND_DATA
);
790 void rs600_mc_wreg(struct radeon_device
*rdev
, uint32_t reg
, uint32_t v
)
792 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
793 S_000070_MC_IND_CITF_ARB0(1) | S_000070_MC_IND_WR_EN(1));
794 WREG32(R_000074_MC_IND_DATA
, v
);
797 void rs600_debugfs(struct radeon_device
*rdev
)
799 if (r100_debugfs_rbbm_init(rdev
))
800 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
803 void rs600_set_safe_registers(struct radeon_device
*rdev
)
805 rdev
->config
.r300
.reg_safe_bm
= rs600_reg_safe_bm
;
806 rdev
->config
.r300
.reg_safe_bm_size
= ARRAY_SIZE(rs600_reg_safe_bm
);
809 static void rs600_mc_program(struct radeon_device
*rdev
)
811 struct rv515_mc_save save
;
813 /* Stops all mc clients */
814 rv515_mc_stop(rdev
, &save
);
816 /* Wait for mc idle */
817 if (rs600_mc_wait_for_idle(rdev
))
818 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
820 /* FIXME: What does AGP means for such chipset ? */
821 WREG32_MC(R_000005_MC_AGP_LOCATION
, 0x0FFFFFFF);
822 WREG32_MC(R_000006_AGP_BASE
, 0);
823 WREG32_MC(R_000007_AGP_BASE_2
, 0);
825 WREG32_MC(R_000004_MC_FB_LOCATION
,
826 S_000004_MC_FB_START(rdev
->mc
.vram_start
>> 16) |
827 S_000004_MC_FB_TOP(rdev
->mc
.vram_end
>> 16));
828 WREG32(R_000134_HDP_FB_LOCATION
,
829 S_000134_HDP_FB_START(rdev
->mc
.vram_start
>> 16));
831 rv515_mc_resume(rdev
, &save
);
834 static int rs600_startup(struct radeon_device
*rdev
)
838 rs600_mc_program(rdev
);
840 rv515_clock_startup(rdev
);
841 /* Initialize GPU configuration (# pipes, ...) */
842 rs600_gpu_init(rdev
);
843 /* Initialize GART (initialize after TTM so we can allocate
844 * memory through TTM but finalize after TTM) */
845 r
= rs600_gart_enable(rdev
);
849 /* allocate wb buffer */
850 r
= radeon_wb_init(rdev
);
856 rdev
->config
.r300
.hdp_cntl
= RREG32(RADEON_HOST_PATH_CNTL
);
858 r
= r100_cp_init(rdev
, 1024 * 1024);
860 dev_err(rdev
->dev
, "failed initializing CP (%d).\n", r
);
863 r
= r100_ib_init(rdev
);
865 dev_err(rdev
->dev
, "failed initializing IB (%d).\n", r
);
869 r
= r600_audio_init(rdev
);
871 dev_err(rdev
->dev
, "failed initializing audio\n");
878 int rs600_resume(struct radeon_device
*rdev
)
880 /* Make sur GART are not working */
881 rs600_gart_disable(rdev
);
882 /* Resume clock before doing reset */
883 rv515_clock_startup(rdev
);
884 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
885 if (radeon_asic_reset(rdev
)) {
886 dev_warn(rdev
->dev
, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
887 RREG32(R_000E40_RBBM_STATUS
),
888 RREG32(R_0007C0_CP_STAT
));
891 atom_asic_init(rdev
->mode_info
.atom_context
);
892 /* Resume clock after posting */
893 rv515_clock_startup(rdev
);
894 /* Initialize surface registers */
895 radeon_surface_init(rdev
);
896 return rs600_startup(rdev
);
899 int rs600_suspend(struct radeon_device
*rdev
)
901 r600_audio_fini(rdev
);
902 r100_cp_disable(rdev
);
903 radeon_wb_disable(rdev
);
904 rs600_irq_disable(rdev
);
905 rs600_gart_disable(rdev
);
909 void rs600_fini(struct radeon_device
*rdev
)
911 r600_audio_fini(rdev
);
913 radeon_wb_fini(rdev
);
915 radeon_gem_fini(rdev
);
916 rs600_gart_fini(rdev
);
917 radeon_irq_kms_fini(rdev
);
918 radeon_fence_driver_fini(rdev
);
919 radeon_bo_fini(rdev
);
920 radeon_atombios_fini(rdev
);
925 int rs600_init(struct radeon_device
*rdev
)
930 rv515_vga_render_disable(rdev
);
931 /* Initialize scratch registers */
932 radeon_scratch_init(rdev
);
933 /* Initialize surface registers */
934 radeon_surface_init(rdev
);
935 /* restore some register to sane defaults */
936 r100_restore_sanity(rdev
);
938 if (!radeon_get_bios(rdev
)) {
939 if (ASIC_IS_AVIVO(rdev
))
942 if (rdev
->is_atom_bios
) {
943 r
= radeon_atombios_init(rdev
);
947 dev_err(rdev
->dev
, "Expecting atombios for RS600 GPU\n");
950 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
951 if (radeon_asic_reset(rdev
)) {
953 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
954 RREG32(R_000E40_RBBM_STATUS
),
955 RREG32(R_0007C0_CP_STAT
));
957 /* check if cards are posted or not */
958 if (radeon_boot_test_post_card(rdev
) == false)
961 /* Initialize clocks */
962 radeon_get_clock_info(rdev
->ddev
);
963 /* initialize memory controller */
967 r
= radeon_fence_driver_init(rdev
);
970 r
= radeon_irq_kms_init(rdev
);
974 r
= radeon_bo_init(rdev
);
977 r
= rs600_gart_init(rdev
);
980 rs600_set_safe_registers(rdev
);
981 rdev
->accel_working
= true;
982 r
= rs600_startup(rdev
);
984 /* Somethings want wront with the accel init stop accel */
985 dev_err(rdev
->dev
, "Disabling GPU acceleration\n");
987 radeon_wb_fini(rdev
);
989 rs600_gart_fini(rdev
);
990 radeon_irq_kms_fini(rdev
);
991 rdev
->accel_working
= false;