blob: 34bf8f7997f75c096b61a95c263ba02bfd308f80 [file]
cmake_minimum_required(VERSION 3.12)
if (NOT USE_PRECOMPILED)
set(PICO_PLATFORM rp2350-arm-s)
set(PICO_NO_PICOTOOL 1)
# Ensure we're using a MinSizeRel build
set(CMAKE_BUILD_TYPE MinSizeRel)
# If the user set these environment variables to influence the picotool
# build, unset them here so that they do not influence the pico-sdk
# build. This is especially required for flags that are not supported
# by arm-none-eabi compilers.
unset(ENV{CFLAGS})
unset(ENV{CXXFLAGS})
unset(ENV{LDFLAGS})
# Pull in SDK (must be before project)
include(${PICO_SDK_PATH}/external/pico_sdk_import.cmake)
project(enc_bootloader C CXX ASM)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
if (PICO_SDK_VERSION_STRING VERSION_LESS "2.1.2")
message(FATAL_ERROR "Raspberry Pi Pico SDK version 2.1.2 (or later) required. Your version is ${PICO_SDK_VERSION_STRING}")
endif()
# Initialize the SDK
pico_sdk_init()
# Encrypted Bootloader
add_executable(enc_bootloader
enc_bootloader.c
)
target_link_libraries(enc_bootloader
pico_stdlib
)
if (USE_MBEDTLS)
target_sources(enc_bootloader PRIVATE mbedtls_aes.c)
target_link_libraries(enc_bootloader pico_mbedtls)
target_compile_definitions(enc_bootloader PRIVATE
PICO_STACK_SIZE=0x800
# we cannot unreset clk_peri clocked h/w as we don't configure clk_peri
PICO_RUNTIME_SKIP_INIT_POST_CLOCK_RESETS=1
RC_COUNT=0 # don't use rcp_count
# 0x20080000 -> 0x20081000 doesn't overlap the stack
ROM_CHAIN_WORKSPACE=0x20080000)
target_include_directories(enc_bootloader PRIVATE ${CMAKE_CURRENT_LIST_DIR})
pico_set_linker_script(enc_bootloader ${CMAKE_CURRENT_LIST_DIR}/memmap_mbedtls.ld)
else()
target_sources(enc_bootloader PRIVATE aes.S hard_entry_point.S)
target_compile_definitions(enc_bootloader PRIVATE
PICO_STACK_SIZE=0x180
# AES Code & workspace from 0x20080044 -> 0x20081604, so 0x20080200 -> 0x20081200 is inside that
ROM_CHAIN_WORKSPACE=0x20080200)
pico_set_linker_script(enc_bootloader ${CMAKE_CURRENT_LIST_DIR}/memmap_enc_bootloader.ld)
target_compile_definitions(enc_bootloader PRIVATE
# The following are to reduce the size of the binary
PICO_NO_PROGRAM_INFO=1
PICO_CRT0_NO_RESET_SECTION=1
HARDENING=1
DOUBLE_HARDENING=1
INLINE_REF_ROUNDKEY_SHARES_S=1 # avoid need for canaries/calling check
INLINE_REF_ROUNDKEY_HVPERMS_S=1 # avoid need for canaries/calling check
INLINE_SHIFT_ROWS_S=1 # avoid need for canaries/calling check
INLINE_MAP_SBOX_S=1 # avoid need for canaries/calling check
CALLER_INIT_RCP_COUNT=1
)
endif()
target_compile_definitions(enc_bootloader PRIVATE
# The following are to reduce the size of the binary
# use stack guards, as AES variables are written near the stack
PICO_USE_STACK_GUARDS=1
# No spinlocks used
PICO_USE_SW_SPIN_LOCKS=0
# No heap is used
PICO_HEAP_SIZE=0
# Note all runtime init is skipped via the linker script
PICO_BOOTROM_LOCKING_ENABLED=0
# Don't need any vtor irqs
PICO_MINIMAL_STORED_VECTOR_TABLE=1
PICO_NO_RAM_VECTOR_TABLE=1
PICO_USE_GPIO_COPROCESSOR=0
FIB_WORKAROUND=1
)
if (ALLOW_DEBUGGING)
target_compile_definitions(enc_bootloader PRIVATE ALLOW_DEBUGGING=1)
endif()
# print memory usage
target_link_options(enc_bootloader PUBLIC -Wl,--print-memory-usage)
pico_minimize_runtime(enc_bootloader)
pico_set_binary_type(enc_bootloader no_flash)
pico_add_dis_output(enc_bootloader)
if (USE_MBEDTLS)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/enc_bootloader.elf DESTINATION ${CMAKE_CURRENT_LIST_DIR} RENAME enc_bootloader_mbedtls.elf)
else()
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/enc_bootloader.elf DESTINATION ${CMAKE_CURRENT_LIST_DIR})
endif()
else()
project(enc_bootloader C CXX ASM)
message("Using precompiled enc_bootloader.elf")
if (USE_MBEDTLS)
configure_file(${CMAKE_CURRENT_LIST_DIR}/enc_bootloader_mbedtls.elf ${CMAKE_CURRENT_BINARY_DIR}/enc_bootloader.elf COPYONLY)
else()
configure_file(${CMAKE_CURRENT_LIST_DIR}/enc_bootloader.elf ${CMAKE_CURRENT_BINARY_DIR}/enc_bootloader.elf COPYONLY)
endif()
# Use manually specified variables
set(NULL ${CMAKE_MAKE_PROGRAM})
set(NULL ${PICO_SDK_PATH})
set(NULL ${PICO_DEBUG_INFO_IN_RELEASE})
endif()