############################################################# # Configuration ############################################################# # Allows users to create Makefile.local or ../Makefile.project with # configuration variables, so they don't have to be set on the command-line # every time. extra_configs := $(wildcard Makefile.local ../Makefile.project) ifneq ($(extra_configs),) $(info Obtaining additional make variables from $(extra_configs)) include $(extra_configs) endif # Select Legacy BSP or Freedom Metal BSP # Allowed values are 'legacy' and 'mee' BSP ?= legacy ifeq ($(BSP),legacy) BSP_SUBDIR ?= env BOARD ?= freedom-e300-hifive1 PROGRAM ?= demo_gpio LINK_TARGET ?= flash GDB_PORT ?= 3333 else # MEE BSP = mee BSP_SUBDIR ?= PROGRAM ?= hello BOARD ?= sifive-hifive1 endif # $(BSP) BOARD_ROOT ?= $(abspath .) PROGRAM_ROOT ?= $(abspath .) SRC_DIR = $(PROGRAM_ROOT)/software/$(PROGRAM) PROGRAM_ELF = $(SRC_DIR)/$(PROGRAM) PROGRAM_HEX = $(SRC_DIR)/$(PROGRAM).hex ############################################################# # BSP Loading ############################################################# # Finds the directory in which this BSP is located, ensuring that there is # exactly one. BSP_DIR := $(wildcard $(BOARD_ROOT)/bsp/$(BSP_SUBDIR)/$(BOARD)) ifeq ($(words $(BSP_DIR)),0) $(error Unable to find BSP for $(BOARD), expected to find either "bsp/$(BOARD)" or "bsp-addons/$(BOARD)") endif ifneq ($(words $(BSP_DIR)),1) $(error Found multiple BSPs for $(BOARD): "$(BSP_DIR)") endif ############################################################# # Standalone Script Include ############################################################# # The standalone script is included here because it needs $(SRC_DIR) and # $(BSP_DIR) to be set. # # The standalone Makefile handles the following tasks: # - Including $(BSP_DIR)/settings.mk and validating RISCV_ARCH, RISCV_ABI # - Setting the toolchain path with CROSS_COMPILE and RISCV_PATH # - Providing the software and $(PROGRAM_ELF) Make targets for the MEE include scripts/standalone.mk ############################################################# # Prints help message ############################################################# .PHONY: help help: @echo " SiFive Freedom E Software Development Kit " @echo " Makefile targets:" @echo "" @echo " software BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Build a software program to load with the" @echo " debugger." @echo "" @echo " mee BSP=mee [BOARD=$(BOARD)]" @echo " Build the MEE library for BOARD" @echo "" @echo " clean BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Clean compiled objects for a specified " @echo " software program." @echo "" @echo " upload BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Launch OpenOCD to flash your program to the" @echo " on-board Flash." @echo "" @echo " debug BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Launch OpenOCD and attach GDB to the running program." @echo "" @echo " standalone BSP=mee STANDALONE_DEST=/path/to/desired/location" @echo " [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Export a program for a single target into a standalone" @echo " project directory at STANDALONE_DEST." @echo "" @echo " For more information, read the accompanying README.md" .PHONY: clean clean: ############################################################# # Compiles an instance of the MEE targeted at $(BOARD) ############################################################# ifeq ($(BSP),mee) MEE_SOURCE_PATH ?= freedom-mee MEE_LDSCRIPT = $(BSP_DIR)/mee.lds MEE_HEADER = $(BSP_DIR)/mee.h .PHONY: mee mee: $(BSP_DIR)/install/stamp $(BSP_DIR)/build/Makefile: @rm -rf $(dir $@) @mkdir -p $(dir $@) cd $(dir $@) && \ CFLAGS="-march=$(RISCV_ARCH) -mabi=$(RISCV_ABI) -g -mcmodel=medany" \ $(abspath $(MEE_SOURCE_PATH)/configure) \ --host=$(CROSS_COMPILE) \ --prefix=$(abspath $(BSP_DIR)/install) \ --with-preconfigured \ --with-machine-name=$(BOARD) \ --with-machine-header=$(abspath $(MEE_HEADER)) \ --with-machine-ldscript=$(abspath $(MEE_LDSCRIPT)) \ --with-builtin-libgloss touch -c $@ $(BSP_DIR)/install/stamp: $(BSP_DIR)/build/Makefile $(MAKE) -C $(abspath $(BSP_DIR)/build) install date > $@ $(BSP_DIR)/install/lib/libriscv%.a: $(BSP_DIR)/install/stamp ;@: $(BSP_DIR)/install/lib/libmee.a: $(BSP_DIR)/install/lib/libriscv__mmachine__$(BOARD).a cp $< $@ $(BSP_DIR)/install/lib/libmee-gloss.a: $(BSP_DIR)/install/lib/libriscv__menv__mee.a cp $< $@ .PHONY: clean-mee clean-mee: rm -rf $(BSP_DIR)/install rm -rf $(BSP_DIR)/build clean: clean-mee endif mee_install: mee $(MAKE) -C $(MEE_SOURCE_PATH) install ############################################################# # elf2hex ############################################################# scripts/elf2hex/build/Makefile: scripts/elf2hex/configure @rm -rf $(dir $@) @mkdir -p $(dir $@) cd $(dir $@); \ $(abspath $<) \ --prefix=$(abspath $(dir $<))/install \ --target=$(CROSS_COMPILE) scripts/elf2hex/install/bin/$(CROSS_COMPILE)-elf2hex: scripts/elf2hex/build/Makefile $(MAKE) -C $(dir $<) install touch -c $@ .PHONY: clean-elf2hex clean-elf2hex: rm -rf scripts/elf2hex/build scripts/elf2hex/install clean: clean-elf2hex ############################################################# # Standalone Project Export ############################################################# ifeq ($(BSP),mee) ifeq ($(STANDALONE_DEST),) standalone: $(error Please provide STANDALONE_DEST to create a standalone project) else $(STANDALONE_DEST): $(STANDALONE_DEST)/%: mkdir -p $@ standalone: \ $(STANDALONE_DEST) \ $(STANDALONE_DEST)/bsp \ $(STANDALONE_DEST)/src \ $(BSP_DIR)/install/lib/libmee.a \ $(BSP_DIR)/install/lib/libmee-gloss.a \ $(SRC_DIR) \ scripts/standalone.mk # We have to use $(shell ls ...) here instead of $(wildcard) so that we # pick up $(BSP_DIR)/install cp -r $(addprefix $(BSP_DIR)/,$(filter-out build,$(shell ls $(BSP_DIR)))) $ $> $