Message ID | 20240130150340.687871-6-vignesh.raman@collabora.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Neil Armstrong |
Headers | show |
Series | drm/ci: Add support for GPU and display testing | expand |
diff --git a/drivers/gpu/drm/ci/test.yml b/drivers/gpu/drm/ci/test.yml index bf4c303a65f2..f4053bc0e365 100644 --- a/drivers/gpu/drm/ci/test.yml +++ b/drivers/gpu/drm/ci/test.yml @@ -358,6 +358,13 @@ mediatek:mt8183-display: DEVICE_TYPE: meson-g12b-a311d-khadas-vim3 RUNNER_TAG: mesa-ci-x86-64-lava-meson-g12b-a311d-khadas-vim3 +meson:g12b-gpu: + extends: + - .g12b + variables: + GPU_VERSION: meson-g12b-gpu + DRIVER_NAME: panfrost + meson:g12b-display: extends: - .g12b diff --git a/drivers/gpu/drm/ci/xfails/meson-g12b-gpu-fails.txt b/drivers/gpu/drm/ci/xfails/meson-g12b-gpu-fails.txt new file mode 100644 index 000000000000..6f5e760d5ec0 --- /dev/null +++ b/drivers/gpu/drm/ci/xfails/meson-g12b-gpu-fails.txt @@ -0,0 +1 @@ +panfrost_prime@gem-prime-import,Fail diff --git a/drivers/gpu/drm/ci/xfails/meson-g12b-gpu-skips.txt b/drivers/gpu/drm/ci/xfails/meson-g12b-gpu-skips.txt new file mode 100644 index 000000000000..2ea09d1648bc --- /dev/null +++ b/drivers/gpu/drm/ci/xfails/meson-g12b-gpu-skips.txt @@ -0,0 +1,2 @@ +# Panfrost is not a KMS driver, so skip the KMS tests +kms_.*
For amlogic meson SOC the GPU driver is panfrost. So add support in drm-ci to test panfrost driver for amlogic meson SOC and update xfails. Skip KMS tests for panfrost driver since it is not a not a KMS driver. Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com> --- v2: - Add panfrost GPU jobs for amlogic meson SOC with new xfails. v3: - Skip KMS tests for panfrost driver since it is not a not a KMS driver and update xfails. Add the job name in GPU_VERSION and use it for xfail file names instead of using DRIVER_NAME. --- drivers/gpu/drm/ci/test.yml | 7 +++++++ drivers/gpu/drm/ci/xfails/meson-g12b-gpu-fails.txt | 1 + drivers/gpu/drm/ci/xfails/meson-g12b-gpu-skips.txt | 2 ++ 3 files changed, 10 insertions(+) create mode 100644 drivers/gpu/drm/ci/xfails/meson-g12b-gpu-fails.txt create mode 100644 drivers/gpu/drm/ci/xfails/meson-g12b-gpu-skips.txt