|
1 | 1 | # CMakeLists.txt for building mcuboot as a Zephyr project
|
2 | 2 | #
|
3 | 3 | # Copyright (c) 2017 Open Source Foundries Limited
|
| 4 | +# Copyright (c) 2023 Nordic Semiconductor ASA |
4 | 5 | #
|
5 | 6 | # SPDX-License-Identifier: Apache-2.0
|
6 | 7 |
|
@@ -356,3 +357,130 @@ zephyr_library_sources(
|
356 | 357 | ${BOOT_DIR}/zephyr/arm_cleanup.c
|
357 | 358 | )
|
358 | 359 | endif()
|
| 360 | + |
| 361 | +if(SYSBUILD) |
| 362 | + function(align_up num align result) |
| 363 | + math(EXPR out "(((${num}) + ((${align}) - 1)) & ~((${align}) - 1))") |
| 364 | + set(${result} "${out}" PARENT_SCOPE) |
| 365 | + endfunction() |
| 366 | + |
| 367 | + function(dt_get_parent node) |
| 368 | + string(FIND "${${node}}" "/" pos REVERSE) |
| 369 | + |
| 370 | + if(pos EQUAL -1) |
| 371 | + message(ERROR "Unable to get parent of node: ${${node}}") |
| 372 | + endif() |
| 373 | + |
| 374 | + string(SUBSTRING "${${node}}" 0 ${pos} ${node}) |
| 375 | + set(${node} "${${node}}" PARENT_SCOPE) |
| 376 | + endfunction() |
| 377 | + |
| 378 | + if(CONFIG_SINGLE_APPLICATION_SLOT OR CONFIG_BOOT_FIRMWARE_LOADER OR CONFIG_BOOT_SWAP_USING_SCRATCH OR CONFIG_BOOT_SWAP_USING_MOVE OR CONFIG_BOOT_UPGRADE_ONLY OR CONFIG_BOOT_DIRECT_XIP OR CONFIG_BOOT_RAM_LOAD) |
| 379 | + # TODO: RAM LOAD support |
| 380 | + dt_nodelabel(slot0_flash NODELABEL "slot0_partition") |
| 381 | + dt_get_parent(slot0_flash) |
| 382 | + dt_get_parent(slot0_flash) |
| 383 | + |
| 384 | + if(NOT CONFIG_SINGLE_APPLICATION_SLOT) |
| 385 | + dt_nodelabel(slot1_flash NODELABEL "slot1_partition") |
| 386 | + dt_get_parent(slot1_flash) |
| 387 | + dt_get_parent(slot1_flash) |
| 388 | + |
| 389 | + if(NOT "${slot0_flash}" STREQUAL "${slot1_flash}") |
| 390 | + # Check both slots for the one with the largest write/erase block size |
| 391 | + dt_prop(erase_size_slot0 PATH "${slot0_flash}" PROPERTY "erase-block-size") |
| 392 | + dt_prop(write_size_slot0 PATH "${slot0_flash}" PROPERTY "write-block-size") |
| 393 | + dt_prop(erase_size_slot1 PATH "${slot1_flash}" PROPERTY "erase-block-size") |
| 394 | + dt_prop(write_size_slot1 PATH "${slot1_flash}" PROPERTY "write-block-size") |
| 395 | + |
| 396 | + if(${erase_size_slot0} GREATER ${erase_size_slot1}) |
| 397 | + set(erase_size ${erase_size_slot0}) |
| 398 | + else() |
| 399 | + set(erase_size ${erase_size_slot1}) |
| 400 | + endif() |
| 401 | + |
| 402 | + if(${write_size_slot0} GREATER ${write_size_slot1}) |
| 403 | + set(write_size ${write_size_slot0}) |
| 404 | + else() |
| 405 | + set(write_size ${write_size_slot1}) |
| 406 | + endif() |
| 407 | + else() |
| 408 | + dt_prop(erase_size PATH "${slot0_flash}" PROPERTY "erase-block-size") |
| 409 | + dt_prop(write_size PATH "${slot0_flash}" PROPERTY "write-block-size") |
| 410 | + endif() |
| 411 | + else() |
| 412 | + dt_prop(erase_size PATH "${slot0_flash}" PROPERTY "erase-block-size") |
| 413 | + dt_prop(write_size PATH "${slot0_flash}" PROPERTY "write-block-size") |
| 414 | + endif() |
| 415 | + |
| 416 | + if(write_size LESS 8) |
| 417 | + set(write_size 8) |
| 418 | + endif() |
| 419 | + |
| 420 | + set(key_size 0) |
| 421 | + |
| 422 | + # Boot trailer magic size |
| 423 | + set(boot_magic_size 16) |
| 424 | + |
| 425 | + # Estimates for trailer TLV data size, this was taken from hello world builds for nrf52840dk |
| 426 | + if(CONFIG_BOOT_SIGNATURE_TYPE_RSA) |
| 427 | + if(CONFIG_BOOT_SIGNATURE_TYPE_RSA_LEN EQUAL 3072) |
| 428 | + set(boot_tlv_estimate 464) |
| 429 | + else() |
| 430 | + set(boot_tlv_estimate 336) |
| 431 | + endif() |
| 432 | + elseif(CONFIG_BOOT_SIGNATURE_TYPE_ECDSA_P256) |
| 433 | + set(boot_tlv_estimate 150) |
| 434 | + elseif(CONFIG_BOOT_SIGNATURE_TYPE_ED25519) |
| 435 | + set(boot_tlv_estimate 144) |
| 436 | + else() |
| 437 | + set(boot_tlv_estimate 40) |
| 438 | + endif() |
| 439 | + |
| 440 | + if(CONFIG_BOOT_ENCRYPT_RSA OR CONFIG_BOOT_ENCRYPT_EC256 OR CONFIG_BOOT_ENCRYPT_X25519) |
| 441 | + # 128-bit AES key size |
| 442 | + set(boot_enc_key_size 16) |
| 443 | + |
| 444 | + if(CONFIG_BOOT_SWAP_SAVE_ENCTLV) |
| 445 | + if(CONFIG_BOOT_ENCRYPT_RSA) |
| 446 | + set(key_size 256) |
| 447 | + elseif(CONFIG_BOOT_ENCRYPT_EC256) |
| 448 | + math(EXPR key_size "65 + 32 + ${boot_enc_key_size}") |
| 449 | + elseif(CONFIG_BOOT_ENCRYPT_X25519) |
| 450 | + math(EXPR key_size "32 + 32 + ${boot_enc_key_size}") |
| 451 | + endif() |
| 452 | + else() |
| 453 | + set(key_size "${boot_enc_key_size}") |
| 454 | + endif() |
| 455 | + |
| 456 | + align_up(${key_size} ${write_size} key_size) |
| 457 | + math(EXPR key_size "${key_size} * 2") |
| 458 | + endif() |
| 459 | + |
| 460 | + align_up(${boot_magic_size} ${write_size} boot_magic_size) |
| 461 | + |
| 462 | + if(CONFIG_SINGLE_APPLICATION_SLOT OR CONFIG_BOOT_FIRMWARE_LOADER) |
| 463 | + set(boot_swap_data_size 0) |
| 464 | + else() |
| 465 | + math(EXPR boot_swap_data_size "${write_size} * 4") |
| 466 | + endif() |
| 467 | + |
| 468 | + if(CONFIG_BOOT_SWAP_USING_SCRATCH OR CONFIG_BOOT_SWAP_USING_MOVE) |
| 469 | + math(EXPR boot_status_data_size "${CONFIG_BOOT_MAX_IMG_SECTORS} * (3 * ${write_size})") |
| 470 | + else() |
| 471 | + set(boot_status_data_size 0) |
| 472 | + endif() |
| 473 | + |
| 474 | + math(EXPR required_size "${key_size} + ${boot_magic_size} + ${boot_swap_data_size} + ${boot_status_data_size} + ${boot_tlv_estimate}") |
| 475 | + |
| 476 | + align_up(${required_size} ${erase_size} required_size) |
| 477 | + |
| 478 | + if(CONFIG_BOOT_SWAP_USING_MOVE) |
| 479 | + math(EXPR required_size "${required_size} + ${erase_size}") |
| 480 | + endif() |
| 481 | + else() |
| 482 | + set(required_size 0) |
| 483 | + endif() |
| 484 | + |
| 485 | + set(mcuboot_image_footer_size ${required_size} CACHE INTERNAL "Estimated MCUboot image trailer size" FORCE) |
| 486 | +endif() |
0 commit comments