From: Martin Peres <martin.peres@linux.intel.com>
To: "Noralf Trønnes" <noralf@tronnes.org>, dri-devel@lists.freedesktop.org
Cc: maxime.ripard@bootlin.com, daniel.vetter@ffwll.ch,
intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v3 00/11] drm/fb-helper: Move modesetting code to drm_client
Date: Tue, 23 Apr 2019 14:04:07 +0300 [thread overview]
Message-ID: <f9efcef2-c64d-5a2b-163a-93f3226b76cf@linux.intel.com> (raw)
In-Reply-To: <8662d002-c462-9fc7-b164-11dd98d63aee@tronnes.org>
On 20/04/2019 20:24, Noralf Trønnes wrote:
>
>
> Den 20.04.2019 12.45, skrev Noralf Trønnes:
>> This moves the modesetting code from drm_fb_helper to drm_client so it
>> can be shared by all internal clients.
>>
>> Changes this time:
>> - Use full drm_client_init/release for the modesets (Daniel Vetter)
>> - drm_client_for_each_modeset: use lockdep_assert_held (Daniel Vetter)
>> - Hook up to Documentation/gpu/drm-client.rst (Daniel Vetter)
>>
>
> I got Fi.CI.IGT failures on this one:
>
> * igt@kms_fbcon_fbt@psr:
> - shard-skl: PASS -> FAIL
>
> * igt@kms_fbcon_fbt@psr-suspend:
> - shard-iclb: PASS -> FAIL +1
> - shard-skl: NOTRUN -> FAIL
>
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12850/
> https://patchwork.freedesktop.org/series/58597/
>
> The previous version of this series reported success:
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12720/
> But AFAICT those fbcon tests didn't succeed when I look at the details.
>
> I'd appreciate if someone with Intel CI knowledge could have a look at this.
The issue is real, but I honestly can't tell if this is due to your
patches or not. There was a regression last week and we reworked some
filters that may not apply anymore to the base that was selected to test
your patches.
I queued a re-run! We should have the results in the next 6-12 hours.
Sorry for the delay!
Martin
>
> Noralf.
>
>> Noralf.
>>
>> Noralf Trønnes (11):
>> drm/atomic: Move __drm_atomic_helper_disable_plane/set_config()
>> drm/fb-helper: Avoid race with DRM userspace
>> 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
>>
>> Documentation/gpu/drm-client.rst | 3 +
>> 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 | 362 +++++++
>> drivers/gpu/drm/drm_client.c | 17 +-
>> drivers/gpu/drm/drm_client_modeset.c | 1085 ++++++++++++++++++++
>> drivers/gpu/drm/drm_crtc_internal.h | 5 +
>> drivers/gpu/drm/drm_drv.c | 4 +
>> drivers/gpu/drm/drm_fb_helper.c | 1381 +++-----------------------
>> drivers/gpu/drm/drm_internal.h | 2 +
>> include/drm/drm_atomic_helper.h | 4 -
>> include/drm/drm_client.h | 49 +
>> include/drm/drm_fb_helper.h | 102 +-
>> 17 files changed, 1864 insertions(+), 1520 deletions(-)
>> create mode 100644 drivers/gpu/drm/drm_bootsplash.c
>> create mode 100644 drivers/gpu/drm/drm_client_modeset.c
>>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2019-04-23 11:04 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-20 10:45 [PATCH v3 00/11] drm/fb-helper: Move modesetting code to drm_client Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 01/11] drm/atomic: Move __drm_atomic_helper_disable_plane/set_config() Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 02/11] drm/fb-helper: Avoid race with DRM userspace Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 03/11] drm/fb-helper: No need to cache rotation and sw_rotations Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 04/11] drm/fb-helper: Remove drm_fb_helper_crtc->{x, y, desired_mode} Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 05/11] drm/fb-helper: Remove drm_fb_helper_crtc Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 06/11] drm/fb-helper: Prepare to move out commit code Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 07/11] drm/fb-helper: Move " Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 08/11] drm/fb-helper: Remove drm_fb_helper_connector Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 09/11] drm/fb-helper: Prepare to move out modeset config code Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 10/11] drm/fb-helper: Move " Noralf Trønnes
2019-04-20 10:45 ` [PATCH v3 11/11] drm/client: Hack: Add bootsplash example Noralf Trønnes
2019-04-20 11:01 ` ✗ Fi.CI.CHECKPATCH: warning for drm/fb-helper: Move modesetting code to drm_client (rev3) Patchwork
2019-04-20 11:09 ` ✗ Fi.CI.SPARSE: " Patchwork
2019-04-20 11:25 ` ✓ Fi.CI.BAT: success " Patchwork
2019-04-20 12:31 ` ✗ Fi.CI.IGT: failure " Patchwork
2019-04-20 17:24 ` [PATCH v3 00/11] drm/fb-helper: Move modesetting code to drm_client Noralf Trønnes
2019-04-23 11:04 ` Martin Peres [this message]
2019-04-24 17:18 ` Noralf Trønnes
2019-04-23 15:32 ` ✗ Fi.CI.CHECKPATCH: warning for drm/fb-helper: Move modesetting code to drm_client (rev4) Patchwork
2019-04-23 15:40 ` ✗ Fi.CI.SPARSE: " Patchwork
2019-04-23 16:01 ` ✓ Fi.CI.BAT: success " Patchwork
2019-04-23 20:48 ` ✗ Fi.CI.IGT: failure " Patchwork
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=f9efcef2-c64d-5a2b-163a-93f3226b76cf@linux.intel.com \
--to=martin.peres@linux.intel.com \
--cc=daniel.vetter@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=maxime.ripard@bootlin.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