aco/gfx10: Refactor of GFX10 wave64 bpermute.
[mesa.git] / .gitlab-ci / container / lava_arm.sh
1 #!/bin/bash
2
3 set -e
4 set -o xtrace
5
6 if [[ "$DEBIAN_ARCH" = "arm64" ]]; then
7 GCC_ARCH="aarch64-linux-gnu"
8 KERNEL_ARCH="arm64"
9 DEFCONFIG="arch/arm64/configs/defconfig"
10 DEVICE_TREES="arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dtb arch/arm64/boot/dts/amlogic/meson-gxl-s905x-libretech-cc.dtb arch/arm64/boot/dts/allwinner/sun50i-h6-pine-h64.dtb arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dtb arch/arm64/boot/dts/qcom/apq8016-sbc.dtb"
11 KERNEL_IMAGE_NAME="Image"
12 else
13 GCC_ARCH="arm-linux-gnueabihf"
14 KERNEL_ARCH="arm"
15 DEFCONFIG="arch/arm/configs/multi_v7_defconfig"
16 DEVICE_TREES="arch/arm/boot/dts/rk3288-veyron-jaq.dtb arch/arm/boot/dts/sun8i-h3-libretech-all-h3-cc.dtb"
17 KERNEL_IMAGE_NAME="zImage"
18 fi
19
20 # Determine if we're in a cross build.
21 if [[ -e /cross_file-$DEBIAN_ARCH.txt ]]; then
22 EXTRA_MESON_ARGS="--cross-file /cross_file-$DEBIAN_ARCH.txt"
23 EXTRA_CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=/toolchain-$DEBIAN_ARCH.cmake"
24
25 export ARCH=${KERNEL_ARCH}
26 export CROSS_COMPILE="${GCC_ARCH}-"
27 fi
28
29 ############### Build dEQP runner
30 . .gitlab-ci/build-cts-runner.sh
31 mkdir -p /lava-files/rootfs-${DEBIAN_ARCH}/usr/bin
32 mv /usr/local/bin/deqp-runner /lava-files/rootfs-${DEBIAN_ARCH}/usr/bin/.
33
34
35 ############### Build dEQP
36 STRIP_CMD="${GCC_ARCH}-strip"
37 . .gitlab-ci/build-deqp-gl.sh
38 mv /deqp /lava-files/rootfs-${DEBIAN_ARCH}/.
39
40
41 ############### Cross-build kernel
42 KERNEL_URL="https://gitlab.freedesktop.org/tomeu/linux/-/archive/v5.5-panfrost-fixes/linux-v5.5-panfrost-fixes.tar.gz"
43
44 mkdir -p kernel
45 wget -qO- ${KERNEL_URL} | tar -xz --strip-components=1 -C kernel
46 pushd kernel
47 ./scripts/kconfig/merge_config.sh ${DEFCONFIG} ../.gitlab-ci/${KERNEL_ARCH}.config
48 make ${KERNEL_IMAGE_NAME} dtbs
49 for image in ${KERNEL_IMAGE_NAME}; do
50 cp arch/${KERNEL_ARCH}/boot/${image} /lava-files/.
51 done
52 cp ${DEVICE_TREES} /lava-files/.
53
54
55 if [[ ${DEBIAN_ARCH} = "arm64" ]] && which mkimage > /dev/null; then
56 make Image.lzma
57 mkimage \
58 -f auto \
59 -A arm \
60 -O linux \
61 -d arch/arm64/boot/Image.lzma \
62 -C lzma\
63 -b arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb \
64 /lava-files/cheza-kernel
65 fi
66
67 popd
68 rm -rf kernel
69
70 ############### Create rootfs
71 set +e
72 debootstrap \
73 --variant=minbase \
74 --arch=${DEBIAN_ARCH} \
75 --components main,contrib,non-free \
76 testing \
77 /lava-files/rootfs-${DEBIAN_ARCH}/ \
78 http://deb.debian.org/debian
79
80 cat /lava-files/rootfs-${DEBIAN_ARCH}/debootstrap/debootstrap.log
81 set -e
82
83 cp .gitlab-ci/create-rootfs.sh /lava-files/rootfs-${DEBIAN_ARCH}/.
84 chroot /lava-files/rootfs-${DEBIAN_ARCH} sh /create-rootfs.sh
85 rm /lava-files/rootfs-${DEBIAN_ARCH}/create-rootfs.sh
86
87 if [ ${DEBIAN_ARCH} = arm64 ]; then
88 # Pull down a specific build of qcomlt/release/qcomlt-5.4 8c79b3d12355
89 # ("Merge tag 'v5.4.23' into release/qcomlt-5.4"), where I used the
90 # .config from
91 # http://snapshots.linaro.org/96boards/dragonboard820c/linaro/debian/457/config-5.4.0-qcomlt-arm64
92 # with the following merged in:
93 #
94 # CONFIG_DRM=y
95 # CONFIG_DRM_MSM=y
96 # CONFIG_ATL1C=y
97 #
98 # Reason: 5.5 has a big stack of oopses and warns on db820c. 4.14-5.4
99 # linaro kernel binaries (see above .config link) have these as modules
100 # and distributed the modules only in the debian system, not the initrd,
101 # so they're very hard to extract (involving simg2img and loopback
102 # mounting). 4.11 is missing d72fea538fe6 ("drm/msm: Fix the check for
103 # the command size") so it can't actually run fredreno. qcomlt-4.14 is
104 # unstable at boot (~10% instaboot rate). The 5.4 qcomlt kernel with msm
105 # built in seems like the easiest way to go.
106 wget https://people.freedesktop.org/~anholt/qcomlt-5.4-msm-build/Image.gz -O Image.gz \
107 -O /lava-files/db820c-kernel
108 wget https://people.freedesktop.org/~anholt/qcomlt-5.4-msm-build/apq8096-db820c.dtb \
109 -O /lava-files/db820c.dtb
110
111 # Make a gzipped copy of the Image for db410c.
112 gzip -k /lava-files/Image
113
114 # Add missing a630 firmware, added to debian packge in apr 2020
115 wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/qcom/a630_gmu.bin \
116 -O /lava-files/rootfs-arm64/lib/firmware/qcom/a630_gmu.bin
117 wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/qcom/a630_sqe.fw \
118 -O /lava-files/rootfs-arm64/lib/firmware/qcom/a630_sqe.fw
119 fi