From: Philippe CORNU <philippe.cornu@st.com>
To: "Noralf Trønnes" <noralf@tronnes.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>
Cc: "marex@denx.de" <marex@denx.de>,
"boris.brezillon@free-electrons.com"
<boris.brezillon@free-electrons.com>,
"david@lechnology.com" <david@lechnology.com>,
"narmstrong@baylibre.com" <narmstrong@baylibre.com>,
"liviu.dudau@arm.com" <liviu.dudau@arm.com>,
"alison.wang@freescale.com" <alison.wang@freescale.com>,
"abrodkin@synopsys.com" <abrodkin@synopsys.com>,
"jsarha@ti.com" <jsarha@ti.com>,
"z.liuxinliang@hisilicon.com" <z.liuxinliang@hisilicon.com>,
"kong.kongxinwei@hisilicon.com" <kong.kongxinwei@hisilicon.com>,
"tomi.valkeinen@ti.com" <tomi.valkeinen@ti.com>,
"laurent.pinchart@ideasonboard.com"
<laurent.pinchart@ideasonboard.com>,
"puck.chen@hisilicon.com" <puck.chen@hisilicon.com>,
"zourongrong@gmail.com" <zourongrong@gmail.com>,
"shawnguo@kernel.org" <shawnguo@kernel.org>,
"maxime.ripard@free-electrons.com"
<maxime.ripard@free-electrons.com>, Vincent ABRIOU <vincen>
Subject: Re: [PATCH 13/22] drm/stm: Use drm_fb_cma_fbdev_init/fini()
Date: Mon, 6 Nov 2017 17:32:48 +0000 [thread overview]
Message-ID: <45d6eb81-79b1-d34b-ec82-d104cbef0ef4@st.com> (raw)
In-Reply-To: <20171104130416.12423-14-noralf@tronnes.org>
Hi Noralf,
On 11/04/2017 02:04 PM, Noralf Trønnes wrote:
> Use drm_fb_cma_fbdev_init() and drm_fb_cma_fbdev_fini() which relies on
> the fact that drm_device holds a pointer to the drm_fb_helper structure.
> This means that the driver doesn't have to keep track of that.
> Also use the drm_fb_helper functions directly.
>
> Cc: Yannick Fertre <yannick.fertre@st.com>
> Cc: Philippe Cornu <philippe.cornu@st.com>
> Cc: Benjamin Gaignard <benjamin.gaignard@linaro.org>
> Cc: Vincent Abriou <vincent.abriou@st.com>
> Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Many thanks for this nice cleanup.
I will have to push a small fix to move drm_kms_helper_poll_init() after
drm_fb_cma_fbdev_init() in order to remove a warning when booting (+ a
small cleanup as "ldev = ddev->dev_private;" is not used anymore before
drm_fb_cma_fbdev_init().
Anyway, regarding your patchset for stm:
Acked-by: Philippe Cornu <philippe.cornu@st.com>
Tested-by: Philippe Cornu <philippe.cornu@st.com>
Thank you,
Philippe :-)
> ---
> drivers/gpu/drm/stm/drv.c | 37 ++++++-------------------------------
> drivers/gpu/drm/stm/ltdc.h | 1 -
> 2 files changed, 6 insertions(+), 32 deletions(-)
>
> diff --git a/drivers/gpu/drm/stm/drv.c b/drivers/gpu/drm/stm/drv.c
> index c857663eafc2..9a66f5671d4f 100644
> --- a/drivers/gpu/drm/stm/drv.c
> +++ b/drivers/gpu/drm/stm/drv.c
> @@ -15,6 +15,7 @@
> #include <drm/drm_atomic.h>
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_crtc_helper.h>
> +#include <drm/drm_fb_helper.h>
> #include <drm/drm_fb_cma_helper.h>
> #include <drm/drm_gem_cma_helper.h>
> #include <drm/drm_gem_framebuffer_helper.h>
> @@ -24,35 +25,19 @@
> #define STM_MAX_FB_WIDTH 2048
> #define STM_MAX_FB_HEIGHT 2048 /* same as width to handle orientation */
>
> -static void drv_output_poll_changed(struct drm_device *ddev)
> -{
> - struct ltdc_device *ldev = ddev->dev_private;
> -
> - drm_fbdev_cma_hotplug_event(ldev->fbdev);
> -}
> -
> static const struct drm_mode_config_funcs drv_mode_config_funcs = {
> .fb_create = drm_gem_fb_create,
> - .output_poll_changed = drv_output_poll_changed,
> + .output_poll_changed = drm_fb_helper_output_poll_changed,
> .atomic_check = drm_atomic_helper_check,
> .atomic_commit = drm_atomic_helper_commit,
> };
>
> -static void drv_lastclose(struct drm_device *ddev)
> -{
> - struct ltdc_device *ldev = ddev->dev_private;
> -
> - DRM_DEBUG("%s\n", __func__);
> -
> - drm_fbdev_cma_restore_mode(ldev->fbdev);
> -}
> -
> DEFINE_DRM_GEM_CMA_FOPS(drv_driver_fops);
>
> static struct drm_driver drv_driver = {
> .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME |
> DRIVER_ATOMIC,
> - .lastclose = drv_lastclose,
> + .lastclose = drm_fb_helper_lastclose,
> .name = "stm",
> .desc = "STMicroelectronics SoC DRM",
> .date = "20170330",
> @@ -79,7 +64,6 @@ static struct drm_driver drv_driver = {
> static int drv_load(struct drm_device *ddev)
> {
> struct platform_device *pdev = to_platform_device(ddev->dev);
> - struct drm_fbdev_cma *fbdev;
> struct ltdc_device *ldev;
> int ret;
>
> @@ -113,13 +97,9 @@ static int drv_load(struct drm_device *ddev)
>
> if (ddev->mode_config.num_connector) {
> ldev = ddev->dev_private;
> - fbdev = drm_fbdev_cma_init(ddev, 16,
> - ddev->mode_config.num_connector);
> - if (IS_ERR(fbdev)) {
> + ret = drm_fb_cma_fbdev_init(ddev, 16, 0);
> + if (ret)
> DRM_DEBUG("Warning: fails to create fbdev\n");
> - fbdev = NULL;
> - }
> - ldev->fbdev = fbdev;
> }
>
> platform_set_drvdata(pdev, ddev);
> @@ -132,14 +112,9 @@ static int drv_load(struct drm_device *ddev)
>
> static void drv_unload(struct drm_device *ddev)
> {
> - struct ltdc_device *ldev = ddev->dev_private;
> -
> DRM_DEBUG("%s\n", __func__);
>
> - if (ldev->fbdev) {
> - drm_fbdev_cma_fini(ldev->fbdev);
> - ldev->fbdev = NULL;
> - }
> + drm_fb_cma_fbdev_fini(ddev);
> drm_kms_helper_poll_fini(ddev);
> ltdc_unload(ddev);
> drm_mode_config_cleanup(ddev);
> diff --git a/drivers/gpu/drm/stm/ltdc.h b/drivers/gpu/drm/stm/ltdc.h
> index ae437557d715..27ac217406be 100644
> --- a/drivers/gpu/drm/stm/ltdc.h
> +++ b/drivers/gpu/drm/stm/ltdc.h
> @@ -21,7 +21,6 @@ struct ltdc_caps {
> };
>
> struct ltdc_device {
> - struct drm_fbdev_cma *fbdev;
> void __iomem *regs;
> struct clk *pixel_clk; /* lcd pixel clock */
> struct mutex err_lock; /* protecting error_status */
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2017-11-06 17:34 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-04 13:03 [PATCH 00/22] drm/cma-helper: Remove drm_fbdev_cma* functions Noralf Trønnes
2017-11-04 13:03 ` [PATCH 01/22] drm/gem-fb-helper: drm_gem_fbdev_fb_create() make funcs optional Noralf Trønnes
2017-11-06 8:54 ` Daniel Vetter
2017-11-06 12:40 ` Noralf Trønnes
2017-11-04 13:03 ` [PATCH 02/22] drm/cma-helper: Add drm_fb_cma_fbdev_init/fini() Noralf Trønnes
2017-11-06 9:04 ` Daniel Vetter
2017-11-06 12:40 ` Noralf Trønnes
2017-11-04 13:03 ` [PATCH 03/22] drm/arc: Use drm_fb_cma_fbdev_init/fini() Noralf Trønnes
2017-11-06 9:08 ` Daniel Vetter
2017-11-06 12:48 ` Noralf Trønnes
2017-11-04 13:03 ` [PATCH 04/22] drm/arm/hdlcd: " Noralf Trønnes
2017-11-05 14:27 ` Liviu Dudau
2017-11-04 13:03 ` [PATCH 05/22] drm/atmel-hlcdc: " Noralf Trønnes
2017-11-06 10:16 ` Boris Brezillon
2017-11-04 13:04 ` [PATCH 06/22] drm/hisilicon/kirin: " Noralf Trønnes
2017-11-04 13:04 ` [PATCH 07/22] drm/imx: " Noralf Trønnes
2017-11-06 9:59 ` Philipp Zabel
2017-11-04 13:04 ` [PATCH 08/22] drm/meson: " Noralf Trønnes
2017-11-04 13:04 ` [PATCH 09/22] drm/mxsfb: " Noralf Trønnes
2017-11-04 13:04 ` [PATCH 10/22] drm/pl111: " Noralf Trønnes
2017-11-06 13:18 ` Linus Walleij
2017-11-04 13:04 ` [PATCH 11/22] drm/rcar-du: " Noralf Trønnes
2017-11-04 13:04 ` [PATCH 12/22] drm/sti: " Noralf Trønnes
2017-11-08 12:21 ` Benjamin Gaignard
2017-11-08 15:21 ` Noralf Trønnes
2017-11-09 8:20 ` Daniel Vetter
2017-11-09 9:20 ` Benjamin Gaignard
2017-11-04 13:04 ` [PATCH 13/22] drm/stm: " Noralf Trønnes
2017-11-06 17:32 ` Philippe CORNU [this message]
2017-11-08 15:23 ` Noralf Trønnes
2017-11-04 13:04 ` [PATCH 14/22] drm/sun4i: " Noralf Trønnes
2017-11-06 7:51 ` Maxime Ripard
2017-11-04 13:04 ` [PATCH 15/22] drm/tilcdc: " Noralf Trønnes
2017-11-07 8:33 ` Jyri Sarha
2017-11-04 13:04 ` [PATCH 16/22] drm/tve200: " Noralf Trønnes
2017-11-06 13:19 ` Linus Walleij
2017-11-04 13:04 ` [PATCH 17/22] drm/vc4: " Noralf Trønnes
2017-11-06 16:19 ` Eric Anholt
2017-11-04 13:04 ` [PATCH 18/22] drm/zte: " Noralf Trønnes
2017-11-04 13:04 ` [PATCH 19/22] drm/arm/mali: " Noralf Trønnes
2017-11-05 14:31 ` Liviu Dudau
2017-11-04 13:04 ` [PATCH 20/22] drm/fsl-dcu: " Noralf Trønnes
2017-11-10 17:01 ` Stefan Agner
2017-11-10 17:59 ` Noralf Trønnes
2017-11-04 13:04 ` [PATCH 21/22] drm/tinydrm: Use drm_fb_cma_fbdev_init_with_funcs/fini() Noralf Trønnes
2017-11-06 18:05 ` David Lechner
2017-11-04 13:04 ` [PATCH 22/22] drm/cma-helper: Remove drm_fbdev_cma* functions Noralf Trønnes
2017-11-06 9:09 ` Daniel Vetter
2017-11-10 18:12 ` [PATCH 00/22] " Noralf Trønnes
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=45d6eb81-79b1-d34b-ec82-d104cbef0ef4@st.com \
--to=philippe.cornu@st.com \
--cc=abrodkin@synopsys.com \
--cc=alison.wang@freescale.com \
--cc=boris.brezillon@free-electrons.com \
--cc=david@lechnology.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jsarha@ti.com \
--cc=kong.kongxinwei@hisilicon.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=liviu.dudau@arm.com \
--cc=marex@denx.de \
--cc=maxime.ripard@free-electrons.com \
--cc=narmstrong@baylibre.com \
--cc=noralf@tronnes.org \
--cc=puck.chen@hisilicon.com \
--cc=shawnguo@kernel.org \
--cc=tomi.valkeinen@ti.com \
--cc=z.liuxinliang@hisilicon.com \
--cc=zourongrong@gmail.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;
as well as URLs for NNTP newsgroup(s).