Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1683703 > unrolled thread
| Started by | Jonathan Liu <net147@gmail.com> |
|---|---|
| First post | 2017-07-09 10:00 +0200 |
| Last post | 2017-07-10 20:10 +0200 |
| Articles | 5 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Jonathan Liu <net147@gmail.com> - 2017-07-09 10:00 +0200
Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Chen-Yu Tsai <wens@csie.org> - 2017-07-09 17:20 +0200
Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-07-10 08:50 +0200
Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Jonathan Liu <net147@gmail.com> - 2017-07-10 09:00 +0200
Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console Daniel Vetter <daniel@ffwll.ch> - 2017-07-10 20:10 +0200
| From | Jonathan Liu <net147@gmail.com> |
|---|---|
| Date | 2017-07-09 10:00 +0200 |
| Subject | [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console |
| Message-ID | <u1fih-4VP-3@gated-at.bofh.it> |
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.
Signed-off-by: Jonathan Liu <net147@gmail.com>
---
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
[toc] | [next] | [standalone]
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Date | 2017-07-09 17:20 +0200 |
| Subject | Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console |
| Message-ID | <u1ma5-We-17@gated-at.bofh.it> |
| In reply to | #1683703 |
On Sun, Jul 9, 2017 at 3:59 PM, Jonathan Liu <net147@gmail.com> 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.
>
> Signed-off-by: Jonathan Liu <net147@gmail.com>
This should have
Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
Otherwise,
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
[toc] | [prev] | [next] | [standalone]
| From | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| Date | 2017-07-10 08:50 +0200 |
| Subject | Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console |
| Message-ID | <u1AG5-1v9-9@gated-at.bofh.it> |
| In reply to | #1683760 |
[Multipart message — attachments visible in raw view] — view raw
On Sun, Jul 09, 2017 at 11:11:07PM +0800, Chen-Yu Tsai wrote:
> On Sun, Jul 9, 2017 at 3:59 PM, Jonathan Liu <net147@gmail.com> 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.
> >
> > Signed-off-by: Jonathan Liu <net147@gmail.com>
>
> This should have
>
> Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
>
> Otherwise,
>
> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
And it should be sent to stable too.
Can you resend it?
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Jonathan Liu <net147@gmail.com> |
|---|---|
| Date | 2017-07-10 09:00 +0200 |
| Subject | Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console |
| Message-ID | <u1APM-1zU-15@gated-at.bofh.it> |
| In reply to | #1683989 |
Hi Maxime,
On 10 July 2017 at 16:44, Maxime Ripard
<maxime.ripard@free-electrons.com> wrote:
> On Sun, Jul 09, 2017 at 11:11:07PM +0800, Chen-Yu Tsai wrote:
>> On Sun, Jul 9, 2017 at 3:59 PM, Jonathan Liu <net147@gmail.com> 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.
>> >
>> > Signed-off-by: Jonathan Liu <net147@gmail.com>
>>
>> This should have
>>
>> Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
>>
>> Otherwise,
>>
>> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
>
> And it should be sent to stable too.
>
> Can you resend it?
Will do.
>
> Thanks!
> Maxime
>
>
> --
> Maxime Ripard, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
Regards,
Jonathan
[toc] | [prev] | [next] | [standalone]
| From | Daniel Vetter <daniel@ffwll.ch> |
|---|---|
| Date | 2017-07-10 20:10 +0200 |
| Subject | Re: [PATCH v2] drm/sun4i: Implement drm_driver lastclose to restore fbdev console |
| Message-ID | <u1Lia-8qN-17@gated-at.bofh.it> |
| In reply to | #1683989 |
On Mon, Jul 10, 2017 at 8:44 AM, Maxime Ripard
<maxime.ripard@free-electrons.com> wrote:
> On Sun, Jul 09, 2017 at 11:11:07PM +0800, Chen-Yu Tsai wrote:
>> On Sun, Jul 9, 2017 at 3:59 PM, Jonathan Liu <net147@gmail.com> 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.
>> >
>> > Signed-off-by: Jonathan Liu <net147@gmail.com>
>>
>> This should have
>>
>> Fixes: 9026e0d122ac ("drm: Add Allwinner A10 Display Engine support")
>>
>> Otherwise,
>>
>> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
>
> And it should be sent to stable too.
>
> Can you resend it?
Fyi but patchwork auto-adds these tags. Feels a bit like overkill
asking for a resend for something you can trivially add yourself ...
-Daniel
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web