1. 26 10月, 2015 7 次提交
  2. 16 8月, 2015 13 次提交
  3. 11 8月, 2015 1 次提交
  4. 19 6月, 2015 3 次提交
  5. 13 4月, 2015 1 次提交
  6. 07 4月, 2015 1 次提交
    • J
      drm/exynos: constify all struct drm_*_helper funcs pointers · b0f8778a
      Jani Nikula 提交于
      They are not to be modified.
      
      Generated using the semantic patch:
      
      @@
      @@
      (
        const struct drm_crtc_helper_funcs *
      |
      - struct drm_crtc_helper_funcs *
      + const struct drm_crtc_helper_funcs *
      )
      
      @@
      @@
      (
        const struct drm_encoder_helper_funcs *
      |
      - struct drm_encoder_helper_funcs *
      + const struct drm_encoder_helper_funcs *
      )
      
      @@
      @@
      (
        const struct drm_connector_helper_funcs *
      |
      - struct drm_connector_helper_funcs *
      + const struct drm_connector_helper_funcs *
      )
      
      @@
      @@
      (
        const struct drm_plane_helper_funcs *
      |
      - struct drm_plane_helper_funcs *
      + const struct drm_plane_helper_funcs *
      )
      Signed-off-by: NJani Nikula <jani.nikula@intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      b0f8778a
  7. 07 2月, 2015 1 次提交
  8. 18 1月, 2015 1 次提交
  9. 24 11月, 2014 2 次提交
  10. 03 11月, 2014 1 次提交
  11. 19 9月, 2014 1 次提交
  12. 04 8月, 2014 2 次提交
  13. 03 8月, 2014 3 次提交
  14. 24 6月, 2014 1 次提交
    • I
      drm/exynos: hdmi: fix power order issue · 245f98f2
      Inki Dae 提交于
      This patch resolves page fault issue of Mixer when disabled.
      
      The SFRs of VP and Mixer are updated by Vertical Sync of Timing
      generator which is a part of HDMI so the sequence to disable TV
      Subsystem should be as following:
      	VP -> Mixer -> HDMI
      
      For this, this patch disables Mixer and VP (if used) prior to
      disabling HDMI.
      Signed-off-by: NInki Dae <inki.dae@samsung.com>
      245f98f2
  15. 19 6月, 2014 1 次提交
  16. 02 6月, 2014 1 次提交
    • I
      drm/exynos: consider deferred probe case · df5225bc
      Inki Dae 提交于
      This patch makes sure that exynos drm framework handles deferred
      probe case correctly.
      
      Sub drivers could be probed before resources, clock, regulator,
      phy or panel, are ready for them so we should make sure that exynos
      drm core waits until all resources are ready and sub drivers are
      probed correctly.
      
      Chagelog v2:
      - Make sure that exynos drm core tries to bind sub drivers only in case that
        they have a pair: crtc and encoder/connector components should be a pair.
      - Remove unnecessary patch:
        drm/exynos: mipi-dsi: consider panel driver-deferred probe
      - Return error type correctly.
      Signed-off-by: NInki Dae <inki.dae@samsung.com>
      Acked-by: NKyungmin Park <kyungmin.park@samsung.com>
      df5225bc