All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Noralf Trønnes" <noralf@tronnes.org>
To: dri-devel@lists.freedesktop.org
Cc: narmstrong@baylibre.com, liviu.dudau@arm.com,
	laurent.pinchart@ideasonboard.com, marex@denx.de,
	boris.brezillon@free-electrons.com, abrodkin@synopsys.com,
	z.liuxinliang@hisilicon.com, kong.kongxinwei@hisilicon.com,
	tomi.valkeinen@ti.com, david@lechnology.com,
	puck.chen@hisilicon.com, jsarha@ti.com, vincent.abriou@st.com,
	alison.wang@freescale.com, philippe.cornu@st.com,
	yannick.fertre@st.com, zourongrong@gmail.com,
	maxime.ripard@free-electrons.com, shawnguo@kernel.org
Subject: [PATCH v2 10/22] drm/pl111: Use drm_fb_cma_fbdev_init/fini()
Date: Wed, 15 Nov 2017 15:19:49 +0100	[thread overview]
Message-ID: <20171115142001.45358-11-noralf@tronnes.org> (raw)
In-Reply-To: <20171115142001.45358-1-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: Eric Anholt <eric@anholt.net>
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpu/drm/pl111/pl111_drm.h |  1 -
 drivers/gpu/drm/pl111/pl111_drv.c | 16 ++++------------
 2 files changed, 4 insertions(+), 13 deletions(-)

diff --git a/drivers/gpu/drm/pl111/pl111_drm.h b/drivers/gpu/drm/pl111/pl111_drm.h
index 440f53ebee8c..07fa2cdb364a 100644
--- a/drivers/gpu/drm/pl111/pl111_drm.h
+++ b/drivers/gpu/drm/pl111/pl111_drm.h
@@ -53,7 +53,6 @@ struct pl111_drm_dev_private {
 	struct drm_panel *panel;
 	struct drm_bridge *bridge;
 	struct drm_simple_display_pipe pipe;
-	struct drm_fbdev_cma *fbdev;
 
 	void *regs;
 	u32 ienb;
diff --git a/drivers/gpu/drm/pl111/pl111_drv.c b/drivers/gpu/drm/pl111/pl111_drv.c
index 201d57d5cb54..acb738c69873 100644
--- a/drivers/gpu/drm/pl111/pl111_drv.c
+++ b/drivers/gpu/drm/pl111/pl111_drv.c
@@ -64,6 +64,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>
 #include <drm/drm_bridge.h>
@@ -137,8 +138,7 @@ static int pl111_modeset_init(struct drm_device *dev)
 
 	drm_mode_config_reset(dev);
 
-	priv->fbdev = drm_fbdev_cma_init(dev, 32,
-					 dev->mode_config.num_connector);
+	drm_fb_cma_fbdev_init(dev, 32, 0);
 
 	drm_kms_helper_poll_init(dev);
 
@@ -155,17 +155,10 @@ static int pl111_modeset_init(struct drm_device *dev)
 
 DEFINE_DRM_GEM_CMA_FOPS(drm_fops);
 
-static void pl111_lastclose(struct drm_device *dev)
-{
-	struct pl111_drm_dev_private *priv = dev->dev_private;
-
-	drm_fbdev_cma_restore_mode(priv->fbdev);
-}
-
 static struct drm_driver pl111_drm_driver = {
 	.driver_features =
 		DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME | DRIVER_ATOMIC,
-	.lastclose = pl111_lastclose,
+	.lastclose = drm_fb_helper_lastclose,
 	.ioctls = NULL,
 	.fops = &drm_fops,
 	.name = "pl111",
@@ -281,8 +274,7 @@ static int pl111_amba_remove(struct amba_device *amba_dev)
 	struct pl111_drm_dev_private *priv = drm->dev_private;
 
 	drm_dev_unregister(drm);
-	if (priv->fbdev)
-		drm_fbdev_cma_fini(priv->fbdev);
+	drm_fb_cma_fbdev_fini(drm);
 	if (priv->panel)
 		drm_panel_bridge_remove(priv->bridge);
 	drm_mode_config_cleanup(drm);
-- 
2.14.2

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  parent reply	other threads:[~2017-11-15 14:25 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-15 14:19 [PATCH v2 00/22] drm/cma-helper: Remove drm_fbdev_cma* functions Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 01/22] drm/gem-fb-helper: drm_gem_fbdev_fb_create() make funcs optional Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 02/22] drm/cma-helper: Add drm_fb_cma_fbdev_init/fini() Noralf Trønnes
2017-11-30 17:38   ` Noralf Trønnes
2017-12-07 13:09     ` Noralf Trønnes
2017-12-07 14:55       ` Daniel Vetter
2017-11-15 14:19 ` [PATCH v2 03/22] drm/arc: Use drm_fb_cma_fbdev_init/fini() Noralf Trønnes
2017-11-21 16:49   ` Alexey Brodkin
2018-09-27  8:49   ` Alexey Brodkin
2018-09-27 12:33     ` Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 04/22] drm/arm/hdlcd: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 05/22] drm/atmel-hlcdc: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 06/22] drm/hisilicon/kirin: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 07/22] drm/imx: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 08/22] drm/meson: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 09/22] drm/mxsfb: " Noralf Trønnes
2017-11-15 14:19 ` Noralf Trønnes [this message]
2017-11-15 14:19 ` [PATCH v2 11/22] drm/rcar-du: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 12/22] drm/sti: " Noralf Trønnes
2017-11-15 15:01   ` Benjamin Gaignard
2017-11-15 14:19 ` [PATCH v2 13/22] drm/stm: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 14/22] drm/sun4i: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 15/22] drm/tilcdc: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 16/22] drm/tve200: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 17/22] drm/vc4: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 18/22] drm/zte: " Noralf Trønnes
2017-11-17 13:46   ` Shawn Guo
2017-11-15 14:19 ` [PATCH v2 19/22] drm/arm/mali: " Noralf Trønnes
2017-11-15 14:19 ` [PATCH v2 20/22] drm/fsl-dcu: " Noralf Trønnes
2017-11-15 14:20 ` [PATCH v2 21/22] drm/tinydrm: Use drm_fb_cma_fbdev_init_with_funcs/fini() Noralf Trønnes
2017-11-15 14:20 ` [PATCH v2 22/22] drm/cma-helper: Remove drm_fbdev_cma* functions Noralf Trønnes
2017-11-16  8:14 ` [PATCH v2 00/22] " Shawn Guo
2017-11-16 20:11   ` Noralf Trønnes
2017-11-17  9:10     ` Alexey Brodkin
2017-11-17 11:12       ` Noralf Trønnes
2017-11-20 23:52       ` Noralf Trønnes
2017-11-21 16:47         ` Alexey Brodkin
2017-12-08 13:59 ` 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=20171115142001.45358-11-noralf@tronnes.org \
    --to=noralf@tronnes.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=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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.