Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/ci: add rk3588-rock-5b

Add job that executes the IGT test suite for rk3588-rock-5b.

Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>

authored by

Vignesh Raman and committed by
Dmitry Baryshkov
6efced27 dd3a39aa

+85 -1
+1
MAINTAINERS
··· 2149 2149 S: Supported 2150 2150 T: git https://gitlab.freedesktop.org/drm/misc/kernel.git 2151 2151 F: Documentation/devicetree/bindings/gpu/arm,mali-valhall-csf.yaml 2152 + F: drivers/gpu/drm/ci/xfails/panthor* 2152 2153 F: drivers/gpu/drm/panthor/ 2153 2154 F: include/uapi/drm/panthor_drm.h 2154 2155
+5
drivers/gpu/drm/ci/arm64.config
··· 209 209 CONFIG_TEGRA_SOCTHERM=y 210 210 CONFIG_DRM_TEGRA_DEBUG=y 211 211 CONFIG_PWM_TEGRA=y 212 + 213 + # For Rockchip rk3588 214 + CONFIG_DRM_PANTHOR=m 215 + CONFIG_PHY_ROCKCHIP_NANENG_COMBO_PHY=y 216 + CONFIG_PHY_ROCKCHIP_SAMSUNG_HDPTX=y
+1
drivers/gpu/drm/ci/build.sh
··· 16 16 GCC_ARCH="aarch64-linux-gnu" 17 17 DEBIAN_ARCH="arm64" 18 18 DEVICE_TREES="arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dtb" 19 + DEVICE_TREES+=" arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb" 19 20 DEVICE_TREES+=" arch/arm64/boot/dts/amlogic/meson-gxl-s805x-libretech-ac.dtb" 20 21 DEVICE_TREES+=" arch/arm64/boot/dts/allwinner/sun50i-h6-pine-h64.dtb" 21 22 DEVICE_TREES+=" arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dtb"
+1
drivers/gpu/drm/ci/gitlab-ci.yml
··· 136 136 - meson 137 137 - msm 138 138 - panfrost 139 + - panthor 139 140 - powervr 140 141 - rockchip 141 142 - software-driver
+1 -1
drivers/gpu/drm/ci/igt_runner.sh
··· 23 23 24 24 mkdir -p /lib/modules 25 25 case "$DRIVER_NAME" in 26 - amdgpu|vkms) 26 + amdgpu|vkms|panthor) 27 27 # Cannot use HWCI_KERNEL_MODULES as at that point we don't have the module in /lib 28 28 mv /install/modules/lib/modules/* /lib/modules/. || true 29 29 modprobe --first-time $DRIVER_NAME
+28
drivers/gpu/drm/ci/test.yml
··· 206 206 KERNEL_IMAGE_TYPE: "" 207 207 RUNNER_TAG: mesa-ci-x86-64-lava-rk3399-gru-kevin 208 208 209 + .rk3588: 210 + extends: 211 + - .lava-igt:arm64 212 + - .rockchip-device 213 + parallel: 2 214 + variables: 215 + DEVICE_TYPE: rk3588-rock-5b 216 + GPU_VERSION: rk3588 217 + BOOT_METHOD: u-boot 218 + KERNEL_IMAGE_NAME: Image 219 + KERNEL_IMAGE_TYPE: "image" 220 + RUNNER_TAG: mesa-ci-x86-64-lava-rk3588-rock-5b 221 + 209 222 rockchip:rk3288: 210 223 extends: 211 224 - .rk3288 ··· 238 225 extends: 239 226 - .rk3399 240 227 - .panfrost-gpu 228 + 229 + rockchip:rk3588: 230 + extends: 231 + - .rk3588 232 + - .rockchip-display 233 + 234 + panthor:rk3588: 235 + extends: 236 + - .rk3588 237 + - .panthor-gpu 241 238 242 239 .i915: 243 240 extends: ··· 376 353 stage: panfrost 377 354 variables: 378 355 DRIVER_NAME: panfrost 356 + 357 + .panthor-gpu: 358 + stage: panthor 359 + variables: 360 + DRIVER_NAME: panthor 379 361 380 362 .mt8173: 381 363 extends:
+5
drivers/gpu/drm/ci/xfails/panthor-rk3588-fails.txt
··· 1 + core_hotunplug@hotreplug,Fail 2 + core_hotunplug@hotreplug-lateclose,Fail 3 + core_hotunplug@hotunplug-rescan,Fail 4 + core_hotunplug@unplug-rescan,Fail 5 + core_setmaster@master-drop-set-user,Fail
+20
drivers/gpu/drm/ci/xfails/panthor-rk3588-skips.txt
··· 1 + # Skip driver specific tests 2 + ^amdgpu.* 3 + ^msm.* 4 + nouveau_.* 5 + ^v3d.* 6 + ^vc4.* 7 + ^vmwgfx* 8 + 9 + # Skip intel specific tests 10 + gem_.* 11 + i915_.* 12 + tools_test.* 13 + kms_dp_link_training.* 14 + 15 + # Panfrost is not a KMS driver, so skip the KMS tests 16 + kms_.* 17 + 18 + # Skip display functionality tests for GPU-only drivers 19 + dumb_buffer.* 20 + fbdev.*
+9
drivers/gpu/drm/ci/xfails/rockchip-rk3588-fails.txt
··· 1 + core_setmaster@master-drop-set-user,Fail 2 + kms_3d,Fail 3 + kms_cursor_legacy@forked-bo,Fail 4 + kms_cursor_legacy@forked-move,Fail 5 + kms_cursor_legacy@single-bo,Fail 6 + kms_cursor_legacy@single-move,Fail 7 + kms_cursor_legacy@torture-bo,Fail 8 + kms_cursor_legacy@torture-move,Fail 9 + kms_lease@lease-uevent,Fail
+14
drivers/gpu/drm/ci/xfails/rockchip-rk3588-skips.txt
··· 1 + # Skip driver specific tests 2 + ^amdgpu.* 3 + ^msm.* 4 + nouveau_.* 5 + ^panfrost.* 6 + ^v3d.* 7 + ^vc4.* 8 + ^vmwgfx* 9 + 10 + # Skip intel specific tests 11 + gem_.* 12 + i915_.* 13 + tools_test.* 14 + kms_dp_link_training.*