linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console
@ 2017-07-10  6:55 Jonathan Liu
  2017-07-10 14:22 ` [linux-sunxi] " Olliver Schinagl
  2017-07-11 19:21 ` Maxime Ripard
  0 siblings, 2 replies; 5+ messages in thread
From: Jonathan Liu @ 2017-07-10  6:55 UTC (permalink / raw)
  To: linux-arm-kernel

The drm_driver lastclose callback is called when the last userspace
DRM client has closed. Call drm_fbdev_cma_restore_mode to restore
the fbdev console otherwise the fbdev console will stop working.

Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
Cc: stable at vger.kernel.org
Signed-off-by: Jonathan Liu <net147@gmail.com>
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
---
Changes for v3:
 - Add 'Fixes:' tag
 - Add CC to stable
 - Add 'Reviewed-by: Chen-Yu Tsai <wens@csie.org>'

Changes for v2:
 - Rename sun4i_drm_lastclose to sun4i_drv_lastclose

 drivers/gpu/drm/sun4i/sun4i_drv.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/sun4i/sun4i_drv.c b/drivers/gpu/drm/sun4i/sun4i_drv.c
index abc7d8fe06b4..a45a627283a1 100644
--- a/drivers/gpu/drm/sun4i/sun4i_drv.c
+++ b/drivers/gpu/drm/sun4i/sun4i_drv.c
@@ -25,12 +25,20 @@
 #include "sun4i_framebuffer.h"
 #include "sun4i_tcon.h"
 
