diff options
author | Dave Airlie <airlied@redhat.com> | 2018-09-27 19:37:51 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-09-27 19:37:55 -0400 |
commit | db9825c95498280718c4687fcf712016f5b6f5f6 (patch) | |
tree | 01661a811bcd16a7b6f3ee9790e77da75fd178b0 /drivers/gpu/drm/i915/intel_runtime_pm.c | |
parent | 156e60bc71aa31a3b42b1d66a822c2999bd0994c (diff) | |
parent | 448626103dad54ec5d06722e955586b5d557625d (diff) |
Merge tag 'drm-intel-next-2018-09-21' of git://anongit.freedesktop.org/drm/drm-intel into drm-next
Driver Changes:
- Bugzilla 107600: Fix stuttering video playback on MythTV on old hardware (Chris)
- Avoid black screen when using CSC coefficient matrix (Raviraj)
- Hammer PDs on Baytrail to make sure they reload (Chris)
- Capture some objects if unable to capture all, on error (Chris)
- Add W/A for 16 GB DIMMs on SKL+ (Mahesh)
- Only enable IPC for symmetric memory configurations on KBL+ (Mahesh)
- Assume pipe A to have maximum stride limits (Ville)
- Always update update OA contexts via context image (Tvrtko)
- Icelake enabling patches (Madhav, Dhinakaran)
- Add Icelake DMC firmware (Anusha)
- Fixes for CI found corner cases (Chris)
- Limit the backpressure for request allocation (Chris)
- Park GPU on module load so usage starts from known state (Chris)
- Flush tasklet when checking for idle (Chris)
- Use coherent write into the context image on BSW+ (Chris)
- Fix possible integer overflow for framebuffers that get aligned past 4GiB (Ville)
- Downgrade fence timeout from warn to notice and add debug hint (Chris)
- Fixes to multi function encoder code (Ville)
- Fix sprite plane check logic (Dan, Ville)
- PAGE_SIZE vs. I915_GTT_PAGE_SIZE fixes (Ville)
- Decode memory bandwidth and parameters for BXT and SKL+ (Mahesh)
- Overwrite BIOS set IPC value from KMS (Mahesh)
- Multiple pipe handling code cleanups/restructurings/optimizations (Ville)
- Spare low 4G address for non-48bit objects (Chris)
- Free context_setparam of struct_mutex (Chris)
- Delay updating ring register state on resume (Chris)
- Avoid unnecessarily copying overlay IOCTL parameters (Chris)
- Update GuC power domain states even without submission (Michal)
- Restore GuC preempt-context across S3/S4 (Chris)
- Add kernel selftest for rapid context switching (Chris)
- Keep runtime power management ref for live selftests (Chris)
- GEM code cleanups (Matt)
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180927095933.GA11458@jlahtine-desk.ger.corp.intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/intel_runtime_pm.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_runtime_pm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_runtime_pm.c b/drivers/gpu/drm/i915/intel_runtime_pm.c index 480dadb1047b..0fdabce647ab 100644 --- a/drivers/gpu/drm/i915/intel_runtime_pm.c +++ b/drivers/gpu/drm/i915/intel_runtime_pm.c | |||
@@ -1996,6 +1996,7 @@ void intel_display_power_put(struct drm_i915_private *dev_priv, | |||
1996 | BIT_ULL(POWER_DOMAIN_PORT_DDI_F_IO)) | 1996 | BIT_ULL(POWER_DOMAIN_PORT_DDI_F_IO)) |
1997 | 1997 | ||
1998 | #define ICL_AUX_A_IO_POWER_DOMAINS ( \ | 1998 | #define ICL_AUX_A_IO_POWER_DOMAINS ( \ |
1999 | BIT_ULL(POWER_DOMAIN_AUX_IO_A) | \ | ||
1999 | BIT_ULL(POWER_DOMAIN_AUX_A)) | 2000 | BIT_ULL(POWER_DOMAIN_AUX_A)) |
2000 | #define ICL_AUX_B_IO_POWER_DOMAINS ( \ | 2001 | #define ICL_AUX_B_IO_POWER_DOMAINS ( \ |
2001 | BIT_ULL(POWER_DOMAIN_AUX_B)) | 2002 | BIT_ULL(POWER_DOMAIN_AUX_B)) |
@@ -3563,6 +3564,9 @@ static void icl_display_core_init(struct drm_i915_private *dev_priv, | |||
3563 | 3564 | ||
3564 | /* 7. Setup MBUS. */ | 3565 | /* 7. Setup MBUS. */ |
3565 | icl_mbus_init(dev_priv); | 3566 | icl_mbus_init(dev_priv); |
3567 | |||
3568 | if (resume && dev_priv->csr.dmc_payload) | ||
3569 | intel_csr_load_program(dev_priv); | ||
3566 | } | 3570 | } |
3567 | 3571 | ||
3568 | static void icl_display_core_uninit(struct drm_i915_private *dev_priv) | 3572 | static void icl_display_core_uninit(struct drm_i915_private *dev_priv) |