1. 25 1月, 2015 3 次提交
  2. 25 11月, 2014 1 次提交
  3. 24 11月, 2014 10 次提交
  4. 20 9月, 2014 1 次提交
    • I
      drm/exynos: use drm generic mmap interface · 832316c7
      Inki Dae 提交于
      This patch removes DRM_EXYNOS_GEM_MMAP ictrl feature specific
      to Exynos drm and instead uses drm generic mmap.
      
      We had used the interface specific to Exynos drm to do mmap directly,
      not to use demand paging which maps each page with physical memory
      at page fault handler. We don't need the specific mmap interface
      because the drm generic mmap which uses vm offset manager stuff can
      also do mmap directly.
      
      This patch makes a userspace region to be mapped with whole physical
      memory region allocated by userspace request when mmap system call is
      requested.
      
      Changelog v2:
      - do not set VM_IO, VM_DONTEXPEND and VM_DONTDUMP. These flags were already
        set by drm_gem_mmap
      - do not include <linux/anon_inodes.h>, which isn't needed anymore.
      Signed-off-by: NInki Dae <inki.dae@samsung.com>
      832316c7
  5. 03 8月, 2014 3 次提交
  6. 24 6月, 2014 1 次提交
  7. 18 6月, 2014 1 次提交
    • D
      drm: Don't export internal module variables · a1bc07c5
      Daniel Vetter 提交于
      Drivers really have no business touching these. Noticed because
      exynose _did_ touch the vblank off delay, which could potentially
      affect other drivers.
      
      drm_debug is an exception since it's used in macros and inline
      functions.
      
      Note that this reduces the timeout on exynos from 50s to 5s.
      Apparently this was done to paper over a vblank get/put race in
      exynos, but really should be fixed properly somewhere else. Spotted by
      David.
      
      v2: Drop bonghits changes. Note to self: Don't submit patches
      before first coffee.
      
      Cc: Inki Dae <inki.dae@samsung.com>
      Reviewed-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      a1bc07c5
  8. 02 6月, 2014 3 次提交
  9. 04 4月, 2014 1 次提交
  10. 23 3月, 2014 12 次提交
  11. 28 2月, 2014 1 次提交
    • M
      arm: dma-mapping: remove order parameter from arm_iommu_create_mapping() · 68efd7d2
      Marek Szyprowski 提交于
      The 'order' parameter for IOMMU-aware dma-mapping implementation was
      introduced mainly as a hack to reduce size of the bitmap used for
      tracking IO virtual address space. Since now it is possible to dynamically
      resize the bitmap, this hack is not needed and can be removed without any
      impact on the client devices. This way the parameters for
      arm_iommu_create_mapping() becomes much easier to understand. 'size'
      parameter now means the maximum supported IO address space size.
      
      The code will allocate (resize) bitmap in chunks, ensuring that a single
      chunk is not larger than a single memory page to avoid unreliable
      allocations of size larger than PAGE_SIZE in atomic context.
      Signed-off-by: NMarek Szyprowski <m.szyprowski@samsung.com>
      68efd7d2
  12. 07 1月, 2014 1 次提交
  13. 28 6月, 2013 1 次提交
    • R
      drm/exynos: hdmi: use drm_display_mode to check the supported modes · 16844fb1
      Rahul Sharma 提交于
      This patch renames check_timing to check_mode and removes the
      unnecessary conversion of drm_display_mode to/from fb_videomode in
      the hdmi driver.
      
      v4:
      1) Changed the commit message to add information related to renaming
      the callbacks to check_mode.
      2) Changed debug message to print 1/0 for interlace mode.
      
      v3:
      1) Replaced check_timing callbacks with check_mode.
      2) Change the type of second parameter of check_mode callback from void
      pointer paramenter to struct drm_display_mode pointer.
      
      v2:
      1) Removed convert_to_video_timing().
      2) Corrected DRM_DEBUG_KMS to print the resolution properly.
      Signed-off-by: NRahul Sharma <rahul.sharma@samsung.com>
      Signed-off-by: NInki Dae <inki.dae@samsung.com>
      16844fb1
  14. 29 4月, 2013 1 次提交