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 avivo_wait_for_vblank(struct radeon_device
*rdev
, int crtc
)
51 struct radeon_crtc
*radeon_crtc
= rdev
->mode_info
.crtcs
[crtc
];
54 if (RREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
) & AVIVO_CRTC_EN
) {
55 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
56 if (!(RREG32(AVIVO_D1CRTC_STATUS
+ radeon_crtc
->crtc_offset
) & AVIVO_D1CRTC_V_BLANK
))
60 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
61 if (RREG32(AVIVO_D1CRTC_STATUS
+ radeon_crtc
->crtc_offset
) & AVIVO_D1CRTC_V_BLANK
)
68 void rs600_pre_page_flip(struct radeon_device
*rdev
, int crtc
)
70 /* enable the pflip int */
71 radeon_irq_kms_pflip_irq_get(rdev
, crtc
);
74 void rs600_post_page_flip(struct radeon_device
*rdev
, int crtc
)
76 /* disable the pflip int */
77 radeon_irq_kms_pflip_irq_put(rdev
, crtc
);
80 u32
rs600_page_flip(struct radeon_device
*rdev
, int crtc_id
, u64 crtc_base
)
82 struct radeon_crtc
*radeon_crtc
= rdev
->mode_info
.crtcs
[crtc_id
];
83 u32 tmp
= RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
);
86 /* Lock the graphics update lock */
87 tmp
|= AVIVO_D1GRPH_UPDATE_LOCK
;
88 WREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
, tmp
);
90 /* update the scanout addresses */
91 WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS
+ radeon_crtc
->crtc_offset
,
93 WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS
+ radeon_crtc
->crtc_offset
,
96 /* Wait for update_pending to go high. */
97 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
98 if (RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING
)
102 DRM_DEBUG("Update pending now high. Unlocking vupdate_lock.\n");
104 /* Unlock the lock, so double-buffering can take place inside vblank */
105 tmp
&= ~AVIVO_D1GRPH_UPDATE_LOCK
;
106 WREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
, tmp
);
108 /* Return current update_pending status: */
109 return RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING
;
112 void rs600_pm_misc(struct radeon_device
*rdev
)
114 int requested_index
= rdev
->pm
.requested_power_state_index
;
115 struct radeon_power_state
*ps
= &rdev
->pm
.power_state
[requested_index
];
116 struct radeon_voltage
*voltage
= &ps
->clock_info
[0].voltage
;
117 u32 tmp
, dyn_pwrmgt_sclk_length
, dyn_sclk_vol_cntl
;
118 u32 hdp_dyn_cntl
, /*mc_host_dyn_cntl,*/ dyn_backbias_cntl
;
120 if ((voltage
->type
== VOLTAGE_GPIO
) && (voltage
->gpio
.valid
)) {
121 if (ps
->misc
& ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT
) {
122 tmp
= RREG32(voltage
->gpio
.reg
);
123 if (voltage
->active_high
)
124 tmp
|= voltage
->gpio
.mask
;
126 tmp
&= ~(voltage
->gpio
.mask
);
127 WREG32(voltage
->gpio
.reg
, tmp
);
129 udelay(voltage
->delay
);
131 tmp
= RREG32(voltage
->gpio
.reg
);
132 if (voltage
->active_high
)
133 tmp
&= ~voltage
->gpio
.mask
;
135 tmp
|= voltage
->gpio
.mask
;
136 WREG32(voltage
->gpio
.reg
, tmp
);
138 udelay(voltage
->delay
);
140 } else if (voltage
->type
== VOLTAGE_VDDC
)
141 radeon_atom_set_voltage(rdev
, voltage
->vddc_id
, SET_VOLTAGE_TYPE_ASIC_VDDC
);
143 dyn_pwrmgt_sclk_length
= RREG32_PLL(DYN_PWRMGT_SCLK_LENGTH
);
144 dyn_pwrmgt_sclk_length
&= ~REDUCED_POWER_SCLK_HILEN(0xf);
145 dyn_pwrmgt_sclk_length
&= ~REDUCED_POWER_SCLK_LOLEN(0xf);
146 if (ps
->misc
& ATOM_PM_MISCINFO_ASIC_REDUCED_SPEED_SCLK_EN
) {
147 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_CLOCK_DIVIDER_BY_2
) {
148 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(2);
149 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(2);
150 } else if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_CLOCK_DIVIDER_BY_4
) {
151 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(4);
152 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(4);
155 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(1);
156 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(1);
158 WREG32_PLL(DYN_PWRMGT_SCLK_LENGTH
, dyn_pwrmgt_sclk_length
);
160 dyn_sclk_vol_cntl
= RREG32_PLL(DYN_SCLK_VOL_CNTL
);
161 if (ps
->misc
& ATOM_PM_MISCINFO_ASIC_DYNAMIC_VOLTAGE_EN
) {
162 dyn_sclk_vol_cntl
|= IO_CG_VOLTAGE_DROP
;
163 if (voltage
->delay
) {
164 dyn_sclk_vol_cntl
|= VOLTAGE_DROP_SYNC
;
165 dyn_sclk_vol_cntl
|= VOLTAGE_DELAY_SEL(voltage
->delay
);
167 dyn_sclk_vol_cntl
&= ~VOLTAGE_DROP_SYNC
;
169 dyn_sclk_vol_cntl
&= ~IO_CG_VOLTAGE_DROP
;
170 WREG32_PLL(DYN_SCLK_VOL_CNTL
, dyn_sclk_vol_cntl
);
172 hdp_dyn_cntl
= RREG32_PLL(HDP_DYN_CNTL
);
173 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_HDP_BLOCK_EN
)
174 hdp_dyn_cntl
&= ~HDP_FORCEON
;
176 hdp_dyn_cntl
|= HDP_FORCEON
;
177 WREG32_PLL(HDP_DYN_CNTL
, hdp_dyn_cntl
);
179 /* mc_host_dyn seems to cause hangs from time to time */
180 mc_host_dyn_cntl
= RREG32_PLL(MC_HOST_DYN_CNTL
);
181 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_MC_HOST_BLOCK_EN
)
182 mc_host_dyn_cntl
&= ~MC_HOST_FORCEON
;
184 mc_host_dyn_cntl
|= MC_HOST_FORCEON
;
185 WREG32_PLL(MC_HOST_DYN_CNTL
, mc_host_dyn_cntl
);
187 dyn_backbias_cntl
= RREG32_PLL(DYN_BACKBIAS_CNTL
);
188 if (ps
->misc
& ATOM_PM_MISCINFO2_DYNAMIC_BACK_BIAS_EN
)
189 dyn_backbias_cntl
|= IO_CG_BACKBIAS_EN
;
191 dyn_backbias_cntl
&= ~IO_CG_BACKBIAS_EN
;
192 WREG32_PLL(DYN_BACKBIAS_CNTL
, dyn_backbias_cntl
);
195 if ((rdev
->flags
& RADEON_IS_PCIE
) &&
196 !(rdev
->flags
& RADEON_IS_IGP
) &&
197 rdev
->asic
->pm
.set_pcie_lanes
&&
199 rdev
->pm
.power_state
[rdev
->pm
.current_power_state_index
].pcie_lanes
)) {
200 radeon_set_pcie_lanes(rdev
,
202 DRM_DEBUG("Setting: p: %d\n", ps
->pcie_lanes
);
206 void rs600_pm_prepare(struct radeon_device
*rdev
)
208 struct drm_device
*ddev
= rdev
->ddev
;
209 struct drm_crtc
*crtc
;
210 struct radeon_crtc
*radeon_crtc
;
213 /* disable any active CRTCs */
214 list_for_each_entry(crtc
, &ddev
->mode_config
.crtc_list
, head
) {
215 radeon_crtc
= to_radeon_crtc(crtc
);
216 if (radeon_crtc
->enabled
) {
217 tmp
= RREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
);
218 tmp
|= AVIVO_CRTC_DISP_READ_REQUEST_DISABLE
;
219 WREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
, tmp
);
224 void rs600_pm_finish(struct radeon_device
*rdev
)
226 struct drm_device
*ddev
= rdev
->ddev
;
227 struct drm_crtc
*crtc
;
228 struct radeon_crtc
*radeon_crtc
;
231 /* enable any active CRTCs */
232 list_for_each_entry(crtc
, &ddev
->mode_config
.crtc_list
, head
) {
233 radeon_crtc
= to_radeon_crtc(crtc
);
234 if (radeon_crtc
->enabled
) {
235 tmp
= RREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
);
236 tmp
&= ~AVIVO_CRTC_DISP_READ_REQUEST_DISABLE
;
237 WREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
, tmp
);
242 /* hpd for digital panel detect/disconnect */
243 bool rs600_hpd_sense(struct radeon_device
*rdev
, enum radeon_hpd_id hpd
)
246 bool connected
= false;
250 tmp
= RREG32(R_007D04_DC_HOT_PLUG_DETECT1_INT_STATUS
);
251 if (G_007D04_DC_HOT_PLUG_DETECT1_SENSE(tmp
))
255 tmp
= RREG32(R_007D14_DC_HOT_PLUG_DETECT2_INT_STATUS
);
256 if (G_007D14_DC_HOT_PLUG_DETECT2_SENSE(tmp
))
265 void rs600_hpd_set_polarity(struct radeon_device
*rdev
,
266 enum radeon_hpd_id hpd
)
269 bool connected
= rs600_hpd_sense(rdev
, hpd
);
273 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
275 tmp
&= ~S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
277 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
278 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
281 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
283 tmp
&= ~S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
285 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
286 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
293 void rs600_hpd_init(struct radeon_device
*rdev
)
295 struct drm_device
*dev
= rdev
->ddev
;
296 struct drm_connector
*connector
;
298 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
299 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
300 switch (radeon_connector
->hpd
.hpd
) {
302 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
303 S_007D00_DC_HOT_PLUG_DETECT1_EN(1));
304 rdev
->irq
.hpd
[0] = true;
307 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
308 S_007D10_DC_HOT_PLUG_DETECT2_EN(1));
309 rdev
->irq
.hpd
[1] = true;
314 radeon_hpd_set_polarity(rdev
, radeon_connector
->hpd
.hpd
);
316 if (rdev
->irq
.installed
)
320 void rs600_hpd_fini(struct radeon_device
*rdev
)
322 struct drm_device
*dev
= rdev
->ddev
;
323 struct drm_connector
*connector
;
325 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
326 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
327 switch (radeon_connector
->hpd
.hpd
) {
329 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
330 S_007D00_DC_HOT_PLUG_DETECT1_EN(0));
331 rdev
->irq
.hpd
[0] = false;
334 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
335 S_007D10_DC_HOT_PLUG_DETECT2_EN(0));
336 rdev
->irq
.hpd
[1] = false;
344 int rs600_asic_reset(struct radeon_device
*rdev
)
346 struct rv515_mc_save save
;
350 status
= RREG32(R_000E40_RBBM_STATUS
);
351 if (!G_000E40_GUI_ACTIVE(status
)) {
354 /* Stops all mc clients */
355 rv515_mc_stop(rdev
, &save
);
356 status
= RREG32(R_000E40_RBBM_STATUS
);
357 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
359 WREG32(RADEON_CP_CSQ_CNTL
, 0);
360 tmp
= RREG32(RADEON_CP_RB_CNTL
);
361 WREG32(RADEON_CP_RB_CNTL
, tmp
| RADEON_RB_RPTR_WR_ENA
);
362 WREG32(RADEON_CP_RB_RPTR_WR
, 0);
363 WREG32(RADEON_CP_RB_WPTR
, 0);
364 WREG32(RADEON_CP_RB_CNTL
, tmp
);
365 pci_save_state(rdev
->pdev
);
366 /* disable bus mastering */
367 pci_clear_master(rdev
->pdev
);
370 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_VAP(1) |
371 S_0000F0_SOFT_RESET_GA(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
);
379 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_CP(1));
380 RREG32(R_0000F0_RBBM_SOFT_RESET
);
382 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
384 status
= RREG32(R_000E40_RBBM_STATUS
);
385 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
387 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_MC(1));
388 RREG32(R_0000F0_RBBM_SOFT_RESET
);
390 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
392 status
= RREG32(R_000E40_RBBM_STATUS
);
393 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
394 /* restore PCI & busmastering */
395 pci_restore_state(rdev
->pdev
);
396 /* Check if GPU is idle */
397 if (G_000E40_GA_BUSY(status
) || G_000E40_VAP_BUSY(status
)) {
398 dev_err(rdev
->dev
, "failed to reset GPU\n");
399 rdev
->gpu_lockup
= true;
402 dev_info(rdev
->dev
, "GPU reset succeed\n");
403 rv515_mc_resume(rdev
, &save
);
410 void rs600_gart_tlb_flush(struct radeon_device
*rdev
)
414 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
415 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
416 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
418 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
419 tmp
|= S_000100_INVALIDATE_ALL_L1_TLBS(1) | S_000100_INVALIDATE_L2_CACHE(1);
420 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
422 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
423 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
424 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
425 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
428 int rs600_gart_init(struct radeon_device
*rdev
)
432 if (rdev
->gart
.robj
) {
433 WARN(1, "RS600 GART already initialized\n");
436 /* Initialize common gart structure */
437 r
= radeon_gart_init(rdev
);
441 rdev
->gart
.table_size
= rdev
->gart
.num_gpu_pages
* 8;
442 return radeon_gart_table_vram_alloc(rdev
);
445 static int rs600_gart_enable(struct radeon_device
*rdev
)
450 if (rdev
->gart
.robj
== NULL
) {
451 dev_err(rdev
->dev
, "No VRAM object for PCIE GART.\n");
454 r
= radeon_gart_table_vram_pin(rdev
);
457 radeon_gart_restore(rdev
);
458 /* Enable bus master */
459 tmp
= RREG32(RADEON_BUS_CNTL
) & ~RS600_BUS_MASTER_DIS
;
460 WREG32(RADEON_BUS_CNTL
, tmp
);
461 /* FIXME: setup default page */
462 WREG32_MC(R_000100_MC_PT0_CNTL
,
463 (S_000100_EFFECTIVE_L2_CACHE_SIZE(6) |
464 S_000100_EFFECTIVE_L2_QUEUE_SIZE(6)));
466 for (i
= 0; i
< 19; i
++) {
467 WREG32_MC(R_00016C_MC_PT0_CLIENT0_CNTL
+ i
,
468 S_00016C_ENABLE_TRANSLATION_MODE_OVERRIDE(1) |
469 S_00016C_SYSTEM_ACCESS_MODE_MASK(
470 V_00016C_SYSTEM_ACCESS_MODE_NOT_IN_SYS
) |
471 S_00016C_SYSTEM_APERTURE_UNMAPPED_ACCESS(
472 V_00016C_SYSTEM_APERTURE_UNMAPPED_PASSTHROUGH
) |
473 S_00016C_EFFECTIVE_L1_CACHE_SIZE(3) |
474 S_00016C_ENABLE_FRAGMENT_PROCESSING(1) |
475 S_00016C_EFFECTIVE_L1_QUEUE_SIZE(3));
477 /* enable first context */
478 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
,
479 S_000102_ENABLE_PAGE_TABLE(1) |
480 S_000102_PAGE_TABLE_DEPTH(V_000102_PAGE_TABLE_FLAT
));
482 /* disable all other contexts */
483 for (i
= 1; i
< 8; i
++)
484 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
+ i
, 0);
486 /* setup the page table */
487 WREG32_MC(R_00012C_MC_PT0_CONTEXT0_FLAT_BASE_ADDR
,
488 rdev
->gart
.table_addr
);
489 WREG32_MC(R_00013C_MC_PT0_CONTEXT0_FLAT_START_ADDR
, rdev
->mc
.gtt_start
);
490 WREG32_MC(R_00014C_MC_PT0_CONTEXT0_FLAT_END_ADDR
, rdev
->mc
.gtt_end
);
491 WREG32_MC(R_00011C_MC_PT0_CONTEXT0_DEFAULT_READ_ADDR
, 0);
493 /* System context maps to VRAM space */
494 WREG32_MC(R_000112_MC_PT0_SYSTEM_APERTURE_LOW_ADDR
, rdev
->mc
.vram_start
);
495 WREG32_MC(R_000114_MC_PT0_SYSTEM_APERTURE_HIGH_ADDR
, rdev
->mc
.vram_end
);
497 /* enable page tables */
498 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
499 WREG32_MC(R_000100_MC_PT0_CNTL
, (tmp
| S_000100_ENABLE_PT(1)));
500 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
501 WREG32_MC(R_000009_MC_CNTL1
, (tmp
| S_000009_ENABLE_PAGE_TABLES(1)));
502 rs600_gart_tlb_flush(rdev
);
503 DRM_INFO("PCIE GART of %uM enabled (table at 0x%016llX).\n",
504 (unsigned)(rdev
->mc
.gtt_size
>> 20),
505 (unsigned long long)rdev
->gart
.table_addr
);
506 rdev
->gart
.ready
= true;
510 void rs600_gart_disable(struct radeon_device
*rdev
)
514 /* FIXME: disable out of gart access */
515 WREG32_MC(R_000100_MC_PT0_CNTL
, 0);
516 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
517 WREG32_MC(R_000009_MC_CNTL1
, tmp
& C_000009_ENABLE_PAGE_TABLES
);
518 radeon_gart_table_vram_unpin(rdev
);
521 void rs600_gart_fini(struct radeon_device
*rdev
)
523 radeon_gart_fini(rdev
);
524 rs600_gart_disable(rdev
);
525 radeon_gart_table_vram_free(rdev
);
528 #define R600_PTE_VALID (1 << 0)
529 #define R600_PTE_SYSTEM (1 << 1)
530 #define R600_PTE_SNOOPED (1 << 2)
531 #define R600_PTE_READABLE (1 << 5)
532 #define R600_PTE_WRITEABLE (1 << 6)
534 int rs600_gart_set_page(struct radeon_device
*rdev
, int i
, uint64_t addr
)
536 void __iomem
*ptr
= (void *)rdev
->gart
.ptr
;
538 if (i
< 0 || i
> rdev
->gart
.num_gpu_pages
) {
541 addr
= addr
& 0xFFFFFFFFFFFFF000ULL
;
542 if (addr
!= rdev
->dummy_page
.addr
)
543 addr
|= R600_PTE_VALID
| R600_PTE_READABLE
|
545 addr
|= R600_PTE_SYSTEM
| R600_PTE_SNOOPED
;
546 writeq(addr
, ptr
+ (i
* 8));
550 int rs600_irq_set(struct radeon_device
*rdev
)
553 uint32_t mode_int
= 0;
554 u32 hpd1
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
) &
555 ~S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
556 u32 hpd2
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
) &
557 ~S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
559 if (!rdev
->irq
.installed
) {
560 WARN(1, "Can't enable IRQ/MSI because no handler is installed\n");
561 WREG32(R_000040_GEN_INT_CNTL
, 0);
564 if (rdev
->irq
.sw_int
[RADEON_RING_TYPE_GFX_INDEX
]) {
565 tmp
|= S_000040_SW_INT_EN(1);
567 if (rdev
->irq
.gui_idle
) {
568 tmp
|= S_000040_GUI_IDLE(1);
570 if (rdev
->irq
.crtc_vblank_int
[0] ||
571 rdev
->irq
.pflip
[0]) {
572 mode_int
|= S_006540_D1MODE_VBLANK_INT_MASK(1);
574 if (rdev
->irq
.crtc_vblank_int
[1] ||
575 rdev
->irq
.pflip
[1]) {
576 mode_int
|= S_006540_D2MODE_VBLANK_INT_MASK(1);
578 if (rdev
->irq
.hpd
[0]) {
579 hpd1
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
581 if (rdev
->irq
.hpd
[1]) {
582 hpd2
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
584 WREG32(R_000040_GEN_INT_CNTL
, tmp
);
585 WREG32(R_006540_DxMODE_INT_MASK
, mode_int
);
586 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, hpd1
);
587 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, hpd2
);
591 static inline u32
rs600_irq_ack(struct radeon_device
*rdev
)
593 uint32_t irqs
= RREG32(R_000044_GEN_INT_STATUS
);
594 uint32_t irq_mask
= S_000044_SW_INT(1);
597 /* the interrupt works, but the status bit is permanently asserted */
598 if (rdev
->irq
.gui_idle
&& radeon_gui_idle(rdev
)) {
599 if (!rdev
->irq
.gui_idle_acked
)
600 irq_mask
|= S_000044_GUI_IDLE_STAT(1);
603 if (G_000044_DISPLAY_INT_STAT(irqs
)) {
604 rdev
->irq
.stat_regs
.r500
.disp_int
= RREG32(R_007EDC_DISP_INTERRUPT_STATUS
);
605 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
606 WREG32(R_006534_D1MODE_VBLANK_STATUS
,
607 S_006534_D1MODE_VBLANK_ACK(1));
609 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
610 WREG32(R_006D34_D2MODE_VBLANK_STATUS
,
611 S_006D34_D2MODE_VBLANK_ACK(1));
613 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
614 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
615 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_ACK(1);
616 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
618 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
619 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
620 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_ACK(1);
621 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
624 rdev
->irq
.stat_regs
.r500
.disp_int
= 0;
628 WREG32(R_000044_GEN_INT_STATUS
, irqs
);
630 return irqs
& irq_mask
;
633 void rs600_irq_disable(struct radeon_device
*rdev
)
635 WREG32(R_000040_GEN_INT_CNTL
, 0);
636 WREG32(R_006540_DxMODE_INT_MASK
, 0);
637 /* Wait and acknowledge irq */
642 int rs600_irq_process(struct radeon_device
*rdev
)
644 u32 status
, msi_rearm
;
645 bool queue_hotplug
= false;
647 /* reset gui idle ack. the status bit is broken */
648 rdev
->irq
.gui_idle_acked
= false;
650 status
= rs600_irq_ack(rdev
);
651 if (!status
&& !rdev
->irq
.stat_regs
.r500
.disp_int
) {
654 while (status
|| rdev
->irq
.stat_regs
.r500
.disp_int
) {
656 if (G_000044_SW_INT(status
)) {
657 radeon_fence_process(rdev
, RADEON_RING_TYPE_GFX_INDEX
);
660 if (G_000040_GUI_IDLE(status
)) {
661 rdev
->irq
.gui_idle_acked
= true;
662 rdev
->pm
.gui_idle
= true;
663 wake_up(&rdev
->irq
.idle_queue
);
665 /* Vertical blank interrupts */
666 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
667 if (rdev
->irq
.crtc_vblank_int
[0]) {
668 drm_handle_vblank(rdev
->ddev
, 0);
669 rdev
->pm
.vblank_sync
= true;
670 wake_up(&rdev
->irq
.vblank_queue
);
672 if (rdev
->irq
.pflip
[0])
673 radeon_crtc_handle_flip(rdev
, 0);
675 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
676 if (rdev
->irq
.crtc_vblank_int
[1]) {
677 drm_handle_vblank(rdev
->ddev
, 1);
678 rdev
->pm
.vblank_sync
= true;
679 wake_up(&rdev
->irq
.vblank_queue
);
681 if (rdev
->irq
.pflip
[1])
682 radeon_crtc_handle_flip(rdev
, 1);
684 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
685 queue_hotplug
= true;
688 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
689 queue_hotplug
= true;
692 status
= rs600_irq_ack(rdev
);
694 /* reset gui idle ack. the status bit is broken */
695 rdev
->irq
.gui_idle_acked
= false;
697 schedule_work(&rdev
->hotplug_work
);
698 if (rdev
->msi_enabled
) {
699 switch (rdev
->family
) {
703 msi_rearm
= RREG32(RADEON_BUS_CNTL
) & ~RS600_MSI_REARM
;
704 WREG32(RADEON_BUS_CNTL
, msi_rearm
);
705 WREG32(RADEON_BUS_CNTL
, msi_rearm
| RS600_MSI_REARM
);
708 WREG32(RADEON_MSI_REARM_EN
, RV370_MSI_REARM_EN
);
715 u32
rs600_get_vblank_counter(struct radeon_device
*rdev
, int crtc
)
718 return RREG32(R_0060A4_D1CRTC_STATUS_FRAME_COUNT
);
720 return RREG32(R_0068A4_D2CRTC_STATUS_FRAME_COUNT
);
723 int rs600_mc_wait_for_idle(struct radeon_device
*rdev
)
727 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
728 if (G_000000_MC_IDLE(RREG32_MC(R_000000_MC_STATUS
)))
735 void rs600_gpu_init(struct radeon_device
*rdev
)
737 r420_pipes_init(rdev
);
738 /* Wait for mc idle */
739 if (rs600_mc_wait_for_idle(rdev
))
740 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
743 void rs600_mc_init(struct radeon_device
*rdev
)
747 rdev
->mc
.aper_base
= pci_resource_start(rdev
->pdev
, 0);
748 rdev
->mc
.aper_size
= pci_resource_len(rdev
->pdev
, 0);
749 rdev
->mc
.vram_is_ddr
= true;
750 rdev
->mc
.vram_width
= 128;
751 rdev
->mc
.real_vram_size
= RREG32(RADEON_CONFIG_MEMSIZE
);
752 rdev
->mc
.mc_vram_size
= rdev
->mc
.real_vram_size
;
753 rdev
->mc
.visible_vram_size
= rdev
->mc
.aper_size
;
754 rdev
->mc
.igp_sideport_enabled
= radeon_atombios_sideport_present(rdev
);
755 base
= RREG32_MC(R_000004_MC_FB_LOCATION
);
756 base
= G_000004_MC_FB_START(base
) << 16;
757 radeon_vram_location(rdev
, &rdev
->mc
, base
);
758 rdev
->mc
.gtt_base_align
= 0;
759 radeon_gtt_location(rdev
, &rdev
->mc
);
760 radeon_update_bandwidth_info(rdev
);
763 void rs600_bandwidth_update(struct radeon_device
*rdev
)
765 struct drm_display_mode
*mode0
= NULL
;
766 struct drm_display_mode
*mode1
= NULL
;
767 u32 d1mode_priority_a_cnt
, d2mode_priority_a_cnt
;
768 /* FIXME: implement full support */
770 radeon_update_display_priority(rdev
);
772 if (rdev
->mode_info
.crtcs
[0]->base
.enabled
)
773 mode0
= &rdev
->mode_info
.crtcs
[0]->base
.mode
;
774 if (rdev
->mode_info
.crtcs
[1]->base
.enabled
)
775 mode1
= &rdev
->mode_info
.crtcs
[1]->base
.mode
;
777 rs690_line_buffer_adjust(rdev
, mode0
, mode1
);
779 if (rdev
->disp_priority
== 2) {
780 d1mode_priority_a_cnt
= RREG32(R_006548_D1MODE_PRIORITY_A_CNT
);
781 d2mode_priority_a_cnt
= RREG32(R_006D48_D2MODE_PRIORITY_A_CNT
);
782 d1mode_priority_a_cnt
|= S_006548_D1MODE_PRIORITY_A_ALWAYS_ON(1);
783 d2mode_priority_a_cnt
|= S_006D48_D2MODE_PRIORITY_A_ALWAYS_ON(1);
784 WREG32(R_006548_D1MODE_PRIORITY_A_CNT
, d1mode_priority_a_cnt
);
785 WREG32(R_00654C_D1MODE_PRIORITY_B_CNT
, d1mode_priority_a_cnt
);
786 WREG32(R_006D48_D2MODE_PRIORITY_A_CNT
, d2mode_priority_a_cnt
);
787 WREG32(R_006D4C_D2MODE_PRIORITY_B_CNT
, d2mode_priority_a_cnt
);
791 uint32_t rs600_mc_rreg(struct radeon_device
*rdev
, uint32_t reg
)
793 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
794 S_000070_MC_IND_CITF_ARB0(1));
795 return RREG32(R_000074_MC_IND_DATA
);
798 void rs600_mc_wreg(struct radeon_device
*rdev
, uint32_t reg
, uint32_t v
)
800 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
801 S_000070_MC_IND_CITF_ARB0(1) | S_000070_MC_IND_WR_EN(1));
802 WREG32(R_000074_MC_IND_DATA
, v
);
805 void rs600_debugfs(struct radeon_device
*rdev
)
807 if (r100_debugfs_rbbm_init(rdev
))
808 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
811 void rs600_set_safe_registers(struct radeon_device
*rdev
)
813 rdev
->config
.r300
.reg_safe_bm
= rs600_reg_safe_bm
;
814 rdev
->config
.r300
.reg_safe_bm_size
= ARRAY_SIZE(rs600_reg_safe_bm
);
817 static void rs600_mc_program(struct radeon_device
*rdev
)
819 struct rv515_mc_save save
;
821 /* Stops all mc clients */
822 rv515_mc_stop(rdev
, &save
);
824 /* Wait for mc idle */
825 if (rs600_mc_wait_for_idle(rdev
))
826 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
828 /* FIXME: What does AGP means for such chipset ? */
829 WREG32_MC(R_000005_MC_AGP_LOCATION
, 0x0FFFFFFF);
830 WREG32_MC(R_000006_AGP_BASE
, 0);
831 WREG32_MC(R_000007_AGP_BASE_2
, 0);
833 WREG32_MC(R_000004_MC_FB_LOCATION
,
834 S_000004_MC_FB_START(rdev
->mc
.vram_start
>> 16) |
835 S_000004_MC_FB_TOP(rdev
->mc
.vram_end
>> 16));
836 WREG32(R_000134_HDP_FB_LOCATION
,
837 S_000134_HDP_FB_START(rdev
->mc
.vram_start
>> 16));
839 rv515_mc_resume(rdev
, &save
);
842 static int rs600_startup(struct radeon_device
*rdev
)
846 rs600_mc_program(rdev
);
848 rv515_clock_startup(rdev
);
849 /* Initialize GPU configuration (# pipes, ...) */
850 rs600_gpu_init(rdev
);
851 /* Initialize GART (initialize after TTM so we can allocate
852 * memory through TTM but finalize after TTM) */
853 r
= rs600_gart_enable(rdev
);
857 /* allocate wb buffer */
858 r
= radeon_wb_init(rdev
);
862 r
= radeon_fence_driver_start_ring(rdev
, RADEON_RING_TYPE_GFX_INDEX
);
864 dev_err(rdev
->dev
, "failed initializing CP fences (%d).\n", r
);
869 if (!rdev
->irq
.installed
) {
870 r
= radeon_irq_kms_init(rdev
);
876 rdev
->config
.r300
.hdp_cntl
= RREG32(RADEON_HOST_PATH_CNTL
);
878 r
= r100_cp_init(rdev
, 1024 * 1024);
880 dev_err(rdev
->dev
, "failed initializing CP (%d).\n", r
);
884 r
= r600_audio_init(rdev
);
886 dev_err(rdev
->dev
, "failed initializing audio\n");
890 r
= radeon_ib_pool_start(rdev
);
894 r
= radeon_ib_test(rdev
, RADEON_RING_TYPE_GFX_INDEX
, &rdev
->ring
[RADEON_RING_TYPE_GFX_INDEX
]);
896 dev_err(rdev
->dev
, "failed testing IB (%d).\n", r
);
897 rdev
->accel_working
= false;
904 int rs600_resume(struct radeon_device
*rdev
)
908 /* Make sur GART are not working */
909 rs600_gart_disable(rdev
);
910 /* Resume clock before doing reset */
911 rv515_clock_startup(rdev
);
912 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
913 if (radeon_asic_reset(rdev
)) {
914 dev_warn(rdev
->dev
, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
915 RREG32(R_000E40_RBBM_STATUS
),
916 RREG32(R_0007C0_CP_STAT
));
919 atom_asic_init(rdev
->mode_info
.atom_context
);
920 /* Resume clock after posting */
921 rv515_clock_startup(rdev
);
922 /* Initialize surface registers */
923 radeon_surface_init(rdev
);
925 rdev
->accel_working
= true;
926 r
= rs600_startup(rdev
);
928 rdev
->accel_working
= false;
933 int rs600_suspend(struct radeon_device
*rdev
)
935 radeon_ib_pool_suspend(rdev
);
936 r600_audio_fini(rdev
);
937 r100_cp_disable(rdev
);
938 radeon_wb_disable(rdev
);
939 rs600_irq_disable(rdev
);
940 rs600_gart_disable(rdev
);
944 void rs600_fini(struct radeon_device
*rdev
)
946 r600_audio_fini(rdev
);
948 radeon_wb_fini(rdev
);
950 radeon_gem_fini(rdev
);
951 rs600_gart_fini(rdev
);
952 radeon_irq_kms_fini(rdev
);
953 radeon_fence_driver_fini(rdev
);
954 radeon_bo_fini(rdev
);
955 radeon_atombios_fini(rdev
);
960 int rs600_init(struct radeon_device
*rdev
)
965 rv515_vga_render_disable(rdev
);
966 /* Initialize scratch registers */
967 radeon_scratch_init(rdev
);
968 /* Initialize surface registers */
969 radeon_surface_init(rdev
);
970 /* restore some register to sane defaults */
971 r100_restore_sanity(rdev
);
973 if (!radeon_get_bios(rdev
)) {
974 if (ASIC_IS_AVIVO(rdev
))
977 if (rdev
->is_atom_bios
) {
978 r
= radeon_atombios_init(rdev
);
982 dev_err(rdev
->dev
, "Expecting atombios for RS600 GPU\n");
985 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
986 if (radeon_asic_reset(rdev
)) {
988 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
989 RREG32(R_000E40_RBBM_STATUS
),
990 RREG32(R_0007C0_CP_STAT
));
992 /* check if cards are posted or not */
993 if (radeon_boot_test_post_card(rdev
) == false)
996 /* Initialize clocks */
997 radeon_get_clock_info(rdev
->ddev
);
998 /* initialize memory controller */
1000 rs600_debugfs(rdev
);
1002 r
= radeon_fence_driver_init(rdev
);
1005 /* Memory manager */
1006 r
= radeon_bo_init(rdev
);
1009 r
= rs600_gart_init(rdev
);
1012 rs600_set_safe_registers(rdev
);
1014 r
= radeon_ib_pool_init(rdev
);
1015 rdev
->accel_working
= true;
1017 dev_err(rdev
->dev
, "IB initialization failed (%d).\n", r
);
1018 rdev
->accel_working
= false;
1021 r
= rs600_startup(rdev
);
1023 /* Somethings want wront with the accel init stop accel */
1024 dev_err(rdev
->dev
, "Disabling GPU acceleration\n");
1026 radeon_wb_fini(rdev
);
1028 rs600_gart_fini(rdev
);
1029 radeon_irq_kms_fini(rdev
);
1030 rdev
->accel_working
= false;