From: Daniel Vetter <daniel@ffwll.ch>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: daniel.vetter@ffwll.ch, intel-gfx@lists.freedesktop.org,
Emmanuel Vadot <manu@bidouilliste.com>,
dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 00/12] drm/fb-helper: Move modesetting code to drm_client
Date: Tue, 16 Apr 2019 10:46:44 +0200 [thread overview]
Message-ID: <20190416084644.GD13337@phenom.ffwll.local> (raw)
In-Reply-To: <20190416084106.GC13337@phenom.ffwll.local>
On Tue, Apr 16, 2019 at 10:41:06AM +0200, Daniel Vetter wrote:
> On Sun, Apr 07, 2019 at 06:52:31PM +0200, Noralf Trønnes wrote:
> > This moves the modesetting code from drm_fb_helper to drm_client so it
> > can be shared by all internal clients.
> >
> > The main change this time is to attach the modeset array to
> > drm_client_dev and honour the drm_fb_helper MIT license. I've dropped
> > the display abstraction.
> >
> > Noralf.
> >
> > Cc: Emmanuel Vadot <manu@bidouilliste.com>
> >
> > Noralf Trønnes (12):
> > drm/atomic: Move __drm_atomic_helper_disable_plane/set_config()
> > drm/fb-helper: Avoid race with DRM userspace
> > drm/i915/fbdev: Move intel_fb_initial_config() to fbdev helper
> > drm/fb-helper: No need to cache rotation and sw_rotations
> > drm/fb-helper: Remove drm_fb_helper_crtc->{x,y,desired_mode}
> > drm/fb-helper: Remove drm_fb_helper_crtc
> > drm/fb-helper: Prepare to move out commit code
> > drm/fb-helper: Move out commit code
> > drm/fb-helper: Remove drm_fb_helper_connector
> > drm/fb-helper: Prepare to move out modeset config code
> > drm/fb-helper: Move out modeset config code
> > drm/client: Hack: Add bootsplash example
>
> I like.
>
> Reviewed some of the prep patches, plus some more suggestions for
> drm_client_modeset api polishing ideas.
>
> Maxime is working on some other fbdev helper features and your two patch
> series will conflict badly I think. Probably best if you coordinate and
> cross-review for final details and best coordination for merging into
> drm-misc-next.
https://marc.info/?l=linux-arm-kernel&m=155498898611173&w=2
is what I meant.
-Daniel
>
> I think for the bootsplash good option would be to add it as a todo item,
> with a link to patch of your latest proof of concept.
>
> Cheers, Daniel
>
> >
> > Documentation/gpu/todo.rst | 10 +
> > drivers/gpu/drm/Kconfig | 5 +
> > drivers/gpu/drm/Makefile | 3 +-
> > drivers/gpu/drm/drm_atomic.c | 168 ++++
> > drivers/gpu/drm/drm_atomic_helper.c | 164 ----
> > drivers/gpu/drm/drm_auth.c | 20 +
> > drivers/gpu/drm/drm_bootsplash.c | 359 ++++++++
> > drivers/gpu/drm/drm_client.c | 17 +-
> > drivers/gpu/drm/drm_client_modeset.c | 1086 +++++++++++++++++++++++
> > drivers/gpu/drm/drm_crtc_internal.h | 5 +
> > drivers/gpu/drm/drm_drv.c | 4 +
> > drivers/gpu/drm/drm_fb_helper.c | 1195 +++-----------------------
> > drivers/gpu/drm/drm_internal.h | 2 +
> > drivers/gpu/drm/i915/intel_fbdev.c | 218 -----
> > include/drm/drm_atomic_helper.h | 4 -
> > include/drm/drm_client.h | 48 ++
> > include/drm/drm_fb_helper.h | 125 +--
> > 17 files changed, 1859 insertions(+), 1574 deletions(-)
> > create mode 100644 drivers/gpu/drm/drm_bootsplash.c
> > create mode 100644 drivers/gpu/drm/drm_client_modeset.c
> >
> > --
> > 2.20.1
> >
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2019-04-16 8:46 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-07 16:52 [PATCH v2 00/12] drm/fb-helper: Move modesetting code to drm_client Noralf Trønnes
2019-04-07 16:52 ` [PATCH v2 01/12] drm/atomic: Move __drm_atomic_helper_disable_plane/set_config() Noralf Trønnes
2019-04-16 9:12 ` Maxime Ripard
2019-04-07 16:52 ` [PATCH v2 02/12] drm/fb-helper: Avoid race with DRM userspace Noralf Trønnes
2019-04-16 7:59 ` Daniel Vetter
2019-04-16 18:46 ` Noralf Trønnes
2019-04-17 13:24 ` Daniel Vetter
2019-04-17 13:26 ` Daniel Vetter
2019-04-17 14:48 ` Noralf Trønnes
2019-04-16 9:26 ` Maxime Ripard
2019-04-07 16:52 ` [PATCH v2 03/12] drm/i915/fbdev: Move intel_fb_initial_config() to fbdev helper Noralf Trønnes
2019-04-11 14:25 ` Noralf Trønnes
2019-04-23 14:17 ` Thomas Zimmermann
2019-04-23 14:58 ` Noralf Trønnes
2019-04-07 16:52 ` [PATCH v2 04/12] drm/fb-helper: No need to cache rotation and sw_rotations Noralf Trønnes
2019-04-16 9:28 ` Maxime Ripard
2019-04-07 16:52 ` [PATCH v2 05/12] drm/fb-helper: Remove drm_fb_helper_crtc->{x, y, desired_mode} Noralf Trønnes
2019-04-16 9:29 ` Maxime Ripard
2019-04-07 16:52 ` [PATCH v2 06/12] drm/fb-helper: Remove drm_fb_helper_crtc Noralf Trønnes
2019-04-16 8:34 ` Daniel Vetter
2019-04-07 16:52 ` [PATCH v2 07/12] drm/fb-helper: Prepare to move out commit code Noralf Trønnes
2019-04-07 16:52 ` [PATCH v2 08/12] drm/fb-helper: Move " Noralf Trønnes
2019-04-16 8:38 ` Daniel Vetter
2019-04-17 17:56 ` Noralf Trønnes
2019-04-18 8:30 ` Daniel Vetter
2019-04-07 16:52 ` [PATCH v2 09/12] drm/fb-helper: Remove drm_fb_helper_connector Noralf Trønnes
2019-04-16 9:42 ` Maxime Ripard
2019-04-16 14:57 ` Noralf Trønnes
2019-04-17 16:48 ` Maxime Ripard
2019-04-07 16:52 ` [PATCH v2 10/12] drm/fb-helper: Prepare to move out modeset config code Noralf Trønnes
2019-04-16 9:43 ` Maxime Ripard
2019-04-07 16:52 ` [PATCH v2 11/12] drm/fb-helper: Move " Noralf Trønnes
2019-04-16 9:43 ` Maxime Ripard
2019-04-07 16:52 ` [PATCH v2 12/12] drm/client: Hack: Add bootsplash example Noralf Trønnes
2019-04-07 17:02 ` ✗ Fi.CI.CHECKPATCH: warning for drm/fb-helper: Move modesetting code to drm_client (rev2) Patchwork
2019-04-07 17:10 ` ✗ Fi.CI.SPARSE: " Patchwork
2019-04-07 17:21 ` ✓ Fi.CI.BAT: success " Patchwork
2019-04-07 18:29 ` ✓ Fi.CI.IGT: " Patchwork
2019-04-16 8:41 ` [PATCH v2 00/12] drm/fb-helper: Move modesetting code to drm_client Daniel Vetter
2019-04-16 8:46 ` Daniel Vetter [this message]
2019-04-17 18:06 ` 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=20190416084644.GD13337@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=daniel.vetter@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=manu@bidouilliste.com \
--cc=noralf@tronnes.org \
/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