mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-21 03:52:04 +00:00
bootloader: enable build again
This commit is contained in:
parent
7edc688180
commit
603d980d22
@ -12,6 +12,8 @@ install:
|
|||||||
script:
|
script:
|
||||||
- make build_cross
|
- make build_cross
|
||||||
|
|
||||||
|
- make build_bootloader
|
||||||
|
|
||||||
- make build_trezorhal
|
- make build_trezorhal
|
||||||
|
|
||||||
- make build_unix TREZOR_NOUI=1
|
- make build_unix TREZOR_NOUI=1
|
||||||
|
3
Makefile
3
Makefile
@ -26,6 +26,9 @@ build_trezorhal: vendor res build_cross ## build trezorhal port with frozen modu
|
|||||||
build_trezorhal_debug: vendor res build_cross ## build trezorhal port with frozen modules and debug symbols
|
build_trezorhal_debug: vendor res build_cross ## build trezorhal port with frozen modules and debug symbols
|
||||||
$(MAKE) -f Makefile.firmware $(TREZORHAL_PORT_OPTS) DEBUG=1
|
$(MAKE) -f Makefile.firmware $(TREZORHAL_PORT_OPTS) DEBUG=1
|
||||||
|
|
||||||
|
build_bootloader: vendor ## build bootloader
|
||||||
|
$(MAKE) -f Makefile.bootloader $(TREZORHAL_PORT_OPTS)
|
||||||
|
|
||||||
build_unix: vendor ## build unix port
|
build_unix: vendor ## build unix port
|
||||||
$(MAKE) -f ../../../micropython/unix/Makefile -C vendor/micropython/unix $(UNIX_PORT_OPTS)
|
$(MAKE) -f ../../../micropython/unix/Makefile -C vendor/micropython/unix $(UNIX_PORT_OPTS)
|
||||||
|
|
||||||
|
168
Makefile.bootloader
Normal file
168
Makefile.bootloader
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
# target directory
|
||||||
|
BUILD ?= micropython/bootloader/build
|
||||||
|
|
||||||
|
# include py core make definitions
|
||||||
|
include vendor/micropython/py/mkenv.mk
|
||||||
|
|
||||||
|
# sources
|
||||||
|
# =====================================
|
||||||
|
|
||||||
|
SRCDIR_MP = vendor/micropython
|
||||||
|
SRCDIR_FW = micropython
|
||||||
|
|
||||||
|
BUILD_MP = $(BUILD)/$(SRCDIR_MP)
|
||||||
|
BUILD_FW = $(BUILD)/$(SRCDIR_FW)
|
||||||
|
|
||||||
|
# OBJ vendor/micropython
|
||||||
|
OBJ_MP += $(addprefix $(BUILD_MP)/,\
|
||||||
|
\
|
||||||
|
lib/libc/string0.o \
|
||||||
|
\
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_adc_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_adc.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_can.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_cortex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_dac_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_dac.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_dma.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_flash_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_flash.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_gpio.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_i2c.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_pcd_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_pcd.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_pwr_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_pwr.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_rcc_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_rcc.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_rng.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_rtc_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_rtc.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_sd.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_spi.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_tim_ex.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_tim.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal_uart.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_hal.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_ll_sdmmc.o \
|
||||||
|
stmhal/hal/f4/src/stm32f4xx_ll_usb.o \
|
||||||
|
\
|
||||||
|
py/mpstate.o \
|
||||||
|
py/nlrthumb.o \
|
||||||
|
\
|
||||||
|
stmhal/pendsv.o \
|
||||||
|
stmhal/startup_stm32.o \
|
||||||
|
stmhal/systick.o \
|
||||||
|
)
|
||||||
|
|
||||||
|
# OBJ micropython/
|
||||||
|
OBJ_FW += $(addprefix $(BUILD_FW)/, \
|
||||||
|
bootloader/crypto.o \
|
||||||
|
bootloader/main.o \
|
||||||
|
extmod/modtrezorui/display.o \
|
||||||
|
extmod/modtrezorui/font_bitmap.o \
|
||||||
|
trezorhal/sdcard.o \
|
||||||
|
trezorhal/stm32_it.o \
|
||||||
|
trezorhal/stm32_system.o \
|
||||||
|
trezorhal/hal/stm32f4xx_hal_sram.o \
|
||||||
|
trezorhal/hal/stm32f4xx_ll_fsmc.o \
|
||||||
|
)
|
||||||
|
|
||||||
|
# OBJ micropython/extmod/modtrezorcrypto
|
||||||
|
CFLAGS_MOD += \
|
||||||
|
-I$(SRCDIR_FW)/extmod/modtrezorcrypto/trezor-crypto \
|
||||||
|
-I$(SRCDIR_FW)/extmod/modtrezorcrypto/trezor-crypto/curve25519-donna \
|
||||||
|
-I$(SRCDIR_FW)/extmod/modtrezorcrypto/trezor-crypto/ed25519-donna \
|
||||||
|
-DED25519_CUSTOMRANDOM=1 \
|
||||||
|
-DED25519_CUSTOMHASH=1 \
|
||||||
|
-DED25519_NO_INLINE_ASM \
|
||||||
|
-DED25519_FORCE_32BIT=1 \
|
||||||
|
-DAES_128 \
|
||||||
|
-DAES_192 \
|
||||||
|
-DUSE_KECCAK=1 \
|
||||||
|
-Wno-sequence-point
|
||||||
|
|
||||||
|
OBJ_MOD += \
|
||||||
|
$(BUILD_FW)/extmod/modtrezorcrypto/trezor-crypto/ed25519-donna/ed25519.o \
|
||||||
|
$(BUILD_FW)/extmod/modtrezorcrypto/trezor-crypto/sha2.o \
|
||||||
|
|
||||||
|
OBJ = $(OBJ_MOD) $(OBJ_MP) $(OBJ_FW)
|
||||||
|
SRC_MP = $(patsubst $(BUILD_MP)%.o, $(SRCDIR_MP)%.c, $(OBJ_MP))
|
||||||
|
SRC_FW = $(patsubst $(BUILD_FW)%.o, $(SRCDIR_FW)%.c, $(OBJ_FW))
|
||||||
|
SRC_MOD = $(patsubst $(BUILD_FW)%.o, $(SRCDIR_FW)%.c, $(OBJ_MOD))
|
||||||
|
|
||||||
|
# comp flags
|
||||||
|
# =====================================
|
||||||
|
|
||||||
|
CROSS_COMPILE = arm-none-eabi-
|
||||||
|
|
||||||
|
INC += -I.
|
||||||
|
INC += -Imicropython/extmod/modtrezorui
|
||||||
|
INC += -Imicropython/firmware
|
||||||
|
INC += -Imicropython/trezorhal
|
||||||
|
INC += -Imicropython/trezorhal/hal
|
||||||
|
INC += -Ivendor/trezor-crypto
|
||||||
|
INC += -Ivendor/micropython
|
||||||
|
INC += -Ivendor/micropython/stmhal
|
||||||
|
INC += -Ivendor/micropython/stmhal/cmsis
|
||||||
|
INC += -Ivendor/micropython/stmhal/hal/f4/inc
|
||||||
|
INC += -Ivendor/micropython/stmhal/usbdev/core/inc
|
||||||
|
INC += -Ivendor/micropython/stmhal/usbdev/class/inc
|
||||||
|
INC += -Ivendor/micropython/lib/cmsis/inc
|
||||||
|
INC += -I$(BUILD)
|
||||||
|
|
||||||
|
ifeq ($(DEBUG), 1)
|
||||||
|
CFLAGS += -O0 -ggdb
|
||||||
|
else
|
||||||
|
CFLAGS += -Os -DNDEBUG
|
||||||
|
endif
|
||||||
|
|
||||||
|
CFLAGS += $(INC) $(CFLAGS_MOD) $(CFLAGS_EXTRA)
|
||||||
|
CFLAGS += -std=gnu99 -nostdlib -Wall -Werror -Wdouble-promotion -Wpointer-arith
|
||||||
|
CFLAGS += -mthumb -mtune=cortex-m4 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant
|
||||||
|
|
||||||
|
CFLAGS += -DSTM32F405xx -DMCU_SERIES_F4
|
||||||
|
CFLAGS += -DSTM32_HAL_H='<stm32f4xx_hal.h>'
|
||||||
|
|
||||||
|
LIBS = $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
|
||||||
|
|
||||||
|
LDFLAGS = -nostdlib -T micropython/trezorhal/memory.ld -Map=$@.map --cref
|
||||||
|
|
||||||
|
# remove uncalled code from the final image
|
||||||
|
CFLAGS += -fdata-sections -ffunction-sections
|
||||||
|
LDFLAGS += --gc-sections
|
||||||
|
|
||||||
|
# comp rules
|
||||||
|
# =====================================
|
||||||
|
|
||||||
|
all: $(BUILD)/bootloader.bin
|
||||||
|
|
||||||
|
$(BUILD)/bootloader.elf: $(OBJ)
|
||||||
|
$(ECHO) "LINK $@"
|
||||||
|
$(Q)$(LD) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||||
|
$(Q)$(SIZE) $@
|
||||||
|
|
||||||
|
$(BUILD)/bootloader.bin: $(BUILD)/bootloader.elf
|
||||||
|
$(Q)$(OBJCOPY) -O binary -j .flash -j .data $^ $(BUILD)/bootloader.bin
|
||||||
|
|
||||||
|
$(BUILD)/%.o: %.S
|
||||||
|
$(ECHO) "CC $<"
|
||||||
|
$(Q)$(CC) $(CFLAGS) -c -o $@ $<
|
||||||
|
|
||||||
|
$(BUILD)/%.o: %.s
|
||||||
|
$(ECHO) "AS $<"
|
||||||
|
$(Q)$(AS) -o $@ $<
|
||||||
|
|
||||||
|
$(BUILD)/%.o: %.c
|
||||||
|
$(ECHO) "CC $<"
|
||||||
|
$(Q)$(CC) $(CFLAGS) -c -MD -o $@ $<
|
||||||
|
|
||||||
|
OBJ_DIRS = $(sort $(dir $(OBJ)))
|
||||||
|
$(OBJ): | $(OBJ_DIRS)
|
||||||
|
$(OBJ_DIRS):
|
||||||
|
$(MKDIR) -p $@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) -rf $(BUILD)
|
||||||
|
|
||||||
|
.PHONY: all clean
|
@ -125,7 +125,6 @@ OBJ_MP += $(addprefix $(BUILD_MP)/,\
|
|||||||
\
|
\
|
||||||
lib/embed/abort_.o \
|
lib/embed/abort_.o \
|
||||||
lib/libc/string0.o \
|
lib/libc/string0.o \
|
||||||
lib/libc/string0.o \
|
|
||||||
lib/libm/acoshf.o \
|
lib/libm/acoshf.o \
|
||||||
lib/libm/asinfacosf.o \
|
lib/libm/asinfacosf.o \
|
||||||
lib/libm/asinhf.o \
|
lib/libm/asinhf.o \
|
||||||
|
1
micropython/bootloader/.gitignore
vendored
Normal file
1
micropython/bootloader/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
build/
|
@ -1,25 +0,0 @@
|
|||||||
#include STM32_HAL_H
|
|
||||||
#include "display.h"
|
|
||||||
|
|
||||||
// ### from main.c
|
|
||||||
|
|
||||||
void __attribute__((noreturn)) __fatal_error(const char *msg) {
|
|
||||||
for (volatile uint32_t delay = 0; delay < 10000000; delay++) {
|
|
||||||
}
|
|
||||||
display_print("FATAL ERROR:\n", -1);
|
|
||||||
display_print(msg, -1);
|
|
||||||
display_print("\n", -1);
|
|
||||||
for (;;) {
|
|
||||||
__WFI();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ### from stm32_it.c
|
|
||||||
|
|
||||||
void SysTick_Handler(void) {
|
|
||||||
extern uint32_t uwTick;
|
|
||||||
uwTick += 1;
|
|
||||||
SysTick->CTRL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// ###
|
|
@ -13,6 +13,24 @@
|
|||||||
|
|
||||||
void SystemClock_Config(void);
|
void SystemClock_Config(void);
|
||||||
|
|
||||||
|
void __attribute__((noreturn)) nlr_jump_fail(void *val) {
|
||||||
|
for (;;) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
void __attribute__((noreturn)) __fatal_error(const char *msg) {
|
||||||
|
for (volatile uint32_t delay = 0; delay < 10000000; delay++) {
|
||||||
|
}
|
||||||
|
display_print("FATAL ERROR:\n", -1);
|
||||||
|
display_print(msg, -1);
|
||||||
|
display_print("\n", -1);
|
||||||
|
for (;;) {
|
||||||
|
__WFI();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void mp_hal_stdout_tx_str(const char *str) {
|
||||||
|
}
|
||||||
|
|
||||||
void halt(void)
|
void halt(void)
|
||||||
{
|
{
|
||||||
BOOTLOADER_PRINTLN("HALT!");
|
BOOTLOADER_PRINTLN("HALT!");
|
||||||
|
Loading…
Reference in New Issue
Block a user