This repository was archived by the owner on Apr 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdriver.sh
executable file
·459 lines (410 loc) · 14.1 KB
/
driver.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
#!/usr/bin/env bash
set -eu
setup_variables() {
while [[ ${#} -ge 1 ]]; do
case ${1} in
"AR="*|"ARCH="*|"CC="*|"LD="*|"NM"=*|"OBJDUMP"=*|"OBJSIZE"=*|"REPO="*|"TUX_BUILD="*) export "${1?}" ;;
"-c"|"--clean") cleanup=true ;;
"-j"|"--jobs") shift; jobs=$1 ;;
"-j"*) jobs=${1/-j} ;;
"--lto") disable_lto=false ;;
"-h"|"--help")
cat usage.txt
exit 0 ;;
esac
shift
done
# Turn on debug mode after parameters in case -h was specified
set -x
# torvalds/linux is the default repo if nothing is specified
case ${REPO:=linux} in
"android-"*)
tree=common
branch=${REPO}
url=https://android.googlesource.com/kernel/${tree} ;;
"linux")
owner=torvalds
tree=linux ;;
"linux-next")
owner=next
tree=linux-next ;;
"4.4"|"4.9"|"4.14"|"4.19"|"5.4")
owner=stable
branch=linux-${REPO}.y
tree=linux ;;
esac
[[ -z "${url:-}" ]] && url=git://git.kernel.org/pub/scm/linux/kernel/git/${owner}/${tree}.git
SUBARCH=${ARCH}
case ${SUBARCH} in
"arm32_v5")
config=multi_v5_defconfig
image_name=zImage
qemu="qemu-system-arm"
qemu_cmdline=( -machine palmetto-bmc
-no-reboot
-dtb "${tree}/arch/arm/boot/dts/aspeed-bmc-opp-palmetto.dtb"
-initrd "images/arm/rootfs.cpio" )
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabi- ;;
"arm32_v6")
config=aspeed_g5_defconfig
image_name=zImage
timeout=4 # This architecture needs a bit of a longer timeout due to some flakiness on Travis
qemu="qemu-system-arm"
qemu_cmdline=( -machine romulus-bmc
-no-reboot
-dtb "${tree}/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dtb"
-initrd "images/arm/rootfs.cpio" )
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabi- ;;
"arm32_v7")
config=multi_v7_defconfig
image_name=zImage
qemu="qemu-system-arm"
qemu_cmdline=( -machine virt
-no-reboot
-initrd "images/arm/rootfs.cpio"
-append "console=ttyAMA0" )
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabi- ;;
"arm64")
case ${REPO} in
android-*)
case ${branch} in
*4.9-q|*4.14) config=cuttlefish_defconfig ;;
*) config=gki_defconfig ;;
esac ;;
*) config=defconfig ;;
esac
image_name=Image.gz
qemu="qemu-system-aarch64"
qemu_cmdline=( -cpu cortex-a57
-initrd "images/arm64/rootfs.cpio"
-append "console=ttyAMA0" )
export CROSS_COMPILE=aarch64-linux-gnu- ;;
"mips")
config=malta_defconfig
image_name=vmlinux
qemu="qemu-system-mips"
qemu_cmdline=( -machine malta
-cpu 24Kf
-initrd "images/mips/rootfs.cpio" )
export ARCH=mips
export CROSS_COMPILE=mips-linux-gnu- ;;
"mipsel")
config=malta_defconfig
image_name=vmlinux
qemu="qemu-system-mipsel"
qemu_cmdline=( -machine malta
-cpu 24Kf
-initrd "images/mipsel/rootfs.cpio" )
export ARCH=mips
export CROSS_COMPILE=mipsel-linux-gnu- ;;
"ppc32")
config=ppc44x_defconfig
image_name=zImage
qemu="qemu-system-ppc"
qemu_ram=128m
qemu_cmdline=( -machine bamboo
-append "console=ttyS0"
-no-reboot
-initrd "images/ppc32/rootfs.cpio" )
export ARCH=powerpc
export CROSS_COMPILE=powerpc-linux-gnu- ;;
"ppc64")
config=pseries_defconfig
qemu="qemu-system-ppc64"
image_name=vmlinux
qemu_ram=1G
qemu_cmdline=( -machine pseries
-vga none
-initrd "images/ppc64/rootfs.cpio" )
export ARCH=powerpc
export CROSS_COMPILE=powerpc64-linux-gnu- ;;
"ppc64le")
config=powernv_defconfig
image_name=zImage.epapr
qemu="qemu-system-ppc64"
qemu_ram=2G
qemu_cmdline=( -machine powernv
-device "ipmi-bmc-sim,id=bmc0"
-device "isa-ipmi-bt,bmc=bmc0,irq=10"
-L images/ppc64le/ -bios skiboot.lid
-initrd images/ppc64le/rootfs.cpio )
export ARCH=powerpc
export CROSS_COMPILE=powerpc64le-linux-gnu- ;;
"riscv")
config=defconfig
image_name=vmlinux
using_qemu=false
export CROSS_COMPILE=riscv64-linux-gnu- ;;
"s390")
config=defconfig
image_name=bzImage
using_qemu=false
OBJDUMP=s390x-linux-gnu-objdump
export CROSS_COMPILE=s390x-linux-gnu- ;;
"x86_64")
case ${REPO} in
android-*)
case ${branch} in
*4.9-q|*4.14) config=x86_64_cuttlefish_defconfig ;;
*) config=gki_defconfig ;;
esac ;;
*)
config=defconfig ;;
esac
qemu_cmdline=( -append "console=ttyS0"
-initrd "images/x86_64/rootfs.cpio" )
# Use KVM if the processor supports it (first part) and the KVM module is loaded (second part)
[[ $(grep -c -E 'vmx|svm' /proc/cpuinfo) -gt 0 && $(lsmod 2>/dev/null | grep -c kvm) -gt 0 ]] && qemu_cmdline=( "${qemu_cmdline[@]}" -enable-kvm )
image_name=bzImage
qemu="qemu-system-x86_64" ;;
# Unknown arch, error out
*)
echo "Unknown ARCH specified!"
exit 1 ;;
esac
export ARCH=${ARCH}
}
# Generates a list of binary versions based on latest_llvm_version and oldest_llvm_version
# Example: gen_bin_list clang spits out clang-10 clang-9 clang-8...
gen_bin_list() {
seq -f "${1:?}-%.0f" "${latest_llvm_version}" -1 "${oldest_llvm_version}"
}
check_dependencies() {
# Check for existence of needed binaries
${using_qemu:=true} && command -v ${qemu}
command -v timeout
command -v unbuffer
if [[ -n "${TUX_BUILD:=}" ]]; then
command -v python3
command -v tuxbuild
command -v wget
return 0
fi
command -v nproc
command -v "${CROSS_COMPILE:-}"as
oldest_llvm_version=7
latest_llvm_version=$(curl -LSs https://raw.githubusercontent.com/llvm/llvm-project/master/llvm/CMakeLists.txt | grep -s -F "set(LLVM_VERSION_MAJOR" | cut -d ' ' -f 4 | sed 's/)//')
for readelf in $(gen_bin_list llvm-readelf) llvm-readelf; do
command -v ${readelf} &>/dev/null && break
done
# Check for LD, CC, and AR environmental variables
# and print the version string of each. If CC and AR
# don't exist, try to find them.
# lld isn't ready for all architectures so it's just
# simpler to fall back to GNU ld when LD isn't specified
# to avoid architecture specific selection logic.
"${LD:="${CROSS_COMPILE:-}"ld}" --version
if [[ -z "${CC:-}" ]]; then
for CC in $(gen_bin_list clang) clang; do
command -v ${CC} &>/dev/null && break
done
fi
${CC} --version 2>/dev/null || {
set +x
echo
echo "Looks like ${CC} could not be found in PATH!"
echo
echo "Please install as recent a version of clang as you can from your distro or"
echo "properly specify the CC variable to point to the correct clang binary."
echo
echo "If you don't want to install clang, you can either download AOSP's prebuilt"
echo "clang [1] or build it from source [2] then add the bin folder to your PATH."
echo
echo "[1]: https://android.googlesource.com/platform/prebuilts/clang/host/linux-x86/"
echo "[2]: https://github.com/ClangBuiltLinux/linux/wiki/Building-Clang-from-source"
echo
exit;
}
if [[ -z "${AR:-}" ]]; then
for AR in $(gen_bin_list llvm-ar) llvm-ar "${CROSS_COMPILE:-}"ar; do
command -v ${AR} 2>/dev/null && break
done
fi
check_ar_version
${AR} --version
if [[ -z "${NM:-}" ]]; then
for NM in $(gen_bin_list llvm-nm) llvm-nm "${CROSS_COMPILE:-}"nm; do
command -v ${NM} 2>/dev/null && break
done
fi
if [[ -z "${OBJDUMP:-}" ]]; then
for OBJDUMP in $(gen_bin_list llvm-objdump) llvm-objdump "${CROSS_COMPILE:-}"objdump; do
command -v ${OBJDUMP} 2>/dev/null && break
done
fi
if [[ -z "${OBJSIZE:-}" ]]; then
for OBJSIZE in $(gen_bin_list llvm-size) llvm-size "${CROSS_COMPILE:-}"size; do
command -v ${OBJSIZE} 2>/dev/null && break
done
fi
}
# Optimistically check to see that the user has a llvm-ar
# with https://reviews.llvm.org/rL354044. If they don't,
# fall back to GNU ar and let them know.
check_ar_version() {
if ${AR} --version | grep -q "LLVM" && \
[[ $(${AR} --version | grep version | sed -e 's/.*LLVM version //g' -e 's/[[:blank:]]*$//' -e 's/\.//g' -e 's/svn//' -e 's/git//' ) -lt 900 ]]; then
set +x
echo
echo "${AR} found but appears to be too old to build the kernel (needs to be at least 9.0.0)."
echo
echo "Please either update llvm-ar from your distro or build it from source!"
echo
echo "See https://github.com/ClangBuiltLinux/linux/issues/33 for more info."
echo
echo "Falling back to GNU ar..."
echo
AR=${CROSS_COMPILE:-}ar
set -x
fi
}
mako_reactor() {
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/kbuild/kbuild.txt
time \
KBUILD_BUILD_TIMESTAMP="Thu Jan 1 00:00:00 UTC 1970" \
KBUILD_BUILD_USER=driver \
KBUILD_BUILD_HOST=clangbuiltlinux \
make -j"${jobs:-$(nproc)}" \
AR="${AR}" \
CC="${CC}" \
HOSTCC="${CC}" \
HOSTLD="${HOSTLD:-ld}" \
KCFLAGS="-Wno-implicit-fallthrough" \
LD="${LD}" \
NM="${NM}" \
OBJDUMP="${OBJDUMP}" \
OBJSIZE="${OBJSIZE}" \
"${@}"
}
build_via_tuxbuild() {
echo "tuxbuild"
# https://gitlab.com/Linaro/tuxbuild/-/issues/55
if [[ ${ARCH} == "x86_64" ]]; then
tux_arch=x86
else
tux_arch=${ARCH}
fi
# https://gitlab.com/Linaro/tuxbuild/-/issues/53
if [[ ${ARCH} == "arm64" ]]; then
tux_image=Image
else
tux_image=${image_name}
fi
# Example command:
# $ tuxbuild build \
# --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git \
# --git-ref master --target-arch x86 --kconfig defconfig
# --toolchain clang-9
# Example artifacts to play with:
# https://builds.tuxbuild.com/k4gifttltEVagDHstq0NoA/ x86 811
# https://builds.tuxbuild.com/neNnj76CSx8sDEbwlUHGbA/ arm64 31:06
# https://builds.tuxbuild.com/9ieKegqDeZBTCMaG3et7ig/ arm64
# https://builds.tuxbuild.com/rPqYnwW4B8xhi8i6atmcpg/ arm
cmd="tuxbuild build --git-repo ${url} --git-ref ${branch:=master} --target-arch ${tux_arch} --kconfig ${config} --toolchain clang-${LLVM_VERSION}"
echo "${cmd}"
# https://gitlab.com/Linaro/tuxbuild/-/issues/56
start=$(date +%s)
build_url=$(timeout 50m ${cmd} | grep -o https://builds.tuxbuild.com/.\* | head -n1)
end=$(date +%s)
runtime=$((${end}-${start}))
echo "tuxbuild took ${runtime} seconds: ${build_url}"
rm -f build.log
wget "${build_url}build.log" -O build.log
cat build.log
#kernel_image=${tree}/arch/${ARCH}/boot/${image_name}
mkdir -p ${tree}/arch/${ARCH}/boot
rm -f "${tree}/arch/${ARCH}/boot/${image_name}"
wget "${build_url}${tux_image}" -O "${tree}/arch/${ARCH}/boot/${image_name}"
}
apply_patches() {
patches_folder=$1
if [[ -d ${patches_folder} ]]; then
git apply -v -3 "${patches_folder}"/*.patch
else
return 0
fi
}
build_linux() {
if [[ -n ${TUX_BUILD} ]]; then
build_via_tuxbuild
return 0
fi
# Wrap CC in ccache if it is available (it's not strictly required)
CC="$(command -v ccache) ${CC}"
[[ ${LD} =~ lld ]] && HOSTLD=${LD}
if [[ -d ${tree} ]]; then
cd ${tree}
git fetch --depth=1 ${url} ${branch:=master}
git reset --hard FETCH_HEAD
else
git clone --depth=1 -b ${branch:=master} --single-branch ${url}
cd ${tree}
fi
git show -s | cat
llvm_all_folder="../patches/llvm-all"
apply_patches "${llvm_all_folder}/kernel-all"
apply_patches "${llvm_all_folder}/${REPO}/arch-all"
apply_patches "${llvm_all_folder}/${REPO}/${SUBARCH}"
llvm_version_folder="../patches/llvm-$(echo __clang_major__ | ${CC} -E -x c - | tail -n 1)"
apply_patches "${llvm_version_folder}/kernel-all"
apply_patches "${llvm_version_folder}/${REPO}/arch-all"
apply_patches "${llvm_version_folder}/${REPO}/${SUBARCH}"
# Only clean up old artifacts if requested, the Linux build system
# is good about figuring out what needs to be rebuilt
[[ -n "${cleanup:-}" ]] && mako_reactor mrproper
mako_reactor ${config}
# If we're using a defconfig, enable some more common config options
# like debugging, selftests, and common drivers
if [[ ${config} =~ defconfig ]]; then
cat ../configs/common.config >> .config
# Some torture test configs cause issues on x86_64
[[ $ARCH != "x86_64" ]] && cat ../configs/tt.config >> .config
# Disable ftrace on arm32: https://github.com/ClangBuiltLinux/linux/issues/35
[[ $ARCH == "arm" ]] && ./scripts/config -d CONFIG_FTRACE
# Disable LTO and CFI unless explicitly requested
${disable_lto:=true} && ./scripts/config -d CONFIG_LTO -d CONFIG_LTO_CLANG
fi
[[ $SUBARCH == "mips" ]] && ./scripts/config -e CPU_BIG_ENDIAN -d CPU_LITTLE_ENDIAN
# Make sure we build with CONFIG_DEBUG_SECTION_MISMATCH so that the
# full warning gets printed and we can file and fix it properly.
./scripts/config -e DEBUG_SECTION_MISMATCH
mako_reactor olddefconfig &>/dev/null
mako_reactor ${image_name}
[[ $ARCH =~ arm ]] && mako_reactor dtbs
${readelf} --string-dump=.comment vmlinux
cd "${OLDPWD}"
}
boot_qemu() {
if ! ${using_qemu}; then
return 0;
fi
local kernel_image
if [[ ${image_name} = "vmlinux" ]]; then
kernel_image=${tree}/vmlinux
else
kernel_image=${tree}/arch/${ARCH}/boot/${image_name}
fi
test -e ${kernel_image}
qemu=( timeout "${timeout:-2}"m
unbuffer
"${qemu}"
-m "${qemu_ram:=512m}"
"${qemu_cmdline[@]}"
-display none
-serial mon:stdio
-kernel "${kernel_image}" )
# For arm64, we want to test booting at both EL1 and EL2
if [[ ${ARCH} = "arm64" ]]; then
"${qemu[@]}" -machine virt
"${qemu[@]}" -machine "virt,virtualization=true"
else
"${qemu[@]}"
fi
}
setup_variables "${@}"
check_dependencies
build_linux
boot_qemu