1. 30 9月, 2014 1 次提交
  2. 21 7月, 2014 1 次提交
  3. 04 4月, 2014 2 次提交
  4. 18 3月, 2014 1 次提交
  5. 07 8月, 2013 1 次提交
  6. 25 7月, 2013 1 次提交
    • D
      drm/gem: convert to new unified vma manager · 0de23977
      David Herrmann 提交于
      Use the new vma manager instead of the old hashtable. Also convert all
      drivers to use the new convenience helpers. This drops all the
      (map_list.hash.key << PAGE_SHIFT) non-sense.
      
      Locking and access-management is exactly the same as before with an
      additional lock inside of the vma-manager, which strictly wouldn't be
      needed for gem.
      
      v2:
       - rebase on drm-next
       - init nodes via drm_vma_node_reset() in drm_gem.c
      v3:
       - fix tegra
      v4:
       - remove duplicate if (drm_vma_node_has_offset()) checks
       - inline now trivial drm_vma_node_offset_addr() calls
      v5:
       - skip node-reset on gem-init due to kzalloc()
       - do not allow mapping gem-objects with offsets (backwards compat)
       - remove unneccessary casts
      
      Cc: Inki Dae <inki.dae@samsung.com>
      Cc: Rob Clark <robdclark@gmail.com>
      Cc: Dave Airlie <airlied@redhat.com>
      Cc: Thierry Reding <thierry.reding@gmail.com>
      Signed-off-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Acked-by: NPatrik Jakobsson <patrik.r.jakobsson@gmail.com>
      Reviewed-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Signed-off-by: NDave Airlie <airlied@gmail.com>
      0de23977
  7. 16 7月, 2013 1 次提交
  8. 05 7月, 2013 2 次提交
  9. 28 6月, 2013 1 次提交
  10. 11 6月, 2013 1 次提交
  11. 08 6月, 2013 3 次提交
  12. 18 2月, 2013 1 次提交
    • R
      drm/cma: add debugfs helpers · 6f646095
      Rob Clark 提交于
      Add helper to display fb's which can be used directly in drm_info_list:
      
      static struct drm_info_list foo_debugfs_list[] = {
      		...
      		{ "fb",   drm_fb_cma_debugfs_show, 0 },
      };
      
      to display information about CMA fb objects, as well as a
      drm_gem_cma_describe() which can be used if the driver bothers to keep
      a list of CMA GEM objects.
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      6f646095
  13. 18 9月, 2012 1 次提交