1. 27 6月, 2019 1 次提交
    • S
      drm/exynos: drop drmP.h usage · 2bda34d7
      Sam Ravnborg 提交于
      Drop use of the deprecated drmP.h file.
      Replace with forwards / externals as appropriate.
      
      While touching the list of include files divide
      them up in blocks and sort them.
      
      v3:
      - fix build errors in exynos_drm_g2d.c (Inki Dae)
        The exynos_drm_g2d.c file is not built in the
        standard configurations and was therefore missed.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Cc: Inki Dae <inki.dae@samsung.com>
      Cc: Joonyoung Shim <jy0922.shim@samsung.com>
      Cc: Seung-Woo Kim <sw0312.kim@samsung.com>
      Cc: Kyungmin Park <kyungmin.park@samsung.com>
      Cc: David Airlie <airlied@linux.ie>
      Cc: Daniel Vetter <daniel@ffwll.ch>
      Cc: Kukjin Kim <kgene@kernel.org>
      Cc: Krzysztof Kozlowski <krzk@kernel.org>
      Cc: Jingoo Han <jingoohan1@gmail.com>
      Fixed merge conflict.
      Signed-off-by: NInki Dae <inki.dae@samsung.com>
      2bda34d7
  2. 31 5月, 2019 1 次提交
  3. 24 4月, 2019 1 次提交
  4. 24 1月, 2019 1 次提交
  5. 04 12月, 2018 1 次提交
  6. 24 7月, 2018 1 次提交
  7. 02 7月, 2018 1 次提交
  8. 17 4月, 2018 3 次提交
  9. 28 3月, 2018 1 次提交
  10. 08 12月, 2017 1 次提交
  11. 25 8月, 2017 1 次提交
  12. 09 8月, 2017 1 次提交
  13. 26 7月, 2017 1 次提交
  14. 20 6月, 2017 1 次提交
    • C
      drm/exynos: don't use DMA_ERROR_CODE · e0c7a510
      Christoph Hellwig 提交于
      DMA_ERROR_CODE already isn't a valid API to user for drivers and will
      go away soon.  exynos_drm_fb_dma_addr uses it a an error return when
      the passed in index is invalid, but the callers never check for it
      but instead pass the address straight to the hardware.
      
      Add a WARN_ON instead and just return 0.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      e0c7a510
  15. 31 1月, 2017 1 次提交
    • I
      drm/exynos: use atomic helper commit · 41cbf0fd
      Inki Dae 提交于
      This patch replaces specific atomic commit function
      with atomic helper commit one.
      
      For this, it removes existing atomic commit function
      and relevant code specific to Exynos DRM and makes
      atomic helper commit to be used instead.
      
      Below are changes for the use of atomic helper commit:
      - add atomic_commit_tail callback specific to Exynos DRM
        . default implemention of atomic helper doesn't mesh well
          with runtime PM so the device driver which supports runtime
          PM should call drm_atomic_helper_commit_modeset_enables function
          prior to drm_atomic_helper_commit_planes function call.
          atomic_commit_tail callback implements this call ordering.
      - allow plane commit only in case that CRTC device is enabled.
        . for this, it calls atomic_helper_commit_planes function
          with DRM_PLANE_COMMIT_ACTIVE_ONLY flag in atomic_commit_tail callback.
      Signed-off-by: NInki Dae <inki.dae@samsung.com>
      Reviewed-by: NGustavo Padovan <gustavo.padovan@collabora.com>
      41cbf0fd
  16. 15 12月, 2016 1 次提交
  17. 27 10月, 2016 1 次提交
  18. 18 9月, 2016 1 次提交
  19. 17 5月, 2016 1 次提交
  20. 10 5月, 2016 1 次提交
  21. 30 4月, 2016 1 次提交
  22. 12 4月, 2016 1 次提交
  23. 12 1月, 2016 1 次提交
  24. 15 12月, 2015 1 次提交
  25. 13 12月, 2015 1 次提交
  26. 24 11月, 2015 1 次提交
  27. 26 10月, 2015 1 次提交
    • J
      drm/exynos: cleanup name of gem object for exynos_drm · 813fd67b
      Joonyoung Shim 提交于
      Struct of gem object in exynos_drm driver is struct exynos_drm_gem_obj.
      It's too long and we can know its meaning of name without _obj postfix.
      
      We use several names to variable name of gem object for exynos_drm -
      exynos_gem_obj, gem_obj and obj. Especially "obj" name can cause
      misunderstanding with variable name "obj" of struct drm_gem_object.
      
      This will clean about name of gem object for exynos_drm as follows.
      s/struct exynos_drm_gem_obj/struct exynos_drm_gem
      s/exynos_gem_obj or gem_obj or obj/exynos_gem
      Signed-off-by: NJoonyoung Shim <jy0922.shim@samsung.com>
      Signed-off-by: NInki Dae <inki.dae@samsung.com>
      813fd67b
  28. 02 9月, 2015 6 次提交
  29. 30 8月, 2015 1 次提交
  30. 16 8月, 2015 1 次提交
  31. 19 6月, 2015 3 次提交