From: Inki Dae <inki.dae@samsung.com>
To: Joonyoung Shim <jy0922.shim@samsung.com>
Cc: sw0312.kim@samsung.com, dri-devel@lists.freedesktop.org,
m.szyprowski@samsung.com
Subject: Re: [PATCH 1/2] drm/exynos: remove DRM_EXYNOS_DMABUF config
Date: Wed, 04 Feb 2015 14:23:26 +0900 [thread overview]
Message-ID: <54D1ACCE.1020806@samsung.com> (raw)
In-Reply-To: <1422358845-22000-1-git-send-email-jy0922.shim@samsung.com>
On 2015년 01월 27일 20:40, Joonyoung Shim wrote:
> The exynos drm driver has DRIVER_PRIME capability, then it's reasonable
> to support dmabuf as default. Remove DRM_EXYNOS_DMABUF config, it will
> prevent that user selects the option unnecessarily.
Applied two patches, 1 and 2.
Thanks,
Inki Dae.
>
> Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
> ---
> This patch can be conflicted below link patch of Marek to remove
> selection of DRM_EXYNOS_IOMMU.
Yes, conflicted so merged it manually. :)
>
> http://www.spinics.net/lists/linux-samsung-soc/msg41392.html
>
> drivers/gpu/drm/exynos/Kconfig | 6 ------
> drivers/gpu/drm/exynos/Makefile | 3 +--
> drivers/gpu/drm/exynos/exynos_drm_dmabuf.h | 5 -----
> 3 files changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/exynos/Kconfig
> index 7f9f6f9..c8385f7 100644
> --- a/drivers/gpu/drm/exynos/Kconfig
> +++ b/drivers/gpu/drm/exynos/Kconfig
> @@ -18,12 +18,6 @@ config DRM_EXYNOS_IOMMU
> help
> Choose this option if you want to use IOMMU feature for DRM.
>
> -config DRM_EXYNOS_DMABUF
> - bool "EXYNOS DRM DMABUF"
> - depends on DRM_EXYNOS
> - help
> - Choose this option if you want to use DMABUF feature for DRM.
> -
> config DRM_EXYNOS_FIMD
> bool "Exynos DRM FIMD"
> depends on DRM_EXYNOS && !FB_S3C
> diff --git a/drivers/gpu/drm/exynos/Makefile b/drivers/gpu/drm/exynos/Makefile
> index 33ae365..0856891 100644
> --- a/drivers/gpu/drm/exynos/Makefile
> +++ b/drivers/gpu/drm/exynos/Makefile
> @@ -6,10 +6,9 @@ ccflags-y := -Iinclude/drm -Idrivers/gpu/drm/exynos
> exynosdrm-y := exynos_drm_drv.o exynos_drm_encoder.o \
> exynos_drm_crtc.o exynos_drm_fbdev.o exynos_drm_fb.o \
> exynos_drm_buf.o exynos_drm_gem.o exynos_drm_core.o \
> - exynos_drm_plane.o
> + exynos_drm_plane.o exynos_drm_dmabuf.o
>
> exynosdrm-$(CONFIG_DRM_EXYNOS_IOMMU) += exynos_drm_iommu.o
> -exynosdrm-$(CONFIG_DRM_EXYNOS_DMABUF) += exynos_drm_dmabuf.o
> exynosdrm-$(CONFIG_DRM_EXYNOS_FIMD) += exynos_drm_fimd.o
> exynosdrm-$(CONFIG_DRM_EXYNOS_DPI) += exynos_drm_dpi.o
> exynosdrm-$(CONFIG_DRM_EXYNOS_DSI) += exynos_drm_dsi.o
> diff --git a/drivers/gpu/drm/exynos/exynos_drm_dmabuf.h b/drivers/gpu/drm/exynos/exynos_drm_dmabuf.h
> index 49acfaf..886de9f 100644
> --- a/drivers/gpu/drm/exynos/exynos_drm_dmabuf.h
> +++ b/drivers/gpu/drm/exynos/exynos_drm_dmabuf.h
> @@ -12,14 +12,9 @@
> #ifndef _EXYNOS_DRM_DMABUF_H_
> #define _EXYNOS_DRM_DMABUF_H_
>
> -#ifdef CONFIG_DRM_EXYNOS_DMABUF
> struct dma_buf *exynos_dmabuf_prime_export(struct drm_device *drm_dev,
> struct drm_gem_object *obj, int flags);
>
> struct drm_gem_object *exynos_dmabuf_prime_import(struct drm_device *drm_dev,
> struct dma_buf *dma_buf);
> -#else
> -#define exynos_dmabuf_prime_export NULL
> -#define exynos_dmabuf_prime_import NULL
> -#endif
> #endif
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
prev parent reply other threads:[~2015-02-04 5:23 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-27 11:40 [PATCH 1/2] drm/exynos: remove DRM_EXYNOS_DMABUF config Joonyoung Shim
2015-01-27 11:40 ` [PATCH 2/2] drm/exynos: remove to use unnecessary MODULE_xxx macro Joonyoung Shim
2015-01-27 13:02 ` Gustavo Padovan
2015-01-27 13:01 ` [PATCH 1/2] drm/exynos: remove DRM_EXYNOS_DMABUF config Gustavo Padovan
2015-02-04 5:23 ` Inki Dae [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54D1ACCE.1020806@samsung.com \
--to=inki.dae@samsung.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jy0922.shim@samsung.com \
--cc=m.szyprowski@samsung.com \
--cc=sw0312.kim@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox