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
);
67 /* Lock the graphics update lock */
68 tmp
|= AVIVO_D1GRPH_UPDATE_LOCK
;
69 WREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
, tmp
);
71 /* update the scanout addresses */
72 WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS
+ radeon_crtc
->crtc_offset
,
74 WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS
+ radeon_crtc
->crtc_offset
,
77 /* Wait for update_pending to go high. */
78 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
79 if (RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING
)
83 DRM_DEBUG("Update pending now high. Unlocking vupdate_lock.\n");
85 /* Unlock the lock, so double-buffering can take place inside vblank */
86 tmp
&= ~AVIVO_D1GRPH_UPDATE_LOCK
;
87 WREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
, tmp
);
89 /* Return current update_pending status: */
90 return RREG32(AVIVO_D1GRPH_UPDATE
+ radeon_crtc
->crtc_offset
) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING
;
93 void rs600_pm_misc(struct radeon_device
*rdev
)
95 int requested_index
= rdev
->pm
.requested_power_state_index
;
96 struct radeon_power_state
*ps
= &rdev
->pm
.power_state
[requested_index
];
97 struct radeon_voltage
*voltage
= &ps
->clock_info
[0].voltage
;
98 u32 tmp
, dyn_pwrmgt_sclk_length
, dyn_sclk_vol_cntl
;
99 u32 hdp_dyn_cntl
, /*mc_host_dyn_cntl,*/ dyn_backbias_cntl
;
101 if ((voltage
->type
== VOLTAGE_GPIO
) && (voltage
->gpio
.valid
)) {
102 if (ps
->misc
& ATOM_PM_MISCINFO_VOLTAGE_DROP_SUPPORT
) {
103 tmp
= RREG32(voltage
->gpio
.reg
);
104 if (voltage
->active_high
)
105 tmp
|= voltage
->gpio
.mask
;
107 tmp
&= ~(voltage
->gpio
.mask
);
108 WREG32(voltage
->gpio
.reg
, tmp
);
110 udelay(voltage
->delay
);
112 tmp
= RREG32(voltage
->gpio
.reg
);
113 if (voltage
->active_high
)
114 tmp
&= ~voltage
->gpio
.mask
;
116 tmp
|= voltage
->gpio
.mask
;
117 WREG32(voltage
->gpio
.reg
, tmp
);
119 udelay(voltage
->delay
);
121 } else if (voltage
->type
== VOLTAGE_VDDC
)
122 radeon_atom_set_voltage(rdev
, voltage
->vddc_id
, SET_VOLTAGE_TYPE_ASIC_VDDC
);
124 dyn_pwrmgt_sclk_length
= RREG32_PLL(DYN_PWRMGT_SCLK_LENGTH
);
125 dyn_pwrmgt_sclk_length
&= ~REDUCED_POWER_SCLK_HILEN(0xf);
126 dyn_pwrmgt_sclk_length
&= ~REDUCED_POWER_SCLK_LOLEN(0xf);
127 if (ps
->misc
& ATOM_PM_MISCINFO_ASIC_REDUCED_SPEED_SCLK_EN
) {
128 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_CLOCK_DIVIDER_BY_2
) {
129 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(2);
130 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(2);
131 } else if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_CLOCK_DIVIDER_BY_4
) {
132 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(4);
133 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(4);
136 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_HILEN(1);
137 dyn_pwrmgt_sclk_length
|= REDUCED_POWER_SCLK_LOLEN(1);
139 WREG32_PLL(DYN_PWRMGT_SCLK_LENGTH
, dyn_pwrmgt_sclk_length
);
141 dyn_sclk_vol_cntl
= RREG32_PLL(DYN_SCLK_VOL_CNTL
);
142 if (ps
->misc
& ATOM_PM_MISCINFO_ASIC_DYNAMIC_VOLTAGE_EN
) {
143 dyn_sclk_vol_cntl
|= IO_CG_VOLTAGE_DROP
;
144 if (voltage
->delay
) {
145 dyn_sclk_vol_cntl
|= VOLTAGE_DROP_SYNC
;
146 dyn_sclk_vol_cntl
|= VOLTAGE_DELAY_SEL(voltage
->delay
);
148 dyn_sclk_vol_cntl
&= ~VOLTAGE_DROP_SYNC
;
150 dyn_sclk_vol_cntl
&= ~IO_CG_VOLTAGE_DROP
;
151 WREG32_PLL(DYN_SCLK_VOL_CNTL
, dyn_sclk_vol_cntl
);
153 hdp_dyn_cntl
= RREG32_PLL(HDP_DYN_CNTL
);
154 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_HDP_BLOCK_EN
)
155 hdp_dyn_cntl
&= ~HDP_FORCEON
;
157 hdp_dyn_cntl
|= HDP_FORCEON
;
158 WREG32_PLL(HDP_DYN_CNTL
, hdp_dyn_cntl
);
160 /* mc_host_dyn seems to cause hangs from time to time */
161 mc_host_dyn_cntl
= RREG32_PLL(MC_HOST_DYN_CNTL
);
162 if (ps
->misc
& ATOM_PM_MISCINFO_DYNAMIC_MC_HOST_BLOCK_EN
)
163 mc_host_dyn_cntl
&= ~MC_HOST_FORCEON
;
165 mc_host_dyn_cntl
|= MC_HOST_FORCEON
;
166 WREG32_PLL(MC_HOST_DYN_CNTL
, mc_host_dyn_cntl
);
168 dyn_backbias_cntl
= RREG32_PLL(DYN_BACKBIAS_CNTL
);
169 if (ps
->misc
& ATOM_PM_MISCINFO2_DYNAMIC_BACK_BIAS_EN
)
170 dyn_backbias_cntl
|= IO_CG_BACKBIAS_EN
;
172 dyn_backbias_cntl
&= ~IO_CG_BACKBIAS_EN
;
173 WREG32_PLL(DYN_BACKBIAS_CNTL
, dyn_backbias_cntl
);
176 if ((rdev
->flags
& RADEON_IS_PCIE
) &&
177 !(rdev
->flags
& RADEON_IS_IGP
) &&
178 rdev
->asic
->set_pcie_lanes
&&
180 rdev
->pm
.power_state
[rdev
->pm
.current_power_state_index
].pcie_lanes
)) {
181 radeon_set_pcie_lanes(rdev
,
183 DRM_DEBUG("Setting: p: %d\n", ps
->pcie_lanes
);
187 void rs600_pm_prepare(struct radeon_device
*rdev
)
189 struct drm_device
*ddev
= rdev
->ddev
;
190 struct drm_crtc
*crtc
;
191 struct radeon_crtc
*radeon_crtc
;
194 /* disable any active CRTCs */
195 list_for_each_entry(crtc
, &ddev
->mode_config
.crtc_list
, head
) {
196 radeon_crtc
= to_radeon_crtc(crtc
);
197 if (radeon_crtc
->enabled
) {
198 tmp
= RREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
);
199 tmp
|= AVIVO_CRTC_DISP_READ_REQUEST_DISABLE
;
200 WREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
, tmp
);
205 void rs600_pm_finish(struct radeon_device
*rdev
)
207 struct drm_device
*ddev
= rdev
->ddev
;
208 struct drm_crtc
*crtc
;
209 struct radeon_crtc
*radeon_crtc
;
212 /* enable any active CRTCs */
213 list_for_each_entry(crtc
, &ddev
->mode_config
.crtc_list
, head
) {
214 radeon_crtc
= to_radeon_crtc(crtc
);
215 if (radeon_crtc
->enabled
) {
216 tmp
= RREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
);
217 tmp
&= ~AVIVO_CRTC_DISP_READ_REQUEST_DISABLE
;
218 WREG32(AVIVO_D1CRTC_CONTROL
+ radeon_crtc
->crtc_offset
, tmp
);
223 /* hpd for digital panel detect/disconnect */
224 bool rs600_hpd_sense(struct radeon_device
*rdev
, enum radeon_hpd_id hpd
)
227 bool connected
= false;
231 tmp
= RREG32(R_007D04_DC_HOT_PLUG_DETECT1_INT_STATUS
);
232 if (G_007D04_DC_HOT_PLUG_DETECT1_SENSE(tmp
))
236 tmp
= RREG32(R_007D14_DC_HOT_PLUG_DETECT2_INT_STATUS
);
237 if (G_007D14_DC_HOT_PLUG_DETECT2_SENSE(tmp
))
246 void rs600_hpd_set_polarity(struct radeon_device
*rdev
,
247 enum radeon_hpd_id hpd
)
250 bool connected
= rs600_hpd_sense(rdev
, hpd
);
254 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
256 tmp
&= ~S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
258 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_POLARITY(1);
259 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
262 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
264 tmp
&= ~S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
266 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_POLARITY(1);
267 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
274 void rs600_hpd_init(struct radeon_device
*rdev
)
276 struct drm_device
*dev
= rdev
->ddev
;
277 struct drm_connector
*connector
;
279 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
280 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
281 switch (radeon_connector
->hpd
.hpd
) {
283 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
284 S_007D00_DC_HOT_PLUG_DETECT1_EN(1));
285 rdev
->irq
.hpd
[0] = true;
288 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
289 S_007D10_DC_HOT_PLUG_DETECT2_EN(1));
290 rdev
->irq
.hpd
[1] = true;
295 radeon_hpd_set_polarity(rdev
, radeon_connector
->hpd
.hpd
);
297 if (rdev
->irq
.installed
)
301 void rs600_hpd_fini(struct radeon_device
*rdev
)
303 struct drm_device
*dev
= rdev
->ddev
;
304 struct drm_connector
*connector
;
306 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
307 struct radeon_connector
*radeon_connector
= to_radeon_connector(connector
);
308 switch (radeon_connector
->hpd
.hpd
) {
310 WREG32(R_007D00_DC_HOT_PLUG_DETECT1_CONTROL
,
311 S_007D00_DC_HOT_PLUG_DETECT1_EN(0));
312 rdev
->irq
.hpd
[0] = false;
315 WREG32(R_007D10_DC_HOT_PLUG_DETECT2_CONTROL
,
316 S_007D10_DC_HOT_PLUG_DETECT2_EN(0));
317 rdev
->irq
.hpd
[1] = false;
325 int rs600_asic_reset(struct radeon_device
*rdev
)
327 struct rv515_mc_save save
;
331 status
= RREG32(R_000E40_RBBM_STATUS
);
332 if (!G_000E40_GUI_ACTIVE(status
)) {
335 /* Stops all mc clients */
336 rv515_mc_stop(rdev
, &save
);
337 status
= RREG32(R_000E40_RBBM_STATUS
);
338 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
340 WREG32(RADEON_CP_CSQ_CNTL
, 0);
341 tmp
= RREG32(RADEON_CP_RB_CNTL
);
342 WREG32(RADEON_CP_RB_CNTL
, tmp
| RADEON_RB_RPTR_WR_ENA
);
343 WREG32(RADEON_CP_RB_RPTR_WR
, 0);
344 WREG32(RADEON_CP_RB_WPTR
, 0);
345 WREG32(RADEON_CP_RB_CNTL
, tmp
);
346 pci_save_state(rdev
->pdev
);
347 /* disable bus mastering */
348 pci_clear_master(rdev
->pdev
);
351 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_VAP(1) |
352 S_0000F0_SOFT_RESET_GA(1));
353 RREG32(R_0000F0_RBBM_SOFT_RESET
);
355 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
357 status
= RREG32(R_000E40_RBBM_STATUS
);
358 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
360 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_CP(1));
361 RREG32(R_0000F0_RBBM_SOFT_RESET
);
363 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
365 status
= RREG32(R_000E40_RBBM_STATUS
);
366 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
368 WREG32(R_0000F0_RBBM_SOFT_RESET
, S_0000F0_SOFT_RESET_MC(1));
369 RREG32(R_0000F0_RBBM_SOFT_RESET
);
371 WREG32(R_0000F0_RBBM_SOFT_RESET
, 0);
373 status
= RREG32(R_000E40_RBBM_STATUS
);
374 dev_info(rdev
->dev
, "(%s:%d) RBBM_STATUS=0x%08X\n", __func__
, __LINE__
, status
);
375 /* restore PCI & busmastering */
376 pci_restore_state(rdev
->pdev
);
377 /* Check if GPU is idle */
378 if (G_000E40_GA_BUSY(status
) || G_000E40_VAP_BUSY(status
)) {
379 dev_err(rdev
->dev
, "failed to reset GPU\n");
380 rdev
->gpu_lockup
= true;
383 dev_info(rdev
->dev
, "GPU reset succeed\n");
384 rv515_mc_resume(rdev
, &save
);
391 void rs600_gart_tlb_flush(struct radeon_device
*rdev
)
395 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
396 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
397 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
399 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
400 tmp
|= S_000100_INVALIDATE_ALL_L1_TLBS(1) | S_000100_INVALIDATE_L2_CACHE(1);
401 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
403 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
404 tmp
&= C_000100_INVALIDATE_ALL_L1_TLBS
& C_000100_INVALIDATE_L2_CACHE
;
405 WREG32_MC(R_000100_MC_PT0_CNTL
, tmp
);
406 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
409 int rs600_gart_init(struct radeon_device
*rdev
)
413 if (rdev
->gart
.robj
) {
414 WARN(1, "RS600 GART already initialized\n");
417 /* Initialize common gart structure */
418 r
= radeon_gart_init(rdev
);
422 rdev
->gart
.table_size
= rdev
->gart
.num_gpu_pages
* 8;
423 return radeon_gart_table_vram_alloc(rdev
);
426 static int rs600_gart_enable(struct radeon_device
*rdev
)
431 if (rdev
->gart
.robj
== NULL
) {
432 dev_err(rdev
->dev
, "No VRAM object for PCIE GART.\n");
435 r
= radeon_gart_table_vram_pin(rdev
);
438 radeon_gart_restore(rdev
);
439 /* Enable bus master */
440 tmp
= RREG32(RADEON_BUS_CNTL
) & ~RS600_BUS_MASTER_DIS
;
441 WREG32(RADEON_BUS_CNTL
, tmp
);
442 /* FIXME: setup default page */
443 WREG32_MC(R_000100_MC_PT0_CNTL
,
444 (S_000100_EFFECTIVE_L2_CACHE_SIZE(6) |
445 S_000100_EFFECTIVE_L2_QUEUE_SIZE(6)));
447 for (i
= 0; i
< 19; i
++) {
448 WREG32_MC(R_00016C_MC_PT0_CLIENT0_CNTL
+ i
,
449 S_00016C_ENABLE_TRANSLATION_MODE_OVERRIDE(1) |
450 S_00016C_SYSTEM_ACCESS_MODE_MASK(
451 V_00016C_SYSTEM_ACCESS_MODE_NOT_IN_SYS
) |
452 S_00016C_SYSTEM_APERTURE_UNMAPPED_ACCESS(
453 V_00016C_SYSTEM_APERTURE_UNMAPPED_PASSTHROUGH
) |
454 S_00016C_EFFECTIVE_L1_CACHE_SIZE(3) |
455 S_00016C_ENABLE_FRAGMENT_PROCESSING(1) |
456 S_00016C_EFFECTIVE_L1_QUEUE_SIZE(3));
458 /* enable first context */
459 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
,
460 S_000102_ENABLE_PAGE_TABLE(1) |
461 S_000102_PAGE_TABLE_DEPTH(V_000102_PAGE_TABLE_FLAT
));
463 /* disable all other contexts */
464 for (i
= 1; i
< 8; i
++)
465 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL
+ i
, 0);
467 /* setup the page table */
468 WREG32_MC(R_00012C_MC_PT0_CONTEXT0_FLAT_BASE_ADDR
,
469 rdev
->gart
.table_addr
);
470 WREG32_MC(R_00013C_MC_PT0_CONTEXT0_FLAT_START_ADDR
, rdev
->mc
.gtt_start
);
471 WREG32_MC(R_00014C_MC_PT0_CONTEXT0_FLAT_END_ADDR
, rdev
->mc
.gtt_end
);
472 WREG32_MC(R_00011C_MC_PT0_CONTEXT0_DEFAULT_READ_ADDR
, 0);
474 /* System context maps to VRAM space */
475 WREG32_MC(R_000112_MC_PT0_SYSTEM_APERTURE_LOW_ADDR
, rdev
->mc
.vram_start
);
476 WREG32_MC(R_000114_MC_PT0_SYSTEM_APERTURE_HIGH_ADDR
, rdev
->mc
.vram_end
);
478 /* enable page tables */
479 tmp
= RREG32_MC(R_000100_MC_PT0_CNTL
);
480 WREG32_MC(R_000100_MC_PT0_CNTL
, (tmp
| S_000100_ENABLE_PT(1)));
481 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
482 WREG32_MC(R_000009_MC_CNTL1
, (tmp
| S_000009_ENABLE_PAGE_TABLES(1)));
483 rs600_gart_tlb_flush(rdev
);
484 DRM_INFO("PCIE GART of %uM enabled (table at 0x%016llX).\n",
485 (unsigned)(rdev
->mc
.gtt_size
>> 20),
486 (unsigned long long)rdev
->gart
.table_addr
);
487 rdev
->gart
.ready
= true;
491 void rs600_gart_disable(struct radeon_device
*rdev
)
495 /* FIXME: disable out of gart access */
496 WREG32_MC(R_000100_MC_PT0_CNTL
, 0);
497 tmp
= RREG32_MC(R_000009_MC_CNTL1
);
498 WREG32_MC(R_000009_MC_CNTL1
, tmp
& C_000009_ENABLE_PAGE_TABLES
);
499 radeon_gart_table_vram_unpin(rdev
);
502 void rs600_gart_fini(struct radeon_device
*rdev
)
504 radeon_gart_fini(rdev
);
505 rs600_gart_disable(rdev
);
506 radeon_gart_table_vram_free(rdev
);
509 #define R600_PTE_VALID (1 << 0)
510 #define R600_PTE_SYSTEM (1 << 1)
511 #define R600_PTE_SNOOPED (1 << 2)
512 #define R600_PTE_READABLE (1 << 5)
513 #define R600_PTE_WRITEABLE (1 << 6)
515 int rs600_gart_set_page(struct radeon_device
*rdev
, int i
, uint64_t addr
)
517 void __iomem
*ptr
= (void *)rdev
->gart
.ptr
;
519 if (i
< 0 || i
> rdev
->gart
.num_gpu_pages
) {
522 addr
= addr
& 0xFFFFFFFFFFFFF000ULL
;
523 addr
|= R600_PTE_VALID
| R600_PTE_SYSTEM
| R600_PTE_SNOOPED
;
524 addr
|= R600_PTE_READABLE
| R600_PTE_WRITEABLE
;
525 writeq(addr
, ptr
+ (i
* 8));
529 int rs600_irq_set(struct radeon_device
*rdev
)
532 uint32_t mode_int
= 0;
533 u32 hpd1
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
) &
534 ~S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
535 u32 hpd2
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
) &
536 ~S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
538 if (!rdev
->irq
.installed
) {
539 WARN(1, "Can't enable IRQ/MSI because no handler is installed\n");
540 WREG32(R_000040_GEN_INT_CNTL
, 0);
543 if (rdev
->irq
.sw_int
[RADEON_RING_TYPE_GFX_INDEX
]) {
544 tmp
|= S_000040_SW_INT_EN(1);
546 if (rdev
->irq
.gui_idle
) {
547 tmp
|= S_000040_GUI_IDLE(1);
549 if (rdev
->irq
.crtc_vblank_int
[0] ||
550 rdev
->irq
.pflip
[0]) {
551 mode_int
|= S_006540_D1MODE_VBLANK_INT_MASK(1);
553 if (rdev
->irq
.crtc_vblank_int
[1] ||
554 rdev
->irq
.pflip
[1]) {
555 mode_int
|= S_006540_D2MODE_VBLANK_INT_MASK(1);
557 if (rdev
->irq
.hpd
[0]) {
558 hpd1
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_EN(1);
560 if (rdev
->irq
.hpd
[1]) {
561 hpd2
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_EN(1);
563 WREG32(R_000040_GEN_INT_CNTL
, tmp
);
564 WREG32(R_006540_DxMODE_INT_MASK
, mode_int
);
565 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, hpd1
);
566 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, hpd2
);
570 static inline u32
rs600_irq_ack(struct radeon_device
*rdev
)
572 uint32_t irqs
= RREG32(R_000044_GEN_INT_STATUS
);
573 uint32_t irq_mask
= S_000044_SW_INT(1);
576 /* the interrupt works, but the status bit is permanently asserted */
577 if (rdev
->irq
.gui_idle
&& radeon_gui_idle(rdev
)) {
578 if (!rdev
->irq
.gui_idle_acked
)
579 irq_mask
|= S_000044_GUI_IDLE_STAT(1);
582 if (G_000044_DISPLAY_INT_STAT(irqs
)) {
583 rdev
->irq
.stat_regs
.r500
.disp_int
= RREG32(R_007EDC_DISP_INTERRUPT_STATUS
);
584 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
585 WREG32(R_006534_D1MODE_VBLANK_STATUS
,
586 S_006534_D1MODE_VBLANK_ACK(1));
588 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
589 WREG32(R_006D34_D2MODE_VBLANK_STATUS
,
590 S_006D34_D2MODE_VBLANK_ACK(1));
592 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
593 tmp
= RREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
);
594 tmp
|= S_007D08_DC_HOT_PLUG_DETECT1_INT_ACK(1);
595 WREG32(R_007D08_DC_HOT_PLUG_DETECT1_INT_CONTROL
, tmp
);
597 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
598 tmp
= RREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
);
599 tmp
|= S_007D18_DC_HOT_PLUG_DETECT2_INT_ACK(1);
600 WREG32(R_007D18_DC_HOT_PLUG_DETECT2_INT_CONTROL
, tmp
);
603 rdev
->irq
.stat_regs
.r500
.disp_int
= 0;
607 WREG32(R_000044_GEN_INT_STATUS
, irqs
);
609 return irqs
& irq_mask
;
612 void rs600_irq_disable(struct radeon_device
*rdev
)
614 WREG32(R_000040_GEN_INT_CNTL
, 0);
615 WREG32(R_006540_DxMODE_INT_MASK
, 0);
616 /* Wait and acknowledge irq */
621 int rs600_irq_process(struct radeon_device
*rdev
)
623 u32 status
, msi_rearm
;
624 bool queue_hotplug
= false;
626 /* reset gui idle ack. the status bit is broken */
627 rdev
->irq
.gui_idle_acked
= false;
629 status
= rs600_irq_ack(rdev
);
630 if (!status
&& !rdev
->irq
.stat_regs
.r500
.disp_int
) {
633 while (status
|| rdev
->irq
.stat_regs
.r500
.disp_int
) {
635 if (G_000044_SW_INT(status
)) {
636 radeon_fence_process(rdev
, RADEON_RING_TYPE_GFX_INDEX
);
639 if (G_000040_GUI_IDLE(status
)) {
640 rdev
->irq
.gui_idle_acked
= true;
641 rdev
->pm
.gui_idle
= true;
642 wake_up(&rdev
->irq
.idle_queue
);
644 /* Vertical blank interrupts */
645 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
646 if (rdev
->irq
.crtc_vblank_int
[0]) {
647 drm_handle_vblank(rdev
->ddev
, 0);
648 rdev
->pm
.vblank_sync
= true;
649 wake_up(&rdev
->irq
.vblank_queue
);
651 if (rdev
->irq
.pflip
[0])
652 radeon_crtc_handle_flip(rdev
, 0);
654 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
655 if (rdev
->irq
.crtc_vblank_int
[1]) {
656 drm_handle_vblank(rdev
->ddev
, 1);
657 rdev
->pm
.vblank_sync
= true;
658 wake_up(&rdev
->irq
.vblank_queue
);
660 if (rdev
->irq
.pflip
[1])
661 radeon_crtc_handle_flip(rdev
, 1);
663 if (G_007EDC_DC_HOT_PLUG_DETECT1_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
664 queue_hotplug
= true;
667 if (G_007EDC_DC_HOT_PLUG_DETECT2_INTERRUPT(rdev
->irq
.stat_regs
.r500
.disp_int
)) {
668 queue_hotplug
= true;
671 status
= rs600_irq_ack(rdev
);
673 /* reset gui idle ack. the status bit is broken */
674 rdev
->irq
.gui_idle_acked
= false;
676 schedule_work(&rdev
->hotplug_work
);
677 if (rdev
->msi_enabled
) {
678 switch (rdev
->family
) {
682 msi_rearm
= RREG32(RADEON_BUS_CNTL
) & ~RS600_MSI_REARM
;
683 WREG32(RADEON_BUS_CNTL
, msi_rearm
);
684 WREG32(RADEON_BUS_CNTL
, msi_rearm
| RS600_MSI_REARM
);
687 WREG32(RADEON_MSI_REARM_EN
, RV370_MSI_REARM_EN
);
694 u32
rs600_get_vblank_counter(struct radeon_device
*rdev
, int crtc
)
697 return RREG32(R_0060A4_D1CRTC_STATUS_FRAME_COUNT
);
699 return RREG32(R_0068A4_D2CRTC_STATUS_FRAME_COUNT
);
702 int rs600_mc_wait_for_idle(struct radeon_device
*rdev
)
706 for (i
= 0; i
< rdev
->usec_timeout
; i
++) {
707 if (G_000000_MC_IDLE(RREG32_MC(R_000000_MC_STATUS
)))
714 void rs600_gpu_init(struct radeon_device
*rdev
)
716 r420_pipes_init(rdev
);
717 /* Wait for mc idle */
718 if (rs600_mc_wait_for_idle(rdev
))
719 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
722 void rs600_mc_init(struct radeon_device
*rdev
)
726 rdev
->mc
.aper_base
= pci_resource_start(rdev
->pdev
, 0);
727 rdev
->mc
.aper_size
= pci_resource_len(rdev
->pdev
, 0);
728 rdev
->mc
.vram_is_ddr
= true;
729 rdev
->mc
.vram_width
= 128;
730 rdev
->mc
.real_vram_size
= RREG32(RADEON_CONFIG_MEMSIZE
);
731 rdev
->mc
.mc_vram_size
= rdev
->mc
.real_vram_size
;
732 rdev
->mc
.visible_vram_size
= rdev
->mc
.aper_size
;
733 rdev
->mc
.igp_sideport_enabled
= radeon_atombios_sideport_present(rdev
);
734 base
= RREG32_MC(R_000004_MC_FB_LOCATION
);
735 base
= G_000004_MC_FB_START(base
) << 16;
736 radeon_vram_location(rdev
, &rdev
->mc
, base
);
737 rdev
->mc
.gtt_base_align
= 0;
738 radeon_gtt_location(rdev
, &rdev
->mc
);
739 radeon_update_bandwidth_info(rdev
);
742 void rs600_bandwidth_update(struct radeon_device
*rdev
)
744 struct drm_display_mode
*mode0
= NULL
;
745 struct drm_display_mode
*mode1
= NULL
;
746 u32 d1mode_priority_a_cnt
, d2mode_priority_a_cnt
;
747 /* FIXME: implement full support */
749 radeon_update_display_priority(rdev
);
751 if (rdev
->mode_info
.crtcs
[0]->base
.enabled
)
752 mode0
= &rdev
->mode_info
.crtcs
[0]->base
.mode
;
753 if (rdev
->mode_info
.crtcs
[1]->base
.enabled
)
754 mode1
= &rdev
->mode_info
.crtcs
[1]->base
.mode
;
756 rs690_line_buffer_adjust(rdev
, mode0
, mode1
);
758 if (rdev
->disp_priority
== 2) {
759 d1mode_priority_a_cnt
= RREG32(R_006548_D1MODE_PRIORITY_A_CNT
);
760 d2mode_priority_a_cnt
= RREG32(R_006D48_D2MODE_PRIORITY_A_CNT
);
761 d1mode_priority_a_cnt
|= S_006548_D1MODE_PRIORITY_A_ALWAYS_ON(1);
762 d2mode_priority_a_cnt
|= S_006D48_D2MODE_PRIORITY_A_ALWAYS_ON(1);
763 WREG32(R_006548_D1MODE_PRIORITY_A_CNT
, d1mode_priority_a_cnt
);
764 WREG32(R_00654C_D1MODE_PRIORITY_B_CNT
, d1mode_priority_a_cnt
);
765 WREG32(R_006D48_D2MODE_PRIORITY_A_CNT
, d2mode_priority_a_cnt
);
766 WREG32(R_006D4C_D2MODE_PRIORITY_B_CNT
, d2mode_priority_a_cnt
);
770 uint32_t rs600_mc_rreg(struct radeon_device
*rdev
, uint32_t reg
)
772 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
773 S_000070_MC_IND_CITF_ARB0(1));
774 return RREG32(R_000074_MC_IND_DATA
);
777 void rs600_mc_wreg(struct radeon_device
*rdev
, uint32_t reg
, uint32_t v
)
779 WREG32(R_000070_MC_IND_INDEX
, S_000070_MC_IND_ADDR(reg
) |
780 S_000070_MC_IND_CITF_ARB0(1) | S_000070_MC_IND_WR_EN(1));
781 WREG32(R_000074_MC_IND_DATA
, v
);
784 void rs600_debugfs(struct radeon_device
*rdev
)
786 if (r100_debugfs_rbbm_init(rdev
))
787 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
790 void rs600_set_safe_registers(struct radeon_device
*rdev
)
792 rdev
->config
.r300
.reg_safe_bm
= rs600_reg_safe_bm
;
793 rdev
->config
.r300
.reg_safe_bm_size
= ARRAY_SIZE(rs600_reg_safe_bm
);
796 static void rs600_mc_program(struct radeon_device
*rdev
)
798 struct rv515_mc_save save
;
800 /* Stops all mc clients */
801 rv515_mc_stop(rdev
, &save
);
803 /* Wait for mc idle */
804 if (rs600_mc_wait_for_idle(rdev
))
805 dev_warn(rdev
->dev
, "Wait MC idle timeout before updating MC.\n");
807 /* FIXME: What does AGP means for such chipset ? */
808 WREG32_MC(R_000005_MC_AGP_LOCATION
, 0x0FFFFFFF);
809 WREG32_MC(R_000006_AGP_BASE
, 0);
810 WREG32_MC(R_000007_AGP_BASE_2
, 0);
812 WREG32_MC(R_000004_MC_FB_LOCATION
,
813 S_000004_MC_FB_START(rdev
->mc
.vram_start
>> 16) |
814 S_000004_MC_FB_TOP(rdev
->mc
.vram_end
>> 16));
815 WREG32(R_000134_HDP_FB_LOCATION
,
816 S_000134_HDP_FB_START(rdev
->mc
.vram_start
>> 16));
818 rv515_mc_resume(rdev
, &save
);
821 static int rs600_startup(struct radeon_device
*rdev
)
825 rs600_mc_program(rdev
);
827 rv515_clock_startup(rdev
);
828 /* Initialize GPU configuration (# pipes, ...) */
829 rs600_gpu_init(rdev
);
830 /* Initialize GART (initialize after TTM so we can allocate
831 * memory through TTM but finalize after TTM) */
832 r
= rs600_gart_enable(rdev
);
836 /* allocate wb buffer */
837 r
= radeon_wb_init(rdev
);
841 r
= radeon_fence_driver_start_ring(rdev
, RADEON_RING_TYPE_GFX_INDEX
);
843 dev_err(rdev
->dev
, "failed initializing CP fences (%d).\n", r
);
849 rdev
->config
.r300
.hdp_cntl
= RREG32(RADEON_HOST_PATH_CNTL
);
851 r
= r100_cp_init(rdev
, 1024 * 1024);
853 dev_err(rdev
->dev
, "failed initializing CP (%d).\n", r
);
857 r
= r600_audio_init(rdev
);
859 dev_err(rdev
->dev
, "failed initializing audio\n");
863 r
= radeon_ib_pool_start(rdev
);
867 r
= r100_ib_test(rdev
);
869 dev_err(rdev
->dev
, "failed testing IB (%d).\n", r
);
870 rdev
->accel_working
= false;
877 int rs600_resume(struct radeon_device
*rdev
)
881 /* Make sur GART are not working */
882 rs600_gart_disable(rdev
);
883 /* Resume clock before doing reset */
884 rv515_clock_startup(rdev
);
885 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
886 if (radeon_asic_reset(rdev
)) {
887 dev_warn(rdev
->dev
, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
888 RREG32(R_000E40_RBBM_STATUS
),
889 RREG32(R_0007C0_CP_STAT
));
892 atom_asic_init(rdev
->mode_info
.atom_context
);
893 /* Resume clock after posting */
894 rv515_clock_startup(rdev
);
895 /* Initialize surface registers */
896 radeon_surface_init(rdev
);
898 rdev
->accel_working
= true;
899 r
= rs600_startup(rdev
);
901 rdev
->accel_working
= false;
906 int rs600_suspend(struct radeon_device
*rdev
)
908 radeon_ib_pool_suspend(rdev
);
909 r600_audio_fini(rdev
);
910 r100_cp_disable(rdev
);
911 radeon_wb_disable(rdev
);
912 rs600_irq_disable(rdev
);
913 rs600_gart_disable(rdev
);
917 void rs600_fini(struct radeon_device
*rdev
)
919 r600_audio_fini(rdev
);
921 radeon_wb_fini(rdev
);
923 radeon_gem_fini(rdev
);
924 rs600_gart_fini(rdev
);
925 radeon_irq_kms_fini(rdev
);
926 radeon_fence_driver_fini(rdev
);
927 radeon_bo_fini(rdev
);
928 radeon_atombios_fini(rdev
);
933 int rs600_init(struct radeon_device
*rdev
)
938 rv515_vga_render_disable(rdev
);
939 /* Initialize scratch registers */
940 radeon_scratch_init(rdev
);
941 /* Initialize surface registers */
942 radeon_surface_init(rdev
);
943 /* restore some register to sane defaults */
944 r100_restore_sanity(rdev
);
946 if (!radeon_get_bios(rdev
)) {
947 if (ASIC_IS_AVIVO(rdev
))
950 if (rdev
->is_atom_bios
) {
951 r
= radeon_atombios_init(rdev
);
955 dev_err(rdev
->dev
, "Expecting atombios for RS600 GPU\n");
958 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
959 if (radeon_asic_reset(rdev
)) {
961 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
962 RREG32(R_000E40_RBBM_STATUS
),
963 RREG32(R_0007C0_CP_STAT
));
965 /* check if cards are posted or not */
966 if (radeon_boot_test_post_card(rdev
) == false)
969 /* Initialize clocks */
970 radeon_get_clock_info(rdev
->ddev
);
971 /* initialize memory controller */
975 r
= radeon_fence_driver_init(rdev
);
978 r
= radeon_irq_kms_init(rdev
);
982 r
= radeon_bo_init(rdev
);
985 r
= rs600_gart_init(rdev
);
988 rs600_set_safe_registers(rdev
);
990 r
= radeon_ib_pool_init(rdev
);
991 rdev
->accel_working
= true;
993 dev_err(rdev
->dev
, "IB initialization failed (%d).\n", r
);
994 rdev
->accel_working
= false;
997 r
= rs600_startup(rdev
);
999 /* Somethings want wront with the accel init stop accel */
1000 dev_err(rdev
->dev
, "Disabling GPU acceleration\n");
1002 radeon_wb_fini(rdev
);
1004 rs600_gart_fini(rdev
);
1005 radeon_irq_kms_fini(rdev
);
1006 rdev
->accel_working
= false;