Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit db88c8f4 authored by Chen Gang S's avatar Chen Gang S Committed by Dave Airlie
Browse files

drm: Kconfig: Let all DRM_GEM_CMA_HELPER related macros depend on HAVE_DMA_ATTRS



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: default avatarChen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 44df9c41
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -62,12 +62,13 @@ config DRM_TTM


config DRM_GEM_CMA_HELPER
config DRM_GEM_CMA_HELPER
	bool
	bool
	depends on DRM
	depends on DRM && HAVE_DMA_ATTRS
	help
	help
	  Choose this if you need the GEM CMA helper functions
	  Choose this if you need the GEM CMA helper functions


config DRM_KMS_CMA_HELPER
config DRM_KMS_CMA_HELPER
	bool
	bool
	depends on DRM && HAVE_DMA_ATTRS
	select DRM_GEM_CMA_HELPER
	select DRM_GEM_CMA_HELPER
	select DRM_KMS_FB_HELPER
	select DRM_KMS_FB_HELPER
	select FB_SYS_FILLRECT
	select FB_SYS_FILLRECT
+1 −1
Original line number Original line Diff line number Diff line
@@ -5,7 +5,7 @@ config DRM_IMX
	select VIDEOMODE_HELPERS
	select VIDEOMODE_HELPERS
	select DRM_GEM_CMA_HELPER
	select DRM_GEM_CMA_HELPER
	select DRM_KMS_CMA_HELPER
	select DRM_KMS_CMA_HELPER
	depends on DRM && (ARCH_MXC || ARCH_MULTIPLATFORM)
	depends on DRM && (ARCH_MXC || ARCH_MULTIPLATFORM) && HAVE_DMA_ATTRS
	depends on IMX_IPUV3_CORE
	depends on IMX_IPUV3_CORE
	help
	help
	  enable i.MX graphics support
	  enable i.MX graphics support
+1 −1
Original line number Original line Diff line number Diff line
config DRM_RCAR_DU
config DRM_RCAR_DU
	tristate "DRM Support for R-Car Display Unit"
	tristate "DRM Support for R-Car Display Unit"
	depends on DRM && ARM
	depends on DRM && ARM && HAVE_DMA_ATTRS
	depends on ARCH_SHMOBILE || COMPILE_TEST
	depends on ARCH_SHMOBILE || COMPILE_TEST
	select DRM_KMS_HELPER
	select DRM_KMS_HELPER
	select DRM_KMS_CMA_HELPER
	select DRM_KMS_CMA_HELPER
+1 −1
Original line number Original line Diff line number Diff line
config DRM_SHMOBILE
config DRM_SHMOBILE
	tristate "DRM Support for SH Mobile"
	tristate "DRM Support for SH Mobile"
	depends on DRM && ARM
	depends on DRM && ARM && HAVE_DMA_ATTRS
	depends on ARCH_SHMOBILE || COMPILE_TEST
	depends on ARCH_SHMOBILE || COMPILE_TEST
	depends on FB_SH_MOBILE_MERAM || !FB_SH_MOBILE_MERAM
	depends on FB_SH_MOBILE_MERAM || !FB_SH_MOBILE_MERAM
	select BACKLIGHT_CLASS_DEVICE
	select BACKLIGHT_CLASS_DEVICE
+1 −1
Original line number Original line Diff line number Diff line
config DRM_STI
config DRM_STI
	tristate "DRM Support for STMicroelectronics SoC stiH41x Series"
	tristate "DRM Support for STMicroelectronics SoC stiH41x Series"
	depends on DRM && (SOC_STIH415 || SOC_STIH416 || ARCH_MULTIPLATFORM)
	depends on DRM && (SOC_STIH415 || SOC_STIH416 || ARCH_MULTIPLATFORM) && HAVE_DMA_ATTRS
	select RESET_CONTROLLER
	select RESET_CONTROLLER
	select DRM_KMS_HELPER
	select DRM_KMS_HELPER
	select DRM_GEM_CMA_HELPER
	select DRM_GEM_CMA_HELPER
Loading