1. 10 10月, 2017 4 次提交
  2. 09 10月, 2017 2 次提交
  3. 06 10月, 2017 4 次提交
  4. 04 10月, 2017 2 次提交
  5. 03 10月, 2017 1 次提交
  6. 27 9月, 2017 1 次提交
  7. 22 9月, 2017 1 次提交
  8. 21 9月, 2017 1 次提交
  9. 19 9月, 2017 1 次提交
  10. 13 9月, 2017 2 次提交
  11. 11 9月, 2017 1 次提交
  12. 08 9月, 2017 3 次提交
  13. 07 9月, 2017 1 次提交
    • K
      drm/i915/bxt+: Enable IPC support · 2503a0fe
      Kumar, Mahesh 提交于
      This patch adds IPC support. This patch also enables IPC in all supported
      platforms based on has_ipc flag.
      IPC (Isochronous Priority Control) is the hardware feature, which
      dynamically controls the memory read priority of Display.
      
      When IPC is enabled, plane read requests are sent at high priority until
      filling above the transition watermark, then the requests are sent at
      lower priority until dropping below the level 0 watermark.
      The lower priority requests allow other memory clients to have better
      memory access. When IPC is disabled, all plane read requests are sent at
      high priority.
      
      Changes since V1:
       - Remove commandline parameter to disable ipc
       - Address Paulo's comments
      Changes since V2:
       - Address review comments
       - Set ipc_enabled flag
      Changes since V3:
       - move ipc_enabled flag assignment inside intel_ipc_enable function
      Changes since V4:
       - Re-enable IPC after suspend/resume
      Changes since V5:
       - Enable IPC for all gen >=9 except SKL
      Changes since V6:
       - fix commit msg
       - after resume program IPC based on SW state.
      Changes since V7:
       - Modify IPC support check based on HAS_IPC macro (suggested by Chris)
      Signed-off-by: NMahesh Kumar <mahesh1.kumar@intel.com>
      Cc: Chris Wilson <chris@chris-wilson.co.uk>
      Reviewed-by: NMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Signed-off-by: NMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Link: https://patchwork.freedesktop.org/patch/msgid/20170817134529.2839-8-mahesh1.kumar@intel.com
      2503a0fe
  14. 06 9月, 2017 1 次提交
  15. 01 9月, 2017 8 次提交
  16. 31 8月, 2017 4 次提交
  17. 29 8月, 2017 1 次提交
  18. 26 8月, 2017 1 次提交
  19. 25 8月, 2017 1 次提交
    • V
      drm/i915: Beef up the IPS vs. CRC workaround · 6e644626
      Ville Syrjälä 提交于
      Oneshot disabling of IPS when CRC capturing is started is insufficient.
      IPS may get re-enabled by any plane update, and hence tests that keep
      CRC capturing on across plane updates will start to see inconsistent
      results as soon as IPS kicks back in. Add a new knob into the crtc state
      to make sure IPS stays disabled as long as CRC capturing is enabled.
      
      Forcing a modeset is the easiest way to handle this since that's already
      how we do the panel fitter workaround. It's a little heavy handed just
      for IPS, but seeing as we might already do the panel fitter workaround
      I think it's better to follow that. We migth want to optimize both cases
      later if someone gets too upset by the extra delay from the modeset.
      
      v2: Check the right thing when deciding whether to force a modeset
      v3: Rebase, check HAS_IPS before forcing a modeset,
          move ips_force_disable check into pipe_config_supports_ips()
      
      Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
      Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
      Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Cc: Marta Lofstedt <marta.lofstedt@intel.com>
      Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101664Reviewed-by: NPaulo Zanoni <paulo.r.zanoni@intel.com>
      Tested-by: Marta Lofsted <marta.lofstedt@intel.com> #v2
      Signed-off-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
      Link: https://patchwork.freedesktop.org/patch/msgid/20170817145509.15549-1-ville.syrjala@linux.intel.com
      6e644626