From: Vignesh Raman <vignesh.raman@collabora.com>
To: helen.koike@collabora.com, airlied@gmail.com, daniel@ffwll.ch,
daniels@collabora.com
Cc: david.heidelberg@collabora.com, guilherme.gallo@collabora.com,
sergi.blanch.torne@collabora.com, emma@anholt.net,
robdclark@gmail.com, dri-devel@lists.freedesktop.org,
linux-mediatek@lists.infradead.org,
linux-rockchip@lists.infradead.org,
linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: [PATCH v1 0/8] drm/ci: Add support for GPU and display testing
Date: Wed, 20 Dec 2023 17:41:02 +0530 [thread overview]
Message-ID: <20231220121110.1441160-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, 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, Rockchip, and Amlogic
Meson platforms.
This series depends on,
https://lore.kernel.org/dri-devel/e747581b-d5e0-4622-827b-48fb51fa9711@collabora.com/T/#t
Vignesh Raman (8):
drm/ci: arm64.config: Enable CONFIG_DRM_ANALOGIX_ANX7625
drm/ci: mediatek: Test both GPU and display drivers
drm/ci: rockchip: Test both GPU and display drivers
drm/ci: meson: Test both GPU and display drivers
drm/ci: Do not set IGT_FORCE_DRIVER based on driver name
MAINTAINERS: drm/ci: xfails: add entry for panfrost
drm/ci: Rename xfails file
drm/ci: Update xfails
MAINTAINERS | 1 +
drivers/gpu/drm/ci/arm64.config | 1 +
drivers/gpu/drm/ci/igt_runner.sh | 10 --
drivers/gpu/drm/ci/test.yml | 107 ++++++++++++++----
....txt => mediatek-mt8173-display-fails.txt} | 0
.../xfails/mediatek-mt8173-display-flakes.txt | 13 +++
.../xfails/mediatek-mt8183-display-fails.txt | 7 ++
.../xfails/mediatek-mt8183-display-flakes.txt | 8 ++
.../ci/xfails/meson-g12b-display-fails.txt | 13 +++
...-fails.txt => panfrost-g12b-gpu-fails.txt} | 0
...ails.txt => panfrost-mt8183-gpu-fails.txt} | 0
...ails.txt => panfrost-rk3288-gpu-fails.txt} | 0
...kips.txt => panfrost-rk3288-gpu-skips.txt} | 0
...ails.txt => panfrost-rk3399-gpu-fails.txt} | 0
...kes.txt => panfrost-rk3399-gpu-flakes.txt} | 0
...kips.txt => panfrost-rk3399-gpu-skips.txt} | 0
.../xfails/rockchip-rk3288-display-fails.txt | 15 +++
.../xfails/rockchip-rk3288-display-flakes.txt | 13 +++
.../xfails/rockchip-rk3288-display-skips.txt | 8 ++
.../xfails/rockchip-rk3399-display-fails.txt | 69 +++++++++++
.../xfails/rockchip-rk3399-display-flakes.txt | 20 ++++
.../xfails/rockchip-rk3399-display-skips.txt | 6 +
22 files changed, 261 insertions(+), 30 deletions(-)
rename drivers/gpu/drm/ci/xfails/{mediatek-mt8173-fails.txt => mediatek-mt8173-display-fails.txt} (100%)
create mode 100644 drivers/gpu/drm/ci/xfails/mediatek-mt8173-display-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/mediatek-mt8183-display-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/mediatek-mt8183-display-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/meson-g12b-display-fails.txt
rename drivers/gpu/drm/ci/xfails/{meson-g12b-fails.txt => panfrost-g12b-gpu-fails.txt} (100%)
rename drivers/gpu/drm/ci/xfails/{mediatek-mt8183-fails.txt => panfrost-mt8183-gpu-fails.txt} (100%)
rename drivers/gpu/drm/ci/xfails/{rockchip-rk3288-fails.txt => panfrost-rk3288-gpu-fails.txt} (100%)
rename drivers/gpu/drm/ci/xfails/{rockchip-rk3288-skips.txt => panfrost-rk3288-gpu-skips.txt} (100%)
rename drivers/gpu/drm/ci/xfails/{rockchip-rk3399-fails.txt => panfrost-rk3399-gpu-fails.txt} (100%)
rename drivers/gpu/drm/ci/xfails/{rockchip-rk3399-flakes.txt => panfrost-rk3399-gpu-flakes.txt} (100%)
rename drivers/gpu/drm/ci/xfails/{rockchip-rk3399-skips.txt => panfrost-rk3399-gpu-skips.txt} (100%)
create mode 100644 drivers/gpu/drm/ci/xfails/rockchip-rk3288-display-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/rockchip-rk3288-display-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/rockchip-rk3288-display-skips.txt
create mode 100644 drivers/gpu/drm/ci/xfails/rockchip-rk3399-display-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/rockchip-rk3399-display-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/rockchip-rk3399-display-skips.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:[~2023-12-20 12:12 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-20 12:11 Vignesh Raman [this message]
2023-12-20 12:11 ` [PATCH v1 1/8] drm/ci: arm64.config: Enable CONFIG_DRM_ANALOGIX_ANX7625 Vignesh Raman
2023-12-20 12:11 ` [PATCH v1 2/8] drm/ci: mediatek: Test both GPU and display drivers Vignesh Raman
2023-12-20 12:11 ` [PATCH v1 3/8] drm/ci: rockchip: " Vignesh Raman
2023-12-20 12:11 ` [PATCH v1 4/8] drm/ci: meson: " Vignesh Raman
2023-12-20 12:11 ` [PATCH v1 5/8] drm/ci: Do not set IGT_FORCE_DRIVER based on driver name Vignesh Raman
2023-12-20 12:11 ` [PATCH v1 6/8] MAINTAINERS: drm/ci: xfails: add entry for panfrost Vignesh Raman
2023-12-20 12:11 ` [PATCH v1 7/8] drm/ci: Rename xfails file Vignesh Raman
2023-12-20 12:11 ` [PATCH v1 8/8] drm/ci: Update xfails Vignesh Raman
2024-01-09 13:38 ` [PATCH v1 0/8] drm/ci: Add support for GPU and display testing Daniel Stone
2024-01-10 10:47 ` Vignesh Raman
2024-01-11 18:11 ` Daniel Stone
2024-01-17 10:58 ` Vignesh Raman
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=20231220121110.1441160-1-vignesh.raman@collabora.com \
--to=vignesh.raman@collabora.com \
--cc=airlied@gmail.com \
--cc=daniel@ffwll.ch \
--cc=daniels@collabora.com \
--cc=david.heidelberg@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=emma@anholt.net \
--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;
as well as URLs for NNTP newsgroup(s).