1. 24 8月, 2019 1 次提交
  2. 17 8月, 2019 1 次提交
  3. 07 8月, 2019 1 次提交
  4. 29 7月, 2019 1 次提交
  5. 19 7月, 2019 1 次提交
  6. 12 7月, 2019 1 次提交
  7. 27 6月, 2019 3 次提交
  8. 17 6月, 2019 1 次提交
  9. 12 6月, 2019 3 次提交
  10. 04 6月, 2019 2 次提交
  11. 02 5月, 2019 1 次提交
  12. 26 4月, 2019 4 次提交
  13. 17 4月, 2019 1 次提交
  14. 08 4月, 2019 2 次提交
  15. 04 4月, 2019 2 次提交
  16. 03 4月, 2019 2 次提交
  17. 27 3月, 2019 1 次提交
  18. 20 3月, 2019 1 次提交
  19. 15 3月, 2019 1 次提交
  20. 14 3月, 2019 2 次提交
    • R
      drm/i915: Start using comparative INTEL_PCH_TYPE · c6c30b91
      Rodrigo Vivi 提交于
      In order to make it easier to bring up new platforms
      without having to take care about all corner cases
      that was previously taken care for previous platforms
      we already use comparative INTEL_GEN statements.
      
      Let's start doing the same with PCH.
      
      The only caveats are:
       - less-than comparisons need to be avoided or done with
         attention and check > PCH_NONE as well.
       - It is not necessarily a chronological order, but a matter
         of south display compatibility/inheritance.
      
      v2: Rebased on top of Jani's clean-up which removed the
          need for less-than comparison
      
      Cc: Jani Nikula <jani.nikula@intel.com>
      Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
      Cc: Lucas De Marchi <lucas.demarchi@intel.com>
      Signed-off-by: NRodrigo Vivi <rodrigo.vivi@intel.com>
      Reviewed-by: NLucas De Marchi <lucas.demarchi@intel.com>
      Link: https://patchwork.freedesktop.org/patch/msgid/20190308214300.25057-3-rodrigo.vivi@intel.com
      c6c30b91
    • R
      drm/i915/gen11+: First assume next platforms will inherit stuff · 2dd24a9c
      Rodrigo Vivi 提交于
      This exactly same approach was already used from gen9
      to gen10 and from gen10 to gen11. Let's also use it
      for gen11+.
      
      Let's first assume that we inherit a similar platform
      and than we apply the differences on top.
      
      Different from the previous attempts this will be
      done this time with coccinelle. We obviously need to
      exclude some case that is really exclusive for gen11
      like  PCH, Firmware, and few others. Luckly this was
      easy to filter by selecting the files we are touching
      with coccinelle as exposed below:
      
      spatch -sp_file gen11\+.cocci --in-place i915_perf.c \
             intel_bios.c intel_cdclk.c intel_ddi.c \
             intel_device_info.c intel_display.c intel_dpll_mgr.c \
             intel_dsi_vbt.c intel_hdmi.c intel_mocs.c intel_color.c
      
      @noticelake@ expression e; @@
      -!IS_ICELAKE(e)
      +INTEL_GEN(e) < 11
      @notgen11@ expression e; @@
      -!IS_GEN(e, 11)
      +INTEL_GEN(e) < 11
      @icelake@ expression e; @@
      -IS_ICELAKE(e)
      +INTEL_GEN(e) >= 11
      @gen11@ expression e; @@
      -IS_GEN(e, 11)
      +INTEL_GEN(e) >= 11
      
      No functional change.
      
      v2: Remove intel_lrc.c per Tvrtko request since those were w/a
          for ICL hw issuea and media related configuration.
      
      Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
      Cc: Lucas De Marchi <lucas.demarchi@intel.com>
      Signed-off-by: NRodrigo Vivi <rodrigo.vivi@intel.com>
      Reviewed-by: NLucas De Marchi <lucas.demarchi@intel.com>
      Link: https://patchwork.freedesktop.org/patch/msgid/20190308214300.25057-1-rodrigo.vivi@intel.com
      2dd24a9c
  21. 05 3月, 2019 1 次提交
  22. 14 2月, 2019 1 次提交
  23. 17 1月, 2019 1 次提交
  24. 15 1月, 2019 1 次提交
  25. 13 12月, 2018 1 次提交
  26. 14 11月, 2018 3 次提交