2018-05-24 09:15:20 -04:00
|
|
|
# Select the board to build for: if not given on the command line,
|
|
|
|
# then default to PYBV10.
|
|
|
|
BOARD ?= PYBV10
|
|
|
|
|
|
|
|
# If the build directory is not given, make it reflect the board name.
|
|
|
|
BUILD ?= build-$(BOARD)
|
|
|
|
|
2019-02-13 08:01:14 -05:00
|
|
|
# Allow the directory containing the board configuration to be specified
|
|
|
|
BOARD_DIR ?= $(abspath ../boards/$(BOARD))
|
|
|
|
|
2019-03-14 22:27:54 -04:00
|
|
|
# Set USE_MBOOT to 1 so that TEXT0_ADDR gets set properly for those boards
|
|
|
|
# that can be built with or without mboot.
|
|
|
|
USE_MBOOT ?= 1
|
|
|
|
|
2019-02-13 08:01:14 -05:00
|
|
|
# Sanity check that the board configuration directory exists
|
|
|
|
ifeq ($(wildcard $(BOARD_DIR)/.),)
|
|
|
|
$(error Invalid BOARD specified: $(BOARD_DIR))
|
|
|
|
endif
|
|
|
|
|
2018-05-24 09:15:20 -04:00
|
|
|
include ../../../py/mkenv.mk
|
2019-02-13 08:01:14 -05:00
|
|
|
include $(BOARD_DIR)/mpconfigboard.mk
|
2018-05-24 09:15:20 -04:00
|
|
|
|
|
|
|
MCU_SERIES_UPPER = $(shell echo $(MCU_SERIES) | tr '[:lower:]' '[:upper:]')
|
2019-07-08 21:35:47 -04:00
|
|
|
CMSIS_MCU_LOWER = $(shell echo $(CMSIS_MCU) | tr '[:upper:]' '[:lower:]')
|
|
|
|
|
|
|
|
CMSIS_DIR=$(TOP)/lib/stm32lib/CMSIS/STM32$(MCU_SERIES_UPPER)xx/Include
|
2018-05-24 09:15:20 -04:00
|
|
|
HAL_DIR=lib/stm32lib/STM32$(MCU_SERIES_UPPER)xx_HAL_Driver
|
|
|
|
USBDEV_DIR=usbdev
|
|
|
|
DFU=$(TOP)/tools/dfu.py
|
|
|
|
PYDFU ?= $(TOP)/tools/pydfu.py
|
|
|
|
DEVICE=0483:df11
|
|
|
|
STFLASH ?= st-flash
|
|
|
|
OPENOCD ?= openocd
|
|
|
|
OPENOCD_CONFIG ?= boards/openocd_stm32f4.cfg
|
2019-07-08 21:35:47 -04:00
|
|
|
STARTUP_FILE ?= lib/stm32lib/CMSIS/STM32$(MCU_SERIES_UPPER)xx/Source/Templates/gcc/startup_$(CMSIS_MCU_LOWER).o
|
2018-05-24 09:15:20 -04:00
|
|
|
|
2019-12-21 15:22:26 -05:00
|
|
|
CROSS_COMPILE ?= arm-none-eabi-
|
2018-05-24 09:15:20 -04:00
|
|
|
|
|
|
|
INC += -I.
|
|
|
|
INC += -I..
|
|
|
|
INC += -I$(TOP)
|
|
|
|
INC += -I$(BUILD)
|
|
|
|
INC += -I$(TOP)/lib/cmsis/inc
|
|
|
|
INC += -I$(CMSIS_DIR)/
|
|
|
|
INC += -I$(TOP)/$(HAL_DIR)/Inc
|
|
|
|
INC += -I../$(USBDEV_DIR)/core/inc -I../$(USBDEV_DIR)/class/inc
|
|
|
|
|
|
|
|
# Basic Cortex-M flags
|
|
|
|
CFLAGS_CORTEX_M = -mthumb
|
|
|
|
|
|
|
|
# Options for particular MCU series
|
|
|
|
CFLAGS_MCU_f4 = $(CFLAGS_CORTEX_M) -mtune=cortex-m4 -mcpu=cortex-m4
|
|
|
|
CFLAGS_MCU_f7 = $(CFLAGS_CORTEX_M) -mtune=cortex-m7 -mcpu=cortex-m7
|
2019-04-08 00:33:57 -04:00
|
|
|
CFLAGS_MCU_h7 = $(CFLAGS_CORTEX_M) -mtune=cortex-m7 -mcpu=cortex-m7
|
2018-05-24 09:15:20 -04:00
|
|
|
CFLAGS_MCU_l4 = $(CFLAGS_CORTEX_M) -mtune=cortex-m4 -mcpu=cortex-m4
|
|
|
|
|
|
|
|
CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -std=gnu99 -nostdlib $(CFLAGS_MOD) $(CFLAGS_EXTRA)
|
|
|
|
CFLAGS += -D$(CMSIS_MCU)
|
|
|
|
CFLAGS += $(CFLAGS_MCU_$(MCU_SERIES))
|
|
|
|
CFLAGS += $(COPT)
|
2019-02-13 08:01:14 -05:00
|
|
|
CFLAGS += -I$(BOARD_DIR)
|
2018-05-24 09:15:20 -04:00
|
|
|
CFLAGS += -DSTM32_HAL_H='<stm32$(MCU_SERIES)xx_hal.h>'
|
|
|
|
CFLAGS += -DBOARD_$(BOARD)
|
|
|
|
CFLAGS += -DAPPLICATION_ADDR=$(TEXT0_ADDR)
|
2019-02-14 22:31:48 -05:00
|
|
|
CFLAGS += -DFFCONF_H=\"ports/stm32/mboot/ffconf.h\"
|
2019-08-21 21:16:01 -04:00
|
|
|
CFLAGS += -DBUILDING_MBOOT=1
|
2018-05-24 09:15:20 -04:00
|
|
|
|
|
|
|
LDFLAGS = -nostdlib -L . -T stm32_generic.ld -Map=$(@:.elf=.map) --cref
|
|
|
|
LIBS = $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
|
|
|
|
|
|
|
|
# Remove uncalled code from the final image.
|
|
|
|
CFLAGS += -fdata-sections -ffunction-sections
|
|
|
|
LDFLAGS += --gc-sections
|
|
|
|
|
|
|
|
# Debugging/Optimization
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
|
|
CFLAGS += -g -DPENDSV_DEBUG
|
|
|
|
COPT = -O0
|
|
|
|
else
|
|
|
|
COPT += -Os -DNDEBUG
|
|
|
|
endif
|
|
|
|
|
2019-02-14 22:31:48 -05:00
|
|
|
SRC_LIB = \
|
|
|
|
lib/libc/string0.c \
|
|
|
|
lib/oofatfs/ff.c \
|
2019-03-05 23:52:36 -05:00
|
|
|
lib/oofatfs/ffunicode.c \
|
2019-02-14 22:31:48 -05:00
|
|
|
extmod/uzlib/crc32.c \
|
|
|
|
extmod/uzlib/adler32.c \
|
|
|
|
extmod/uzlib/tinflate.c \
|
|
|
|
extmod/uzlib/tinfgzip.c
|
2018-05-24 09:15:20 -04:00
|
|
|
|
|
|
|
SRC_C = \
|
|
|
|
main.c \
|
2019-02-14 22:31:48 -05:00
|
|
|
elem.c \
|
|
|
|
fsload.c \
|
|
|
|
diskio.c \
|
2018-05-24 09:15:20 -04:00
|
|
|
drivers/bus/softspi.c \
|
|
|
|
drivers/bus/softqspi.c \
|
|
|
|
drivers/memory/spiflash.c \
|
|
|
|
ports/stm32/i2cslave.c \
|
|
|
|
ports/stm32/qspi.c \
|
|
|
|
ports/stm32/flashbdev.c \
|
|
|
|
ports/stm32/spibdev.c \
|
|
|
|
ports/stm32/usbd_conf.c \
|
2019-02-13 08:01:14 -05:00
|
|
|
$(wildcard $(BOARD_DIR)/*.c)
|
2018-05-24 09:15:20 -04:00
|
|
|
|
|
|
|
SRC_O = \
|
2019-07-08 21:35:47 -04:00
|
|
|
$(STARTUP_FILE) \
|
2018-05-24 09:15:20 -04:00
|
|
|
ports/stm32/resethandler.o \
|
|
|
|
|
2018-09-05 01:21:43 -04:00
|
|
|
$(BUILD)/$(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_ll_usb.o: CFLAGS += -Wno-attributes
|
2018-05-24 09:15:20 -04:00
|
|
|
SRC_HAL = $(addprefix $(HAL_DIR)/Src/stm32$(MCU_SERIES)xx_,\
|
|
|
|
hal_cortex.c \
|
|
|
|
hal_flash.c \
|
|
|
|
hal_flash_ex.c \
|
|
|
|
hal_pcd.c \
|
|
|
|
hal_pcd_ex.c \
|
|
|
|
ll_usb.c \
|
|
|
|
)
|
|
|
|
|
|
|
|
SRC_USBDEV = $(addprefix ports/stm32/$(USBDEV_DIR)/,\
|
|
|
|
core/src/usbd_core.c \
|
|
|
|
core/src/usbd_ctlreq.c \
|
|
|
|
core/src/usbd_ioreq.c \
|
|
|
|
)
|
|
|
|
|
|
|
|
OBJ =
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_LIB:.c=.o))
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_O))
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_HAL:.c=.o))
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_USBDEV:.c=.o))
|
|
|
|
|
|
|
|
all: $(TOP)/lib/stm32lib/README.md $(BUILD)/firmware.dfu $(BUILD)/firmware.hex
|
|
|
|
|
|
|
|
# For convenience, automatically fetch required submodules if they don't exist
|
|
|
|
$(TOP)/lib/stm32lib/README.md:
|
|
|
|
$(ECHO) "stm32lib submodule not found, fetching it now..."
|
|
|
|
(cd $(TOP) && git submodule update --init lib/stm32lib)
|
|
|
|
|
2019-02-07 00:06:05 -05:00
|
|
|
.PHONY: deploy deploy-stlink
|
|
|
|
|
|
|
|
FLASH_ADDR = 0x08000000
|
2018-05-24 09:15:20 -04:00
|
|
|
|
|
|
|
deploy: $(BUILD)/firmware.dfu
|
|
|
|
$(ECHO) "Writing $< to the board"
|
|
|
|
$(Q)$(PYTHON) $(PYDFU) -u $<
|
|
|
|
|
2019-02-07 00:06:05 -05:00
|
|
|
deploy-stlink: $(BUILD)/firmware.dfu
|
|
|
|
$(ECHO) "Writing $< to the board via ST-LINK"
|
|
|
|
$(Q)$(STFLASH) write $(BUILD)/firmware.bin $(FLASH_ADDR)
|
2018-05-24 09:15:20 -04:00
|
|
|
|
|
|
|
$(BUILD)/firmware.dfu: $(BUILD)/firmware.elf
|
|
|
|
$(ECHO) "Create $@"
|
|
|
|
$(Q)$(OBJCOPY) -O binary -j .isr_vector -j .text -j .data $^ $(BUILD)/firmware.bin
|
|
|
|
$(Q)$(PYTHON) $(DFU) -b $(FLASH_ADDR):$(BUILD)/firmware.bin $@
|
|
|
|
|
|
|
|
$(BUILD)/firmware.hex: $(BUILD)/firmware.elf
|
|
|
|
$(ECHO) "Create $@"
|
|
|
|
$(Q)$(OBJCOPY) -O ihex $< $@
|
|
|
|
|
|
|
|
$(BUILD)/firmware.elf: $(OBJ)
|
|
|
|
$(ECHO) "LINK $@"
|
|
|
|
$(Q)$(LD) $(LDFLAGS) -o $@ $^ $(LIBS)
|
|
|
|
$(Q)$(SIZE) $@
|
|
|
|
|
2019-02-13 21:36:32 -05:00
|
|
|
#########################################
|
|
|
|
# Rules to generate header files
|
|
|
|
|
|
|
|
MAKE_PINS = ../boards/make-pins.py
|
|
|
|
PREFIX_FILE = ../boards/stm32f4xx_prefix.c
|
|
|
|
BOARD_PINS = $(BOARD_DIR)/pins.csv
|
|
|
|
HEADER_BUILD = $(BUILD)/genhdr
|
|
|
|
GEN_QSTRDEFS_GENERATED = $(HEADER_BUILD)/qstrdefs.generated.h
|
|
|
|
GEN_PINS_SRC = $(BUILD)/pins_$(BOARD).c
|
|
|
|
GEN_PINS_HDR = $(HEADER_BUILD)/pins.h
|
|
|
|
GEN_PINS_QSTR = $(HEADER_BUILD)/pins_qstr.h
|
|
|
|
GEN_PINS_AF_CONST = $(HEADER_BUILD)/pins_af_const.h
|
|
|
|
GEN_PINS_AF_DEFS = $(HEADER_BUILD)/pins_af_defs.h
|
|
|
|
GEN_PINS_AF_PY = $(BUILD)/pins_af.py
|
|
|
|
|
2019-07-08 21:46:47 -04:00
|
|
|
$(OBJ): $(GEN_QSTRDEFS_GENERATED) $(GEN_PINS_AF_DEFS)
|
2019-02-13 21:36:32 -05:00
|
|
|
|
|
|
|
$(HEADER_BUILD):
|
|
|
|
$(MKDIR) -p $(BUILD)/genhdr
|
|
|
|
|
|
|
|
$(GEN_QSTRDEFS_GENERATED): | $(HEADER_BUILD)
|
|
|
|
$(Q)echo "// empty" > $@
|
|
|
|
|
|
|
|
$(GEN_PINS_AF_DEFS): $(BOARD_PINS) $(MAKE_PINS) ../$(AF_FILE) $(PREFIX_FILE) | $(HEADER_BUILD)
|
|
|
|
$(ECHO) "GEN $@"
|
|
|
|
$(Q)$(PYTHON) $(MAKE_PINS) --board $(BOARD_PINS) --af ../$(AF_FILE) \
|
|
|
|
--prefix $(PREFIX_FILE) --hdr $(GEN_PINS_HDR) --qstr $(GEN_PINS_QSTR) \
|
|
|
|
--af-const $(GEN_PINS_AF_CONST) --af-defs $(GEN_PINS_AF_DEFS) \
|
|
|
|
--af-py $(GEN_PINS_AF_PY) > $(GEN_PINS_SRC)
|
|
|
|
|
2018-05-24 09:15:20 -04:00
|
|
|
#########################################
|
|
|
|
|
|
|
|
vpath %.S . $(TOP)
|
|
|
|
$(BUILD)/%.o: %.S
|
|
|
|
$(ECHO) "CC $<"
|
|
|
|
$(Q)$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
vpath %.s . $(TOP)
|
|
|
|
$(BUILD)/%.o: %.s
|
|
|
|
$(ECHO) "AS $<"
|
|
|
|
$(Q)$(AS) -o $@ $<
|
|
|
|
|
|
|
|
define compile_c
|
|
|
|
$(ECHO) "CC $<"
|
|
|
|
$(Q)$(CC) $(CFLAGS) -c -MD -o $@ $<
|
|
|
|
@# The following fixes the dependency file.
|
|
|
|
@# See http://make.paulandlesley.org/autodep.html for details.
|
|
|
|
@# Regex adjusted from the above to play better with Windows paths, etc.
|
|
|
|
@$(CP) $(@:.o=.d) $(@:.o=.P); \
|
|
|
|
$(SED) -e 's/#.*//' -e 's/^.*: *//' -e 's/ *\\$$//' \
|
|
|
|
-e '/^$$/ d' -e 's/$$/ :/' < $(@:.o=.d) >> $(@:.o=.P); \
|
|
|
|
$(RM) -f $(@:.o=.d)
|
|
|
|
endef
|
|
|
|
|
|
|
|
vpath %.c . $(TOP)
|
|
|
|
$(BUILD)/%.o: %.c
|
|
|
|
$(call compile_c)
|
|
|
|
|
|
|
|
# $(sort $(var)) removes duplicates
|
|
|
|
#
|
|
|
|
# The net effect of this, is it causes the objects to depend on the
|
|
|
|
# object directories (but only for existence), and the object directories
|
|
|
|
# will be created if they don't exist.
|
|
|
|
OBJ_DIRS = $(sort $(dir $(OBJ)))
|
|
|
|
$(OBJ): | $(OBJ_DIRS)
|
|
|
|
$(OBJ_DIRS):
|
|
|
|
$(MKDIR) -p $@
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) -rf $(BUILD) $(CLEAN_EXTRA)
|
|
|
|
.PHONY: clean
|
|
|
|
|
|
|
|
###########################################
|
|
|
|
|
|
|
|
-include $(OBJ:.o=.P)
|