+static void sun4i_drv_lastclose(struct drm_device *dev)
+{
+	struct sun4i_drv *drv = dev->dev_private;
+
+	drm_fbdev_cma_restore_mode(drv->fbdev);
+}
+
 DEFINE_DRM_GEM_CMA_FOPS(sun4i_drv_fops);
 
 static struct drm_driver sun4i_drv_driver = {
 	.driver_features	= DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_ATOMIC,
 
 	/* Generic Operations */
+	.lastclose		= sun4i_drv_lastclose,
 	.fops			= &sun4i_drv_fops,
 	.name			= "sun4i-drm",
 	.desc			= "Allwinner sun4i Display Engine",
-- 
2.13.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [linux-sunxi] [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console
  2017-07-10  6:55 [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Jonathan Liu
@ 2017-07-10 14:22 ` Olliver Schinagl
  2017-07-11 19:21 ` Maxime Ripard
  1 sibling, 0 replies; 5+ messages in thread
From: Olliver Schinagl @ 2017-07-10 14:22 UTC (permalink / raw)
  To: linux-arm-kernel

Hey Jonathan,

since I reported this to you on IRC, it's only fair that you can have my:

Tested-by: Olliver Schinagl <oliver@schinagl.nl>

For those interessted, I've tested it on an Olimex OLinuXino Lime2 with 
their 4.3 LCD.

Olliver

On 10-07-17 08:55, Jonathan Liu wrote:
> The drm_driver lastclose callback is called when the last userspace
> DRM client has closed. Call drm_fbdev_cma_restore_mode to restore
> the fbdev console otherwise the fbdev console will stop working.
>
> Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
> Cc: stable at vger.kernel.org
> Signed-off-by: Jonathan Liu <net147@gmail.com>
> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
> ---
> Changes for v3:
>  - Add 'Fixes:' tag
>  - Add CC to stable
>  - Add 'Reviewed-by: Chen-Yu Tsai <wens@csie.org>'
>
> Changes for v2:
>  - Rename sun4i_drm_lastclose to sun4i_drv_lastclose
>
>  drivers/gpu/drm/sun4i/sun4i_drv.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/drivers/gpu/drm/sun4i/sun4i_drv.c b/drivers/gpu/drm/sun4i/sun4i_drv.c
> index abc7d8fe06b4..a45a627283a1 100644
> --- a/drivers/gpu/drm/sun4i/sun4i_drv.c
> +++ b/drivers/gpu/drm/sun4i/sun4i_drv.c
> @@ -25,12 +25,20 @@
>  #include "sun4i_framebuffer.h"
>  #include "sun4i_tcon.h"
>
> +static void sun4i_drv_lastclose(struct drm_device *dev)
> +{
> +	struct sun4i_drv *drv = dev->dev_private;
> +
> +	drm_fbdev_cma_restore_mode(drv->fbdev);
> +}
> +
>  DEFINE_DRM_GEM_CMA_FOPS(sun4i_drv_fops);
>
>  static struct drm_driver sun4i_drv_driver = {
>  	.driver_features	= DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_ATOMIC,
>
>  	/* Generic Operations */
> +	.lastclose		= sun4i_drv_lastclose,
>  	.fops			= &sun4i_drv_fops,
>  	.name			= "sun4i-drm",
>  	.desc			= "Allwinner sun4i Display Engine",
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console
  2017-07-10  6:55 [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Jonathan Liu
  2017-07-10 14:22 ` [linux-sunxi] " Olliver Schinagl
@ 2017-07-11 19:21 ` Maxime Ripard
  2017-07-12  2:40   ` Chen-Yu Tsai
  1 sibling, 1 reply; 5+ messages in thread
From: Maxime Ripard @ 2017-07-11 19:21 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jul 10, 2017 at 04:55:04PM +1000, Jonathan Liu wrote:
> The drm_driver lastclose callback is called when the last userspace
> DRM client has closed. Call drm_fbdev_cma_restore_mode to restore
> the fbdev console otherwise the fbdev console will stop working.
> 
> Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
> Cc: stable at vger.kernel.org
> Signed-off-by: Jonathan Liu <net147@gmail.com>
> Reviewed-by: Chen-Yu Tsai <wens@csie.org>

Queued for 4.14, thanks!
Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20170711/2138bc72/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console
  2017-07-11 19:21 ` Maxime Ripard
@ 2017-07-12  2:40   ` Chen-Yu Tsai
  2017-07-17  6:22     ` Maxime Ripard
  0 siblings, 1 reply; 5+ messages in thread
From: Chen-Yu Tsai @ 2017-07-12  2:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jul 12, 2017 at 3:21 AM, Maxime Ripard
<maxime.ripard@free-electrons.com> wrote:
> On Mon, Jul 10, 2017 at 04:55:04PM +1000, Jonathan Liu wrote:
>> The drm_driver lastclose callback is called when the last userspace
>> DRM client has closed. Call drm_fbdev_cma_restore_mode to restore
>> the fbdev console otherwise the fbdev console will stop working.
>>
>> Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
>> Cc: stable at vger.kernel.org
>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
>
> Queued for 4.14, thanks!

May we have this sooner? Like 4.13? :)

ChenYu

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console
  2017-07-12  2:40   ` Chen-Yu Tsai
@ 2017-07-17  6:22     ` Maxime Ripard
  0 siblings, 0 replies; 5+ messages in thread
From: Maxime Ripard @ 2017-07-17  6:22 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jul 12, 2017 at 10:40:16AM +0800, Chen-Yu Tsai wrote:
> On Wed, Jul 12, 2017 at 3:21 AM, Maxime Ripard
> <maxime.ripard@free-electrons.com> wrote:
> > On Mon, Jul 10, 2017 at 04:55:04PM +1000, Jonathan Liu wrote:
> >> The drm_driver lastclose callback is called when the last userspace
> >> DRM client has closed. Call drm_fbdev_cma_restore_mode to restore
> >> the fbdev console otherwise the fbdev console will stop working.
> >>
> >> Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
> >> Cc: stable at vger.kernel.org
> >> Signed-off-by: Jonathan Liu <net147@gmail.com>
> >> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
> >
> > Queued for 4.14, thanks!
> 
> May we have this sooner? Like 4.13? :)

Yes, of course :)

I queued it for 4.13.

Thanks!
Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20170717/22c3532c/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-07-17  6:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-10  6:55 [PATCH v3] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Jonathan Liu
2017-07-10 14:22 ` [linux-sunxi] " Olliver Schinagl
2017-07-11 19:21 ` Maxime Ripard
2017-07-12  2:40   ` Chen-Yu Tsai
2017-07-17  6:22     ` Maxime Ripard

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).