1. 10 2月, 2020 1 次提交
  2. 11 1月, 2020 1 次提交
  3. 03 1月, 2020 4 次提交
  4. 07 8月, 2019 1 次提交
  5. 17 6月, 2019 1 次提交
  6. 12 6月, 2019 1 次提交
  7. 08 6月, 2019 2 次提交
  8. 06 6月, 2019 1 次提交
  9. 26 4月, 2019 2 次提交
  10. 23 3月, 2019 1 次提交
  11. 14 3月, 2019 1 次提交
    • 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
  12. 09 1月, 2019 2 次提交
  13. 28 12月, 2018 1 次提交
  14. 03 12月, 2018 2 次提交
  15. 01 11月, 2018 1 次提交
  16. 31 10月, 2018 1 次提交
  17. 22 10月, 2018 4 次提交
  18. 18 10月, 2018 2 次提交
  19. 06 7月, 2018 1 次提交
  20. 19 4月, 2018 1 次提交
  21. 21 8月, 2017 1 次提交
  22. 18 8月, 2017 1 次提交
  23. 15 5月, 2017 1 次提交
  24. 07 3月, 2017 5 次提交
  25. 28 2月, 2017 1 次提交