mirror of https://gitee.com/openkylin/linux.git
drm/i915: add ibx_irq_preinstall
So we can remove some duplicate code. All the PCHs are very similar and right now the code is the same. I plan to add more code, so we would have more duplicated code. Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
2db8e9d6b2
commit
91738a95bf
|
@ -2472,6 +2472,25 @@ void i915_hangcheck_elapsed(unsigned long data)
|
||||||
DRM_I915_HANGCHECK_JIFFIES));
|
DRM_I915_HANGCHECK_JIFFIES));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void ibx_irq_preinstall(struct drm_device *dev)
|
||||||
|
{
|
||||||
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
||||||
|
|
||||||
|
if (HAS_PCH_NOP(dev))
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* south display irq */
|
||||||
|
I915_WRITE(SDEIMR, 0xffffffff);
|
||||||
|
/*
|
||||||
|
* SDEIER is also touched by the interrupt handler to work around missed
|
||||||
|
* PCH interrupts. Hence we can't update it after the interrupt handler
|
||||||
|
* is enabled - instead we unconditionally enable all PCH interrupt
|
||||||
|
* sources here, but then only unmask them as needed with SDEIMR.
|
||||||
|
*/
|
||||||
|
I915_WRITE(SDEIER, 0xffffffff);
|
||||||
|
POSTING_READ(SDEIER);
|
||||||
|
}
|
||||||
|
|
||||||
/* drm_dma.h hooks
|
/* drm_dma.h hooks
|
||||||
*/
|
*/
|
||||||
static void ironlake_irq_preinstall(struct drm_device *dev)
|
static void ironlake_irq_preinstall(struct drm_device *dev)
|
||||||
|
@ -2493,16 +2512,7 @@ static void ironlake_irq_preinstall(struct drm_device *dev)
|
||||||
I915_WRITE(GTIER, 0x0);
|
I915_WRITE(GTIER, 0x0);
|
||||||
POSTING_READ(GTIER);
|
POSTING_READ(GTIER);
|
||||||
|
|
||||||
/* south display irq */
|
ibx_irq_preinstall(dev);
|
||||||
I915_WRITE(SDEIMR, 0xffffffff);
|
|
||||||
/*
|
|
||||||
* SDEIER is also touched by the interrupt handler to work around missed
|
|
||||||
* PCH interrupts. Hence we can't update it after the interrupt handler
|
|
||||||
* is enabled - instead we unconditionally enable all PCH interrupt
|
|
||||||
* sources here, but then only unmask them as needed with SDEIMR.
|
|
||||||
*/
|
|
||||||
I915_WRITE(SDEIER, 0xffffffff);
|
|
||||||
POSTING_READ(SDEIER);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ivybridge_irq_preinstall(struct drm_device *dev)
|
static void ivybridge_irq_preinstall(struct drm_device *dev)
|
||||||
|
@ -2529,19 +2539,7 @@ static void ivybridge_irq_preinstall(struct drm_device *dev)
|
||||||
I915_WRITE(GEN6_PMIER, 0x0);
|
I915_WRITE(GEN6_PMIER, 0x0);
|
||||||
POSTING_READ(GEN6_PMIER);
|
POSTING_READ(GEN6_PMIER);
|
||||||
|
|
||||||
if (HAS_PCH_NOP(dev))
|
ibx_irq_preinstall(dev);
|
||||||
return;
|
|
||||||
|
|
||||||
/* south display irq */
|
|
||||||
I915_WRITE(SDEIMR, 0xffffffff);
|
|
||||||
/*
|
|
||||||
* SDEIER is also touched by the interrupt handler to work around missed
|
|
||||||
* PCH interrupts. Hence we can't update it after the interrupt handler
|
|
||||||
* is enabled - instead we unconditionally enable all PCH interrupt
|
|
||||||
* sources here, but then only unmask them as needed with SDEIMR.
|
|
||||||
*/
|
|
||||||
I915_WRITE(SDEIER, 0xffffffff);
|
|
||||||
POSTING_READ(SDEIER);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void valleyview_irq_preinstall(struct drm_device *dev)
|
static void valleyview_irq_preinstall(struct drm_device *dev)
|
||||||
|
|
Loading…
Reference in New Issue