From: Benjamin Gaignard <benjamin.gaignard@linaro.org>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: narmstrong@baylibre.com, liviu.dudau@arm.com,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
marex@denx.de, boris.brezillon@free-electrons.com,
abrodkin@synopsys.com, z.liuxinliang@hisilicon.com,
"kongxinwei (A)" <kong.kongxinwei@hisilicon.com>,
Tomi Valkeinen <tomi.valkeinen@ti.com>,
david@lechnology.com, Chen Feng <puck.chen@hisilicon.com>,
Jyri Sarha <jsarha@ti.com>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
Vincent Abriou <vincent.abriou@st.com>,
Alison Wang <alison.wang@freescale.com>,
Philippe Cornu <philippe.cornu@st.com>,
Yannick Fertre <yannick.fertre@st.com>,
Rongrong Zou <zourongrong@gmail.com>,
Maxime Ripard <maxime.ripard@free-electrons.com>,
Shawn Guo <shawnguo@kernel.org>
Subject: Re: [PATCH 12/22] drm/sti: Use drm_fb_cma_fbdev_init/fini()
Date: Wed, 8 Nov 2017 13:21:50 +0100 [thread overview]
Message-ID: <CA+M3ks6QKZZKBz0x+PNy2aBGCvOs_9eod8My49f5tn8f+uyBMA@mail.gmail.com> (raw)
In-Reply-To: <20171104130416.12423-13-noralf@tronnes.org>
2017-11-04 14:04 GMT+01:00 Noralf Trønnes <noralf@tronnes.org>:
> 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: Benjamin Gaignard <benjamin.gaignard@linaro.org>
> Cc: Vincent Abriou <vincent.abriou@st.com>
> Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
> ---
> drivers/gpu/drm/sti/sti_drv.c | 25 +++++--------------------
> drivers/gpu/drm/sti/sti_drv.h | 1 -
> 2 files changed, 5 insertions(+), 21 deletions(-)
>
> diff --git a/drivers/gpu/drm/sti/sti_drv.c b/drivers/gpu/drm/sti/sti_drv.c
> index 9e9343101738..d61efef30a82 100644
> --- a/drivers/gpu/drm/sti/sti_drv.c
> +++ b/drivers/gpu/drm/sti/sti_drv.c
> @@ -17,6 +17,7 @@
> #include <drm/drm_crtc_helper.h>
> #include <drm/drm_gem_cma_helper.h>
> #include <drm/drm_gem_framebuffer_helper.h>
> +#include <drm/drm_fb_helper.h>
> #include <drm/drm_fb_cma_helper.h>
> #include <drm/drm_of.h>
>
> @@ -138,16 +139,9 @@ static int sti_atomic_check(struct drm_device *dev,
> return ret;
> }
>
> -static void sti_output_poll_changed(struct drm_device *ddev)
> -{
> - struct sti_private *private = ddev->dev_private;
> -
> - drm_fbdev_cma_hotplug_event(private->fbdev);
> -}
> -
> static const struct drm_mode_config_funcs sti_mode_config_funcs = {
> .fb_create = drm_gem_fb_create,
> - .output_poll_changed = sti_output_poll_changed,
> + .output_poll_changed = drm_fb_helper_output_poll_changed,
> .atomic_check = sti_atomic_check,
> .atomic_commit = drm_atomic_helper_commit,
> };
> @@ -230,11 +224,7 @@ static void sti_cleanup(struct drm_device *ddev)
> {
> struct sti_private *private = ddev->dev_private;
>
> - if (private->fbdev) {
> - drm_fbdev_cma_fini(private->fbdev);
> - private->fbdev = NULL;
> - }
> -
> + drm_fb_cma_fbdev_fini(ddev);
> drm_kms_helper_poll_fini(ddev);
> component_unbind_all(ddev->dev, ddev);
> kfree(private);
> @@ -245,7 +235,6 @@ static int sti_bind(struct device *dev)
> {
> struct drm_device *ddev;
> struct sti_private *private;
> - struct drm_fbdev_cma *fbdev;
> int ret;
>
> ddev = drm_dev_alloc(&sti_driver, dev);
> @@ -268,13 +257,9 @@ static int sti_bind(struct device *dev)
>
> private = ddev->dev_private;
> if (ddev->mode_config.num_connector) {
> - fbdev = drm_fbdev_cma_init(ddev, 32,
> - ddev->mode_config.num_connector);
> - if (IS_ERR(fbdev)) {
> + ret = drm_fb_cma_fbdev_init(ddev, 32, 0);
> + if (ret)
> DRM_DEBUG_DRIVER("Warning: fails to create fbdev\n");
> - fbdev = NULL;
> - }
> - private->fbdev = fbdev;
> }
Like for stm driver I think that drm_kms_helper_poll_init() call
should be move after
this block of code.
struct sti_private *private could also be remove of the function.
When testing your patches I have a kernel panic in drm_fbdev_cma_create()
because fbdev_cma->fb_funcs is NULL so using/testing fbdev_cma->fb_funcs->dirty
make kernel crash.
Just adding a test on fbdev_cma->fb_funcs value fix the problem but I
wonder why I'm
the only to report this issue ?
With all these fix I have a fonctionnal frame buffer.
Benjamin
>
> return 0;
> diff --git a/drivers/gpu/drm/sti/sti_drv.h b/drivers/gpu/drm/sti/sti_drv.h
> index 6502ed2d3351..16c5c9110cb0 100644
> --- a/drivers/gpu/drm/sti/sti_drv.h
> +++ b/drivers/gpu/drm/sti/sti_drv.h
> @@ -24,7 +24,6 @@ struct sti_private {
> struct sti_compositor *compo;
> struct drm_property *plane_zorder_property;
> struct drm_device *drm_dev;
> - struct drm_fbdev_cma *fbdev;
> };
>
> extern struct platform_driver sti_tvout_driver;
> --
> 2.14.2
>
--
Benjamin Gaignard
Graphic Study Group
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
_______________________________________________
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-08 12:21 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 [this message]
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
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=CA+M3ks6QKZZKBz0x+PNy2aBGCvOs_9eod8My49f5tn8f+uyBMA@mail.gmail.com \
--to=benjamin.gaignard@linaro.org \
--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=philippe.cornu@st.com \
--cc=puck.chen@hisilicon.com \
--cc=shawnguo@kernel.org \
--cc=tomi.valkeinen@ti.com \
--cc=vincent.abriou@st.com \
--cc=yannick.fertre@st.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).