From: Vignesh Raman <vignesh.raman@collabora.com>
To: dri-devel@lists.freedesktop.org
Cc: daniels@collabora.com, helen.koike@collabora.com,
airlied@gmail.com, daniel@ffwll.ch,
guilherme.gallo@collabora.com, sergi.blanch.torne@collabora.com,
deborah.brouwer@collabora.com, robdclark@gmail.com,
linux-mediatek@lists.infradead.org,
linux-rockchip@lists.infradead.org,
linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: [PATCH v7 0/5] drm/ci: Add support for GPU and display testing
Date: Fri, 12 Jul 2024 14:45:44 +0530 [thread overview]
Message-ID: <20240712091549.56635-1-vignesh.raman@collabora.com> (raw)
Some ARM SOCs have a separate display controller and GPU, each with
different drivers. For mediatek mt8173, the GPU driver is powervr,
and the display driver is mediatek. In the case of mediatek mt8183,
the GPU driver is panfrost, and the display driver is mediatek.
With rockchip rk3288/rk3399, the GPU driver is panfrost, while the
display driver is rockchip. For amlogic meson G12B (A311D) SOC, the
GPU driver is panfrost, and the display driver is meson.
IGT tests run various tests with different xfails and can test both
GPU devices and KMS/display devices. Currently, in drm-ci for MediaTek,
Rockchip, and Amlogic Meson platforms, only the GPU driver is tested.
This leads to incomplete coverage since the display is never tested on
these platforms. This commit series adds support in drm-ci to run tests
for both GPU and display drivers for MediaTek mt8173/mt8183, Rockchip
rk3288/rk3399, and Amlogic Meson G12B (A311D) platforms.
Update the expectations file and skip driver-specific tests.
Working pipeline link,
https://gitlab.freedesktop.org/vigneshraman/linux/-/pipelines/1220158
Flaky test report will be sent to maintainers after this patch series
is reviewed.
Vignesh Raman (5):
drm/ci: arm64.config: Enable CONFIG_DRM_ANALOGIX_ANX7625
drm/ci: mediatek: add tests for mediatek display driver
drm/ci: mediatek: add tests for powervr gpu driver
drm/ci: meson: add tests for meson display driver
drm/ci: rockchip: add tests for rockchip display driver
MAINTAINERS | 2 +
drivers/gpu/drm/ci/arm64.config | 1 +
drivers/gpu/drm/ci/gitlab-ci.yml | 3 +-
drivers/gpu/drm/ci/igt_runner.sh | 10 --
drivers/gpu/drm/ci/test.yml | 123 ++++++++++++++----
.../drm/ci/xfails/mediatek-mt8183-fails.txt | 27 +++-
.../drm/ci/xfails/mediatek-mt8183-flakes.txt | 7 +
.../drm/ci/xfails/mediatek-mt8183-skips.txt | 4 +-
.../gpu/drm/ci/xfails/meson-g12b-fails.txt | 18 ++-
.../gpu/drm/ci/xfails/meson-g12b-skips.txt | 4 +-
.../gpu/drm/ci/xfails/panfrost-g12b-fails.txt | 8 ++
.../gpu/drm/ci/xfails/panfrost-g12b-skips.txt | 18 +++
.../drm/ci/xfails/panfrost-mt8183-fails.txt | 11 ++
.../drm/ci/xfails/panfrost-mt8183-skips.txt | 18 +++
.../drm/ci/xfails/panfrost-rk3288-fails.txt | 8 ++
.../drm/ci/xfails/panfrost-rk3288-skips.txt | 71 ++++++++++
.../drm/ci/xfails/panfrost-rk3399-fails.txt | 8 ++
.../drm/ci/xfails/panfrost-rk3399-flakes.txt | 6 +
.../drm/ci/xfails/panfrost-rk3399-skips.txt | 24 ++++
.../drm/ci/xfails/rockchip-rk3288-fails.txt | 21 ++-
.../drm/ci/xfails/rockchip-rk3288-flakes.txt | 6 +
.../drm/ci/xfails/rockchip-rk3288-skips.txt | 54 +-------
.../drm/ci/xfails/rockchip-rk3399-fails.txt | 90 ++++++++++++-
.../drm/ci/xfails/rockchip-rk3399-flakes.txt | 13 +-
.../drm/ci/xfails/rockchip-rk3399-skips.txt | 7 +-
25 files changed, 435 insertions(+), 127 deletions(-)
create mode 100644 drivers/gpu/drm/ci/xfails/mediatek-mt8183-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-g12b-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-g12b-skips.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-mt8183-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-mt8183-skips.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-rk3288-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-rk3288-skips.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-rk3399-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-rk3399-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/panfrost-rk3399-skips.txt
create mode 100644 drivers/gpu/drm/ci/xfails/rockchip-rk3288-flakes.txt
--
2.40.1
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next reply other threads:[~2024-07-12 9:17 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-12 9:15 Vignesh Raman [this message]
2024-07-12 9:15 ` [PATCH v7 1/5] drm/ci: arm64.config: Enable CONFIG_DRM_ANALOGIX_ANX7625 Vignesh Raman
2024-07-12 9:15 ` [PATCH v7 2/5] drm/ci: mediatek: add tests for mediatek display driver Vignesh Raman
2024-07-24 1:47 ` Helen Koike
2024-07-12 9:15 ` [PATCH v7 3/5] drm/ci: mediatek: add tests for powervr gpu driver Vignesh Raman
2024-07-24 1:47 ` Helen Koike
2024-07-12 9:15 ` [PATCH v7 4/5] drm/ci: meson: add tests for meson display driver Vignesh Raman
2024-07-12 10:14 ` neil.armstrong
2024-07-24 1:47 ` Helen Koike
2024-07-12 9:15 ` [PATCH v7 5/5] drm/ci: rockchip: add tests for rockchip " Vignesh Raman
2024-07-24 1:47 ` Helen Koike
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=20240712091549.56635-1-vignesh.raman@collabora.com \
--to=vignesh.raman@collabora.com \
--cc=airlied@gmail.com \
--cc=daniel@ffwll.ch \
--cc=daniels@collabora.com \
--cc=deborah.brouwer@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=guilherme.gallo@collabora.com \
--cc=helen.koike@collabora.com \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=robdclark@gmail.com \
--cc=sergi.blanch.torne@collabora.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®