From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Thomas Zimmermann <tzimmermann@suse.de>
Cc: hamohammed.sa@gmail.com, heiko@sntech.de,
andrey.grodzovsky@amd.com, airlied@linux.ie,
nouveau@lists.freedesktop.org, joonas.lahtinen@linux.intel.com,
dri-devel@lists.freedesktop.org, michal.simek@xilinx.com,
eric@anholt.net, thierry.reding@gmail.com, robdclark@gmail.com,
krzk@kernel.org, sam@ravnborg.org, sumit.semwal@linaro.org,
emil.velikov@collabora.com, abdiel.janulgue@linux.intel.com,
linux-samsung-soc@vger.kernel.org, jy0922.shim@samsung.com,
oleksandr_andrushchenko@epam.com, tomi.valkeinen@ti.com,
linux-tegra@vger.kernel.org, linux@armlinux.org.uk,
patrik.r.jakobsson@gmail.com, jonathanh@nvidia.com,
linux-rockchip@lists.infradead.org, kgene@kernel.org,
bskeggs@redhat.com, xen-devel@lists.xenproject.org,
intel-gfx@lists.freedesktop.org, matthew.auld@intel.com,
chunkuang.hu@kernel.org, andi.shyti@intel.com, daniel@ffwll.ch,
linux-arm-msm@vger.kernel.org, marek.olsak@amd.com,
tianci.yin@amd.com, maarten.lankhorst@linux.intel.com,
etnaviv@lists.freedesktop.org, jani.nikula@linux.intel.com,
inki.dae@samsung.com, hdegoede@redhat.com,
christian.gmeiner@gmail.com, linux-mediatek@lists.infradead.org,
mripard@kernel.org, rodrigo.vivi@intel.com,
matthias.bgg@gmail.com, evan.quan@amd.com, sean@poorly.run,
linux-arm-kernel@lists.infradead.org,
tvrtko.ursulin@linux.intel.com, amd-gfx@lists.freedesktop.org,
chris@chris-wilson.co.uk, hyun.kwon@xilinx.com,
rodrigosiqueiramelo@gmail.com, aaron.liu@amd.com,
Felix.Kuehling@amd.com, xinhui.pan@amd.com,
sw0312.kim@samsung.com, hjc@rock-chips.com,
miaoqinglang@huawei.com, kyungmin.park@samsung.com,
nirmoy.das@amd.com, p.zabel@pengutronix.de,
alexander.deucher@amd.com, Hawking.Zhang@amd.com,
freedreno@lists.freedesktop.org, christian.koenig@amd.com,
l.stach@pengutronix.de
Subject: Re: [PATCH 19/20] drm/xlnx: Initialize DRM driver instance with CMA helper macro
Date: Thu, 13 Aug 2020 16:36:05 +0300 [thread overview]
Message-ID: <20200813133605.GJ6057@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20200813083644.31711-20-tzimmermann@suse.de>
Hi Thomas,
Thank you for the patch.
On Thu, Aug 13, 2020 at 10:36:43AM +0200, Thomas Zimmermann wrote:
> The xlnx driver uses CMA helpers with default callback functions.
> Initialize the driver structure with the rsp CMA helper macro. The
> driver is being converted to use GEM object functions as part of
> this change.
>
> Two callbacks, .dumb_destroy and .gem_prime_import, were initialized
> to their default implementations, so they are just kept empty now.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> ---
> drivers/gpu/drm/xlnx/zynqmp_dpsub.c | 14 +-------------
> 1 file changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/xlnx/zynqmp_dpsub.c b/drivers/gpu/drm/xlnx/zynqmp_dpsub.c
> index 26328c76305b..058044dcc062 100644
> --- a/drivers/gpu/drm/xlnx/zynqmp_dpsub.c
> +++ b/drivers/gpu/drm/xlnx/zynqmp_dpsub.c
> @@ -80,19 +80,7 @@ static struct drm_driver zynqmp_dpsub_drm_driver = {
> .driver_features = DRIVER_MODESET | DRIVER_GEM |
> DRIVER_ATOMIC,
>
> - .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
> - .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
> - .gem_prime_export = drm_gem_prime_export,
> - .gem_prime_import = drm_gem_prime_import,
> - .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
> - .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
> - .gem_prime_vmap = drm_gem_cma_prime_vmap,
> - .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
> - .gem_prime_mmap = drm_gem_cma_prime_mmap,
> - .gem_free_object_unlocked = drm_gem_cma_free_object,
> - .gem_vm_ops = &drm_gem_cma_vm_ops,
> - .dumb_create = zynqmp_dpsub_dumb_create,
> - .dumb_destroy = drm_gem_dumb_destroy,
> + DRM_GEM_CMA_DRIVER_OPS_VMAP_WITH_DUMB_CREATE(zynqmp_dpsub_dumb_create),
The only effective change here is
- .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
- .gem_prime_mmap = drm_gem_cma_prime_mmap,
+ .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table_vmap,
+ .gem_prime_mmap = drm_gem_prime_mmap,
The change is significant, and I have a hard time following the code to
verify that it's correct, or if it's an undesired side effect. If it's
correct, could the change be mentioned in the commit message, with at
least a brief explanation of why this is correct, and what the
consequences here ?
>
> .fops = &zynqmp_dpsub_drm_fops,
>
--
Regards,
Laurent Pinchart
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
next prev parent reply other threads:[~2020-08-13 13:36 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20200813083644.31711-1-tzimmermann@suse.de>
[not found] ` <20200813083644.31711-7-tzimmermann@suse.de>
[not found] ` <877du2j4lf.fsf@intel.com>
2020-08-13 9:13 ` [PATCH 06/20] drm/i915: Introduce GEM object functions Thomas Zimmermann
[not found] ` <20200813083644.31711-21-tzimmermann@suse.de>
2020-08-13 10:16 ` [PATCH 20/20] drm: Remove obsolete GEM and PRIME callbacks from struct drm_driver Sam Ravnborg
2020-08-13 10:33 ` Thomas Zimmermann
[not found] ` <20200813083644.31711-2-tzimmermann@suse.de>
2020-08-13 10:22 ` [PATCH 01/20] drm/amdgpu: Introduce GEM object functions Christian König
2020-09-14 15:05 ` Thomas Zimmermann
[not found] ` <20200813083644.31711-13-tzimmermann@suse.de>
2020-08-13 10:24 ` [PATCH 12/20] drm/radeon: " Christian König
2020-08-13 10:41 ` Thomas Zimmermann
2020-08-13 10:47 ` Christian König
[not found] ` <20200813083644.31711-19-tzimmermann@suse.de>
2020-08-13 11:19 ` [PATCH 18/20] drm/xen: " Oleksandr Andrushchenko
2020-09-15 8:56 ` Thomas Zimmermann
[not found] ` <20200813083644.31711-20-tzimmermann@suse.de>
2020-08-13 13:36 ` Laurent Pinchart [this message]
2020-08-13 13:57 ` [PATCH 19/20] drm/xlnx: Initialize DRM driver instance with CMA helper macro Thomas Zimmermann
[not found] ` <20200813083644.31711-11-tzimmermann@suse.de>
2020-08-13 13:38 ` [PATCH 10/20] drm/omapdrm: Introduce GEM object functions Laurent Pinchart
2020-08-19 10:43 ` Tomi Valkeinen
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=20200813133605.GJ6057@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=Felix.Kuehling@amd.com \
--cc=Hawking.Zhang@amd.com \
--cc=aaron.liu@amd.com \
--cc=abdiel.janulgue@linux.intel.com \
--cc=airlied@linux.ie \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=andi.shyti@intel.com \
--cc=andrey.grodzovsky@amd.com \
--cc=bskeggs@redhat.com \
--cc=chris@chris-wilson.co.uk \
--cc=christian.gmeiner@gmail.com \
--cc=christian.koenig@amd.com \
--cc=chunkuang.hu@kernel.org \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=emil.velikov@collabora.com \
--cc=eric@anholt.net \
--cc=etnaviv@lists.freedesktop.org \
--cc=evan.quan@amd.com \
--cc=freedreno@lists.freedesktop.org \
--cc=hamohammed.sa@gmail.com \
--cc=hdegoede@redhat.com \
--cc=heiko@sntech.de \
--cc=hjc@rock-chips.com \
--cc=hyun.kwon@xilinx.com \
--cc=inki.dae@samsung.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=jonathanh@nvidia.com \
--cc=joonas.lahtinen@linux.intel.com \
--cc=jy0922.shim@samsung.com \
--cc=kgene@kernel.org \
--cc=krzk@kernel.org \
--cc=kyungmin.park@samsung.com \
--cc=l.stach@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marek.olsak@amd.com \
--cc=matthew.auld@intel.com \
--cc=matthias.bgg@gmail.com \
--cc=miaoqinglang@huawei.com \
--cc=michal.simek@xilinx.com \
--cc=mripard@kernel.org \
--cc=nirmoy.das@amd.com \
--cc=nouveau@lists.freedesktop.org \
--cc=oleksandr_andrushchenko@epam.com \
--cc=p.zabel@pengutronix.de \
--cc=patrik.r.jakobsson@gmail.com \
--cc=robdclark@gmail.com \
--cc=rodrigo.vivi@intel.com \
--cc=rodrigosiqueiramelo@gmail.com \
--cc=sam@ravnborg.org \
--cc=sean@poorly.run \
--cc=sumit.semwal@linaro.org \
--cc=sw0312.kim@samsung.com \
--cc=thierry.reding@gmail.com \
--cc=tianci.yin@amd.com \
--cc=tomi.valkeinen@ti.com \
--cc=tvrtko.ursulin@linux.intel.com \
--cc=tzimmermann@suse.de \
--cc=xen-devel@lists.xenproject.org \
--cc=xinhui.pan@amd.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