1. 03 11月, 2015 3 次提交
  2. 03 2月, 2015 1 次提交
    • C
      drm: Kconfig: Let all DRM_GEM_CMA_HELPER related macros depend on HAVE_DMA_ATTRS · db88c8f4
      Chen Gang S 提交于
      DRM_GEM_CMA_HELPER is depend on HAVE_DMA_ATTRS, or it will break the
      building. The related error (with allmodconfig under xtensa):
      
          CC [M]  drivers/gpu/drm/drm_gem_cma_helper.o
        drivers/gpu/drm/drm_gem_cma_helper.c: In function 'drm_gem_cma_create':
        drivers/gpu/drm/drm_gem_cma_helper.c:110:19: error: implicit declaration of function 'dma_alloc_writecombine' [-Werror=implicit-function-declaration]
          cma_obj->vaddr = dma_alloc_writecombine(drm->dev, size,
                           ^
        drivers/gpu/drm/drm_gem_cma_helper.c:110:17: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
          cma_obj->vaddr = dma_alloc_writecombine(drm->dev, size,
                         ^
        drivers/gpu/drm/drm_gem_cma_helper.c: In function 'drm_gem_cma_free_object':
        drivers/gpu/drm/drm_gem_cma_helper.c:193:3: error: implicit declaration of function 'dma_free_writecombine' [-Werror=implicit-function-declaration]
           dma_free_writecombine(gem_obj->dev->dev, cma_obj->base.size,
           ^
        drivers/gpu/drm/drm_gem_cma_helper.c: In function 'drm_gem_cma_mmap_obj':
        drivers/gpu/drm/drm_gem_cma_helper.c:330:8: error: implicit declaration of function 'dma_mmap_writecombine' [-Werror=implicit-function-declaration]
          ret = dma_mmap_writecombine(cma_obj->base.dev->dev, vma,
                ^
      Signed-off-by: NChen Gang <gang.chen.5i5j@gmail.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      db88c8f4
  3. 31 1月, 2015 1 次提交
    • A
      drm: sti: add panel dependency · 8e6a363d
      Arnd Bergmann 提交于
      The newly added sti driver requires the drm_panel helpers,
      and we get a link error if they are not enabled
      
      ERROR: "drm_panel_attach" [drivers/gpu/drm/sti/stidvo.ko] undefined!
      ERROR: "of_drm_find_panel" [drivers/gpu/drm/sti/stidvo.ko] undefined!
      
      This adds a 'select' statement as we have for the other drivers.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NDave Airlie <airlied@gmail.com>
      8e6a363d
  4. 11 12月, 2014 1 次提交
    • B
      drm: sti: add HQVDP plane · 4fdbc678
      Benjamin Gaignard 提交于
      High Quality Video Data Plane is hardware IP dedicated
      to video rendering. Compare to GPD (graphic planes) it
      have better scaler capabilities.
      
      HQVDP use VID layer to push data into hardware compositor
      without going into DDR. From data flow point of view HQVDP
      and VID are nested so HQVPD update/disable VID.
      Signed-off-by: NBenjamin Gaignard <benjamin.gaignard@linaro.org>
      4fdbc678
  5. 26 8月, 2014 1 次提交
    • J
      drm: sti: Add missing dependency on RESET_CONTROLLER · f5ec6c4b
      Jingoo Han 提交于
      Add missing dependency on RESET_CONTROLLER in order to fix
      the following build error.
      
      drivers/gpu/drm/sti/sti_hdmi.c: In function 'sti_hdmi_probe'
      drivers/gpu/drm/sti/sti_hdmi.c:780:2: error: implicit declaration of function 'devm_reset_control_get'
      [-Werror=implicit-function-declaration]
      
      Benjamin Gaignard remark:
      I have change "depends on" to "select" but keep the original author name.
      Signed-off-by: NJingoo Han <jg1.han@samsung.com>
      f5ec6c4b
  6. 31 7月, 2014 3 次提交