|
@@ -7373,7 +7373,6 @@ int cik_irq_set(struct radeon_device *rdev)
|
|
|
u32 hpd1, hpd2, hpd3, hpd4, hpd5, hpd6;
|
|
|
u32 grbm_int_cntl = 0;
|
|
|
u32 dma_cntl, dma_cntl1;
|
|
|
- u32 thermal_int;
|
|
|
|
|
|
if (!rdev->irq.installed) {
|
|
|
WARN(1, "Can't enable IRQ/MSI because no handler is installed\n");
|
|
@@ -7403,13 +7402,6 @@ int cik_irq_set(struct radeon_device *rdev)
|
|
|
|
|
|
cp_m1p0 = RREG32(CP_ME1_PIPE0_INT_CNTL) & ~TIME_STAMP_INT_ENABLE;
|
|
|
|
|
|
- if (rdev->flags & RADEON_IS_IGP)
|
|
|
- thermal_int = RREG32_SMC(CG_THERMAL_INT_CTRL) &
|
|
|
- ~(THERM_INTH_MASK | THERM_INTL_MASK);
|
|
|
- else
|
|
|
- thermal_int = RREG32_SMC(CG_THERMAL_INT) &
|
|
|
- ~(THERM_INT_MASK_HIGH | THERM_INT_MASK_LOW);
|
|
|
-
|
|
|
/* enable CP interrupts on all rings */
|
|
|
if (atomic_read(&rdev->irq.ring_int[RADEON_RING_TYPE_GFX_INDEX])) {
|
|
|
DRM_DEBUG("cik_irq_set: sw int gfx\n");
|
|
@@ -7513,14 +7505,6 @@ int cik_irq_set(struct radeon_device *rdev)
|
|
|
hpd6 |= DC_HPDx_INT_EN;
|
|
|
}
|
|
|
|
|
|
- if (rdev->irq.dpm_thermal) {
|
|
|
- DRM_DEBUG("dpm thermal\n");
|
|
|
- if (rdev->flags & RADEON_IS_IGP)
|
|
|
- thermal_int |= THERM_INTH_MASK | THERM_INTL_MASK;
|
|
|
- else
|
|
|
- thermal_int |= THERM_INT_MASK_HIGH | THERM_INT_MASK_LOW;
|
|
|
- }
|
|
|
-
|
|
|
WREG32(CP_INT_CNTL_RING0, cp_int_cntl);
|
|
|
|
|
|
WREG32(SDMA0_CNTL + SDMA0_REGISTER_OFFSET, dma_cntl);
|
|
@@ -7567,11 +7551,6 @@ int cik_irq_set(struct radeon_device *rdev)
|
|
|
WREG32(DC_HPD5_INT_CONTROL, hpd5);
|
|
|
WREG32(DC_HPD6_INT_CONTROL, hpd6);
|
|
|
|
|
|
- if (rdev->flags & RADEON_IS_IGP)
|
|
|
- WREG32_SMC(CG_THERMAL_INT_CTRL, thermal_int);
|
|
|
- else
|
|
|
- WREG32_SMC(CG_THERMAL_INT, thermal_int);
|
|
|
-
|
|
|
return 0;
|
|
|
}
|
|
|
|