trezor-core/Makefile

208 lines
7.1 KiB
Makefile
Raw Permalink Normal View History

2016-05-11 05:39:28 -07:00
.PHONY: vendor
JOBS = 4
MAKE = make -j $(JOBS)
2017-08-07 03:04:11 -07:00
SCONS = scons -Q -j $(JOBS)
BUILD_DIR = build
BOARDLOADER_BUILD_DIR = $(BUILD_DIR)/boardloader
BOOTLOADER_BUILD_DIR = $(BUILD_DIR)/bootloader
PRODTEST_BUILD_DIR = $(BUILD_DIR)/prodtest
REFLASH_BUILD_DIR = $(BUILD_DIR)/reflash
FIRMWARE_BUILD_DIR = $(BUILD_DIR)/firmware
UNIX_BUILD_DIR = $(BUILD_DIR)/unix
2016-10-12 09:29:01 -07:00
2017-08-08 05:23:34 -07:00
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
UNIX_PORT_OPTS ?= TREZOR_X86=0
else
UNIX_PORT_OPTS ?= TREZOR_X86=1
endif
CROSS_PORT_OPTS ?=
2017-08-08 05:23:34 -07:00
ifeq ($(DISPLAY_ILI9341V), 1)
CFLAGS += -DDISPLAY_ILI9341V=1
CFLAGS += -DDISPLAY_ST7789V=0
endif
2017-10-12 03:17:04 -07:00
PRODUCTION ?= 0
STLINK_VER ?= v2
OPENOCD = openocd -f interface/stlink-$(STLINK_VER).cfg -c "transport select hla_swd" -f target/stm32f4x.cfg
2017-09-26 06:10:56 -07:00
BOARDLOADER_START = 0x08000000
BOOTLOADER_START = 0x08020000
FIRMWARE_START = 0x08040000
PRODTEST_START = 0x08040000
BOARDLOADER_MAXSIZE = 49152
BOOTLOADER_MAXSIZE = 131072
FIRMWARE_MAXSIZE = 786432
GITREV=$(shell git describe --always --dirty)
CFLAGS += -DGITREV=$(GITREV)
2017-03-25 06:46:38 -07:00
## help commands:
help: ## show this help
2017-03-25 06:46:38 -07:00
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {printf "\033[36m make %-20s\033[0m %s\n", $$1, $$2} /^##(.*)/ {printf "\033[33m%s\n", substr($$0, 4)}' $(MAKEFILE_LIST)
## dependencies commands:
2016-05-11 05:39:28 -07:00
vendor: ## update git submodules
git submodule update --init --recursive --force
res: ## update resources
./tools/res_collect
2017-03-25 06:46:38 -07:00
## emulator commands:
2017-03-20 09:45:40 -07:00
run: ## run unix port
cd src ; ../$(UNIX_BUILD_DIR)/micropython
2017-03-20 09:45:40 -07:00
emu: ## run emulator
./emu.sh
2017-03-25 06:46:38 -07:00
## test commands:
2017-03-20 09:45:40 -07:00
test: ## run unit tests
cd tests ; ./run_tests.sh
test_emu: ## run selected device tests from python-trezor
cd tests ; ./run_tests_device_emu.sh
2017-03-20 09:45:40 -07:00
2017-12-15 17:11:26 -08:00
pylint: ## run pylint on application sources and tests
pylint -E $(shell find src -name *.py)
2017-12-15 17:11:26 -08:00
pylint -E $(shell find tests -name *.py)
2017-06-07 10:06:26 -07:00
2017-12-15 17:11:26 -08:00
style: ## run code style check on application sources and tests
flake8 $(shell find src -name *.py)
2017-12-15 17:11:26 -08:00
flake8 $(shell find tests -name *.py)
2017-06-13 10:35:14 -07:00
2017-03-25 06:46:38 -07:00
## build commands:
2018-02-02 11:06:25 -08:00
build: build_boardloader build_bootloader build_firmware build_prodtest build_unix ## build all
2017-02-20 02:36:07 -08:00
2017-04-10 10:11:44 -07:00
build_boardloader: ## build boardloader
$(SCONS) CFLAGS="$(CFLAGS)" PRODUCTION="$(PRODUCTION)" $(BOARDLOADER_BUILD_DIR)/boardloader.bin
2017-03-18 04:02:39 -07:00
2017-04-10 10:24:21 -07:00
build_bootloader: ## build bootloader
$(SCONS) CFLAGS="$(CFLAGS)" PRODUCTION="$(PRODUCTION)" $(BOOTLOADER_BUILD_DIR)/bootloader.bin
2017-03-20 07:41:21 -07:00
2017-10-24 09:16:36 -07:00
build_prodtest: ## build production test firmware
$(SCONS) CFLAGS="$(CFLAGS)" PRODUCTION="$(PRODUCTION)" $(PRODTEST_BUILD_DIR)/prodtest.bin
2017-10-24 09:16:36 -07:00
build_reflash: ## build reflash firmware + reflash image
$(SCONS) CFLAGS="$(CFLAGS)" PRODUCTION="$(PRODUCTION)" $(REFLASH_BUILD_DIR)/reflash.bin
dd if=build/boardloader/boardloader.bin of=$(REFLASH_BUILD_DIR)/sdimage.bin bs=1 seek=0
dd if=build/bootloader/bootloader.bin of=$(REFLASH_BUILD_DIR)/sdimage.bin bs=1 seek=49152
build_firmware: res build_cross ## build firmware with frozen modules
$(SCONS) CFLAGS="$(CFLAGS)" PRODUCTION="$(PRODUCTION)" $(FIRMWARE_BUILD_DIR)/firmware.bin
2018-01-02 10:59:40 -08:00
build_unix: res ## build unix port
$(SCONS) CFLAGS="$(CFLAGS)" $(UNIX_BUILD_DIR)/micropython $(UNIX_PORT_OPTS)
2018-01-02 10:59:40 -08:00
build_unix_noui: res ## build unix port without UI support
$(SCONS) CFLAGS="$(CFLAGS)" $(UNIX_BUILD_DIR)/micropython $(UNIX_PORT_OPTS) TREZOR_NOUI=1
2017-08-07 03:31:42 -07:00
build_cross: ## build mpy-cross port
2017-02-24 04:19:00 -08:00
$(MAKE) -C vendor/micropython/mpy-cross $(CROSS_PORT_OPTS)
2017-03-25 06:46:38 -07:00
## clean commands:
2017-10-24 09:16:36 -07:00
clean: clean_boardloader clean_bootloader clean_prodtest clean_firmware clean_unix clean_cross ## clean all
2017-04-10 10:11:44 -07:00
clean_boardloader: ## clean boardloader build
rm -rf $(BOARDLOADER_BUILD_DIR)
2017-03-20 09:45:40 -07:00
2017-04-10 10:24:21 -07:00
clean_bootloader: ## clean bootloader build
rm -rf $(BOOTLOADER_BUILD_DIR)
2017-03-20 09:45:40 -07:00
2017-10-24 09:16:36 -07:00
clean_prodtest: ## clean prodtest build
rm -rf $(PRODTEST_BUILD_DIR)
2017-10-24 09:16:36 -07:00
clean_reflash: ## clean reflash build
rm -rf $(REFLASH_BUILD_DIR)
clean_firmware: ## clean firmware build
rm -rf $(FIRMWARE_BUILD_DIR)
2016-04-11 08:55:10 -07:00
clean_unix: ## clean unix build
rm -rf $(UNIX_BUILD_DIR)
2016-04-11 08:55:10 -07:00
clean_cross: ## clean mpy-cross build
2017-02-24 04:19:00 -08:00
$(MAKE) -C vendor/micropython/mpy-cross clean $(CROSS_PORT_OPTS)
2017-03-25 06:46:38 -07:00
## flash commands:
2017-09-26 06:10:56 -07:00
flash: flash_boardloader flash_bootloader flash_firmware ## flash everything using OpenOCD
flash_boardloader: $(BOARDLOADER_BUILD_DIR)/boardloader.bin ## flash boardloader using OpenOCD
$(OPENOCD) -c "init; reset halt; flash write_image erase $< $(BOARDLOADER_START); exit"
2017-09-26 06:10:56 -07:00
flash_bootloader: $(BOOTLOADER_BUILD_DIR)/bootloader.bin ## flash bootloader using OpenOCD
$(OPENOCD) -c "init; reset halt; flash write_image erase $< $(BOOTLOADER_START); exit"
2017-10-26 15:41:22 -07:00
flash_prodtest: $(PRODTEST_BUILD_DIR)/prodtest.bin ## flash prodtest using OpenOCD
$(OPENOCD) -c "init; reset halt; flash write_image erase $< $(FIRMWARE_START); exit"
2017-09-26 06:10:56 -07:00
flash_firmware: $(FIRMWARE_BUILD_DIR)/firmware.bin ## flash firmware using OpenOCD
$(OPENOCD) -c "init; reset halt; flash write_image erase $< $(FIRMWARE_START); exit"
flash_combine: $(PRODTEST_BUILD_DIR)/combined.bin ## flash combined using OpenOCD
$(OPENOCD) -c "init; reset halt; flash write_image erase $< $(BOARDLOADER_START); exit"
2017-09-26 06:10:56 -07:00
flash_erase: ## erase all sectors in flash bank 0
$(OPENOCD) -c "init; reset halt; flash info 0; flash erase_sector 0 0 last; flash erase_check 0; exit"
2017-03-25 06:46:38 -07:00
## openocd debug commands:
openocd: ## start openocd which connects to the device
2017-09-26 06:10:56 -07:00
$(OPENOCD)
openocd_reset: ## cause a system reset using OpenOCD
$(OPENOCD) -c "init; reset; exit"
2017-09-28 15:04:11 -07:00
GDB = arm-none-eabi-gdb --nx -ex 'set remotetimeout unlimited' -ex 'set confirm off' -ex 'target remote 127.0.0.1:3333' -ex 'monitor reset halt'
gdb_boardloader: $(BOARDLOADER_BUILD_DIR)/boardloader.elf ## start remote gdb session to openocd with boardloader symbols
$(GDB) $<
gdb_bootloader: $(BOOTLOADER_BUILD_DIR)/bootloader.elf ## start remote gdb session to openocd with bootloader symbols
$(GDB) $<
2017-10-29 07:45:23 -07:00
gdb_prodtest: $(PRODTEST_BUILD_DIR)/prodtest.elf ## start remote gdb session to openocd with prodtest symbols
$(GDB) $<
2017-09-28 15:04:11 -07:00
gdb_firmware: $(FIRMWARE_BUILD_DIR)/firmware.elf ## start remote gdb session to openocd with firmware symbols
$(GDB) $<
2017-04-10 07:40:41 -07:00
## misc commands:
binctl: ## print info about binary files
./tools/binctl $(BOOTLOADER_BUILD_DIR)/bootloader.bin
./tools/binctl $(FIRMWARE_BUILD_DIR)/firmware.bin
2017-04-10 07:40:41 -07:00
bloaty: ## run bloaty size profiler
bloaty -d symbols -n 0 -s file $(FIRMWARE_BUILD_DIR)/firmware.elf | less
bloaty -d compileunits -n 0 -s file $(FIRMWARE_BUILD_DIR)/firmware.elf | less
sizecheck: ## check sizes of binary files
2017-10-30 06:07:52 -07:00
test $(BOARDLOADER_MAXSIZE) -ge $(shell wc -c < $(BOARDLOADER_BUILD_DIR)/boardloader.bin)
test $(BOOTLOADER_MAXSIZE) -ge $(shell wc -c < $(BOOTLOADER_BUILD_DIR)/bootloader.bin)
test $(FIRMWARE_MAXSIZE) -ge $(shell wc -c < $(FIRMWARE_BUILD_DIR)/firmware.bin)
combine: ## combine boardloader + bootloader + prodtest into one combined image
./tools/combine_firmware \
$(BOARDLOADER_START) $(BOARDLOADER_BUILD_DIR)/boardloader.bin \
$(BOOTLOADER_START) $(BOOTLOADER_BUILD_DIR)/bootloader.bin \
$(PRODTEST_START) $(PRODTEST_BUILD_DIR)/prodtest.bin \
> $(PRODTEST_BUILD_DIR)/combined.bin \
2017-10-16 09:03:04 -07:00
upload: ## upload firmware using trezorctl
trezorctl firmware_update -f $(FIRMWARE_BUILD_DIR)/firmware.bin
2017-10-26 15:41:22 -07:00
upload_prodtest: ## upload prodtest using trezorctl
trezorctl firmware_update -f $(PRODTEST_BUILD_DIR)/prodtest.bin