blob: 5f5e9dd444803d0011173fcf6a3d211a825e93aa [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001inherit kernel-uboot kernel-artifact-names uboot-sign
2
3python __anonymous () {
4 kerneltypes = d.getVar('KERNEL_IMAGETYPES') or ""
5 if 'fitImage' in kerneltypes.split():
6 depends = d.getVar("DEPENDS")
7 depends = "%s u-boot-tools-native dtc-native" % depends
8 d.setVar("DEPENDS", depends)
9
10 uarch = d.getVar("UBOOT_ARCH")
11 if uarch == "arm64":
12 replacementtype = "Image"
13 elif uarch == "riscv":
14 replacementtype = "Image"
15 elif uarch == "mips":
16 replacementtype = "vmlinuz.bin"
17 elif uarch == "x86":
18 replacementtype = "bzImage"
19 elif uarch == "microblaze":
20 replacementtype = "linux.bin"
21 else:
22 replacementtype = "zImage"
23
24 # Override KERNEL_IMAGETYPE_FOR_MAKE variable, which is internal
25 # to kernel.bbclass . We have to override it, since we pack zImage
26 # (at least for now) into the fitImage .
27 typeformake = d.getVar("KERNEL_IMAGETYPE_FOR_MAKE") or ""
28 if 'fitImage' in typeformake.split():
29 d.setVar('KERNEL_IMAGETYPE_FOR_MAKE', typeformake.replace('fitImage', replacementtype))
30
31 image = d.getVar('INITRAMFS_IMAGE')
32 if image:
33 d.appendVarFlag('do_assemble_fitimage_initramfs', 'depends', ' ${INITRAMFS_IMAGE}:do_image_complete')
34
35 #check if there are any dtb providers
36 providerdtb = d.getVar("PREFERRED_PROVIDER_virtual/dtb")
37 if providerdtb:
38 d.appendVarFlag('do_assemble_fitimage', 'depends', ' virtual/dtb:do_populate_sysroot')
39 d.appendVarFlag('do_assemble_fitimage_initramfs', 'depends', ' virtual/dtb:do_populate_sysroot')
40 d.setVar('EXTERNAL_KERNEL_DEVICETREE', "${RECIPE_SYSROOT}/boot/devicetree")
41
42 # Verified boot will sign the fitImage and append the public key to
43 # U-Boot dtb. We ensure the U-Boot dtb is deployed before assembling
44 # the fitImage:
45 if d.getVar('UBOOT_SIGN_ENABLE') == "1" and d.getVar('UBOOT_DTB_BINARY'):
46 uboot_pn = d.getVar('PREFERRED_PROVIDER_u-boot') or 'u-boot'
47 d.appendVarFlag('do_assemble_fitimage', 'depends', ' %s:do_populate_sysroot' % uboot_pn)
48}
49
50# Options for the device tree compiler passed to mkimage '-D' feature:
51UBOOT_MKIMAGE_DTCOPTS ??= ""
52
53# fitImage Hash Algo
54FIT_HASH_ALG ?= "sha256"
55
56# fitImage Signature Algo
57FIT_SIGN_ALG ?= "rsa2048"
58
59#
60# Emit the fitImage ITS header
61#
62# $1 ... .its filename
63fitimage_emit_fit_header() {
64 cat << EOF >> ${1}
65/dts-v1/;
66
67/ {
68 description = "U-Boot fitImage for ${DISTRO_NAME}/${PV}/${MACHINE}";
69 #address-cells = <1>;
70EOF
71}
72
73#
74# Emit the fitImage section bits
75#
76# $1 ... .its filename
77# $2 ... Section bit type: imagestart - image section start
78# confstart - configuration section start
79# sectend - section end
80# fitend - fitimage end
81#
82fitimage_emit_section_maint() {
83 case $2 in
84 imagestart)
85 cat << EOF >> ${1}
86
87 images {
88EOF
89 ;;
90 confstart)
91 cat << EOF >> ${1}
92
93 configurations {
94EOF
95 ;;
96 sectend)
97 cat << EOF >> ${1}
98 };
99EOF
100 ;;
101 fitend)
102 cat << EOF >> ${1}
103};
104EOF
105 ;;
106 esac
107}
108
109#
110# Emit the fitImage ITS kernel section
111#
112# $1 ... .its filename
113# $2 ... Image counter
114# $3 ... Path to kernel image
115# $4 ... Compression type
116fitimage_emit_section_kernel() {
117
118 kernel_csum="${FIT_HASH_ALG}"
119
120 ENTRYPOINT="${UBOOT_ENTRYPOINT}"
121 if [ -n "${UBOOT_ENTRYSYMBOL}" ]; then
122 ENTRYPOINT=`${HOST_PREFIX}nm vmlinux | \
123 awk '$3=="${UBOOT_ENTRYSYMBOL}" {print "0x"$1;exit}'`
124 fi
125
126 cat << EOF >> ${1}
127 kernel-${2} {
128 description = "Linux kernel";
129 data = /incbin/("${3}");
130 type = "kernel";
131 arch = "${UBOOT_ARCH}";
132 os = "linux";
133 compression = "${4}";
134 load = <${UBOOT_LOADADDRESS}>;
135 entry = <${ENTRYPOINT}>;
136 hash-1 {
137 algo = "${kernel_csum}";
138 };
139 };
140EOF
141}
142
143#
144# Emit the fitImage ITS DTB section
145#
146# $1 ... .its filename
147# $2 ... Image counter
148# $3 ... Path to DTB image
149fitimage_emit_section_dtb() {
150
151 dtb_csum="${FIT_HASH_ALG}"
152
153 dtb_loadline=""
154 dtb_ext=${DTB##*.}
155 if [ "${dtb_ext}" = "dtbo" ]; then
156 if [ -n "${UBOOT_DTBO_LOADADDRESS}" ]; then
157 dtb_loadline="load = <${UBOOT_DTBO_LOADADDRESS}>;"
158 fi
159 elif [ -n "${UBOOT_DTB_LOADADDRESS}" ]; then
160 dtb_loadline="load = <${UBOOT_DTB_LOADADDRESS}>;"
161 fi
162 cat << EOF >> ${1}
163 fdt-${2} {
164 description = "Flattened Device Tree blob";
165 data = /incbin/("${3}");
166 type = "flat_dt";
167 arch = "${UBOOT_ARCH}";
168 compression = "none";
169 ${dtb_loadline}
170 hash-1 {
171 algo = "${dtb_csum}";
172 };
173 };
174EOF
175}
176
177#
178# Emit the fitImage ITS setup section
179#
180# $1 ... .its filename
181# $2 ... Image counter
182# $3 ... Path to setup image
183fitimage_emit_section_setup() {
184
185 setup_csum="${FIT_HASH_ALG}"
186
187 cat << EOF >> ${1}
188 setup-${2} {
189 description = "Linux setup.bin";
190 data = /incbin/("${3}");
191 type = "x86_setup";
192 arch = "${UBOOT_ARCH}";
193 os = "linux";
194 compression = "none";
195 load = <0x00090000>;
196 entry = <0x00090000>;
197 hash-1 {
198 algo = "${setup_csum}";
199 };
200 };
201EOF
202}
203
204#
205# Emit the fitImage ITS ramdisk section
206#
207# $1 ... .its filename
208# $2 ... Image counter
209# $3 ... Path to ramdisk image
210fitimage_emit_section_ramdisk() {
211
212 ramdisk_csum="${FIT_HASH_ALG}"
213 ramdisk_loadline=""
214 ramdisk_entryline=""
215
216 if [ -n "${UBOOT_RD_LOADADDRESS}" ]; then
217 ramdisk_loadline="load = <${UBOOT_RD_LOADADDRESS}>;"
218 fi
219 if [ -n "${UBOOT_RD_ENTRYPOINT}" ]; then
220 ramdisk_entryline="entry = <${UBOOT_RD_ENTRYPOINT}>;"
221 fi
222
223 cat << EOF >> ${1}
224 ramdisk-${2} {
225 description = "${INITRAMFS_IMAGE}";
226 data = /incbin/("${3}");
227 type = "ramdisk";
228 arch = "${UBOOT_ARCH}";
229 os = "linux";
230 compression = "none";
231 ${ramdisk_loadline}
232 ${ramdisk_entryline}
233 hash-1 {
234 algo = "${ramdisk_csum}";
235 };
236 };
237EOF
238}
239
240#
241# Emit the fitImage ITS configuration section
242#
243# $1 ... .its filename
244# $2 ... Linux kernel ID
245# $3 ... DTB image name
246# $4 ... ramdisk ID
247# $5 ... config ID
248# $6 ... default flag
249fitimage_emit_section_config() {
250
251 conf_csum="${FIT_HASH_ALG}"
252 conf_sign_algo="${FIT_SIGN_ALG}"
253 if [ "${UBOOT_SIGN_ENABLE}" = "1" ] ; then
254 conf_sign_keyname="${UBOOT_SIGN_KEYNAME}"
255 fi
256
257 # Test if we have any DTBs at all
258 sep=""
259 conf_desc=""
260 kernel_line=""
261 fdt_line=""
262 ramdisk_line=""
263 setup_line=""
264 default_line=""
265
266 if [ -n "${2}" ]; then
267 conf_desc="Linux kernel"
268 sep=", "
269 kernel_line="kernel = \"kernel-${2}\";"
270 fi
271
272 if [ -n "${3}" ]; then
273 conf_desc="${conf_desc}${sep}FDT blob"
274 sep=", "
275 fdt_line="fdt = \"fdt-${3}\";"
276 fi
277
278 if [ -n "${4}" ]; then
279 conf_desc="${conf_desc}${sep}ramdisk"
280 sep=", "
281 ramdisk_line="ramdisk = \"ramdisk-${4}\";"
282 fi
283
284 if [ -n "${5}" ]; then
285 conf_desc="${conf_desc}${sep}setup"
286 setup_line="setup = \"setup-${5}\";"
287 fi
288
289 if [ "${6}" = "1" ]; then
290 default_line="default = \"conf-${3}\";"
291 fi
292
293 cat << EOF >> ${1}
294 ${default_line}
295 conf-${3} {
296 description = "${6} ${conf_desc}";
297 ${kernel_line}
298 ${fdt_line}
299 ${ramdisk_line}
300 ${setup_line}
301 hash-1 {
302 algo = "${conf_csum}";
303 };
304EOF
305
306 if [ ! -z "${conf_sign_keyname}" ] ; then
307
308 sign_line="sign-images = "
309 sep=""
310
311 if [ -n "${2}" ]; then
312 sign_line="${sign_line}${sep}\"kernel\""
313 sep=", "
314 fi
315
316 if [ -n "${3}" ]; then
317 sign_line="${sign_line}${sep}\"fdt\""
318 sep=", "
319 fi
320
321 if [ -n "${4}" ]; then
322 sign_line="${sign_line}${sep}\"ramdisk\""
323 sep=", "
324 fi
325
326 if [ -n "${5}" ]; then
327 sign_line="${sign_line}${sep}\"setup\""
328 fi
329
330 sign_line="${sign_line};"
331
332 cat << EOF >> ${1}
333 signature-1 {
334 algo = "${conf_csum},${conf_sign_algo}";
335 key-name-hint = "${conf_sign_keyname}";
336 ${sign_line}
337 };
338EOF
339 fi
340
341 cat << EOF >> ${1}
342 };
343EOF
344}
345
346#
347# Assemble fitImage
348#
349# $1 ... .its filename
350# $2 ... fitImage name
351# $3 ... include ramdisk
352fitimage_assemble() {
353 kernelcount=1
354 dtbcount=""
355 DTBS=""
356 ramdiskcount=${3}
357 setupcount=""
358 rm -f ${1} arch/${ARCH}/boot/${2}
359
360 fitimage_emit_fit_header ${1}
361
362 #
363 # Step 1: Prepare a kernel image section.
364 #
365 fitimage_emit_section_maint ${1} imagestart
366
367 uboot_prep_kimage
368 fitimage_emit_section_kernel ${1} "${kernelcount}" linux.bin "${linux_comp}"
369
370 #
371 # Step 2: Prepare a DTB image section
372 #
373
374 if [ -z "${EXTERNAL_KERNEL_DEVICETREE}" ] && [ -n "${KERNEL_DEVICETREE}" ]; then
375 dtbcount=1
376 for DTB in ${KERNEL_DEVICETREE}; do
377 if echo ${DTB} | grep -q '/dts/'; then
378 bbwarn "${DTB} contains the full path to the the dts file, but only the dtb name should be used."
379 DTB=`basename ${DTB} | sed 's,\.dts$,.dtb,g'`
380 fi
381 DTB_PATH="arch/${ARCH}/boot/dts/${DTB}"
382 if [ ! -e "${DTB_PATH}" ]; then
383 DTB_PATH="arch/${ARCH}/boot/${DTB}"
384 fi
385
386 DTB=$(echo "${DTB}" | tr '/' '_')
387 DTBS="${DTBS} ${DTB}"
388 fitimage_emit_section_dtb ${1} ${DTB} ${DTB_PATH}
389 done
390 fi
391
392 if [ -n "${EXTERNAL_KERNEL_DEVICETREE}" ]; then
393 dtbcount=1
394 for DTB in $(find "${EXTERNAL_KERNEL_DEVICETREE}" \( -name '*.dtb' -o -name '*.dtbo' \) -printf '%P\n' | sort); do
395 DTB=$(echo "${DTB}" | tr '/' '_')
396 DTBS="${DTBS} ${DTB}"
397 fitimage_emit_section_dtb ${1} ${DTB} "${EXTERNAL_KERNEL_DEVICETREE}/${DTB}"
398 done
399 fi
400
401 #
402 # Step 3: Prepare a setup section. (For x86)
403 #
404 if [ -e arch/${ARCH}/boot/setup.bin ]; then
405 setupcount=1
406 fitimage_emit_section_setup ${1} "${setupcount}" arch/${ARCH}/boot/setup.bin
407 fi
408
409 #
410 # Step 4: Prepare a ramdisk section.
411 #
412 if [ "x${ramdiskcount}" = "x1" ] ; then
413 # Find and use the first initramfs image archive type we find
414 for img in cpio.lz4 cpio.lzo cpio.lzma cpio.xz cpio.gz ext2.gz cpio; do
415 initramfs_path="${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE_NAME}.${img}"
416 echo "Using $initramfs_path"
417 if [ -e "${initramfs_path}" ]; then
418 fitimage_emit_section_ramdisk ${1} "${ramdiskcount}" "${initramfs_path}"
419 break
420 fi
421 done
422 fi
423
424 fitimage_emit_section_maint ${1} sectend
425
426 # Force the first Kernel and DTB in the default config
427 kernelcount=1
428 if [ -n "${dtbcount}" ]; then
429 dtbcount=1
430 fi
431
432 #
433 # Step 5: Prepare a configurations section
434 #
435 fitimage_emit_section_maint ${1} confstart
436
437 if [ -n "${DTBS}" ]; then
438 i=1
439 for DTB in ${DTBS}; do
440 dtb_ext=${DTB##*.}
441 if [ "${dtb_ext}" = "dtbo" ]; then
442 fitimage_emit_section_config ${1} "" "${DTB}" "" "" "`expr ${i} = ${dtbcount}`"
443 else
444 fitimage_emit_section_config ${1} "${kernelcount}" "${DTB}" "${ramdiskcount}" "${setupcount}" "`expr ${i} = ${dtbcount}`"
445 fi
446 i=`expr ${i} + 1`
447 done
448 fi
449
450 fitimage_emit_section_maint ${1} sectend
451
452 fitimage_emit_section_maint ${1} fitend
453
454 #
455 # Step 6: Assemble the image
456 #
457 uboot-mkimage \
458 ${@'-D "${UBOOT_MKIMAGE_DTCOPTS}"' if len('${UBOOT_MKIMAGE_DTCOPTS}') else ''} \
459 -f ${1} \
460 arch/${ARCH}/boot/${2}
461
462 #
463 # Step 7: Sign the image and add public key to U-Boot dtb
464 #
465 if [ "x${UBOOT_SIGN_ENABLE}" = "x1" ] ; then
466 add_key_to_u_boot=""
467 if [ -n "${UBOOT_DTB_BINARY}" ]; then
468 # The u-boot.dtb is a symlink to UBOOT_DTB_IMAGE, so we need copy
469 # both of them, and don't dereference the symlink.
470 cp -P ${STAGING_DATADIR}/u-boot*.dtb ${B}
471 add_key_to_u_boot="-K ${B}/${UBOOT_DTB_BINARY}"
472 fi
473 uboot-mkimage \
474 ${@'-D "${UBOOT_MKIMAGE_DTCOPTS}"' if len('${UBOOT_MKIMAGE_DTCOPTS}') else ''} \
475 -F -k "${UBOOT_SIGN_KEYDIR}" \
476 $add_key_to_u_boot \
477 -r arch/${ARCH}/boot/${2}
478 fi
479}
480
481do_assemble_fitimage() {
482 if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then
483 cd ${B}
484 fitimage_assemble fit-image.its fitImage
485 fi
486}
487
488addtask assemble_fitimage before do_install after do_compile
489
490do_assemble_fitimage_initramfs() {
491 if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage" && \
492 test -n "${INITRAMFS_IMAGE}" ; then
493 cd ${B}
494 fitimage_assemble fit-image-${INITRAMFS_IMAGE}.its fitImage-${INITRAMFS_IMAGE} 1
495 fi
496}
497
498addtask assemble_fitimage_initramfs before do_deploy after do_bundle_initramfs
499
500
501kernel_do_deploy[vardepsexclude] = "DATETIME"
502kernel_do_deploy_append() {
503 # Update deploy directory
504 if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then
505 echo "Copying fit-image.its source file..."
506 install -m 0644 ${B}/fit-image.its "$deployDir/fitImage-its-${KERNEL_FIT_NAME}.its"
507 ln -snf fitImage-its-${KERNEL_FIT_NAME}.its "$deployDir/fitImage-its-${KERNEL_FIT_LINK_NAME}"
508
509 echo "Copying linux.bin file..."
510 install -m 0644 ${B}/linux.bin $deployDir/fitImage-linux.bin-${KERNEL_FIT_NAME}.bin
511 ln -snf fitImage-linux.bin-${KERNEL_FIT_NAME}.bin "$deployDir/fitImage-linux.bin-${KERNEL_FIT_LINK_NAME}"
512
513 if [ -n "${INITRAMFS_IMAGE}" ]; then
514 echo "Copying fit-image-${INITRAMFS_IMAGE}.its source file..."
515 install -m 0644 ${B}/fit-image-${INITRAMFS_IMAGE}.its "$deployDir/fitImage-its-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_NAME}.its"
516 ln -snf fitImage-its-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_NAME}.its "$deployDir/fitImage-its-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_LINK_NAME}"
517
518 echo "Copying fitImage-${INITRAMFS_IMAGE} file..."
519 install -m 0644 ${B}/arch/${ARCH}/boot/fitImage-${INITRAMFS_IMAGE} "$deployDir/fitImage-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_NAME}.bin"
520 ln -snf fitImage-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_NAME}.bin "$deployDir/fitImage-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_LINK_NAME}"
521 fi
522 if [ "${UBOOT_SIGN_ENABLE}" = "1" -a -n "${UBOOT_DTB_BINARY}" ] ; then
523 # UBOOT_DTB_IMAGE is a realfile, but we can't use
524 # ${UBOOT_DTB_IMAGE} since it contains ${PV} which is aimed
525 # for u-boot, but we are in kernel env now.
526 install -m 0644 ${B}/u-boot-${MACHINE}*.dtb "$deployDir/"
527 fi
528 fi
529}