2019-07-17 00:49:47 +01:00
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
.SUFFIXES:
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
ifeq ($(strip $(DEVKITPRO)),)
|
|
|
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
|
|
|
|
endif
|
|
|
|
|
|
|
|
TOPDIR ?= $(CURDIR)
|
|
|
|
include $(DEVKITPRO)/devkitA64/base_rules
|
|
|
|
|
2020-02-04 18:50:32 +00:00
|
|
|
export AMSLIBSDIR := $(TOPDIR)/../libraries
|
|
|
|
|
2019-07-17 00:49:47 +01:00
|
|
|
AMSBRANCH := $(shell git symbolic-ref --short HEAD)
|
|
|
|
AMSHASH = $(shell git rev-parse --short=16 HEAD)
|
|
|
|
AMSREV := $(AMSBRANCH)-$(shell git rev-parse --short HEAD)
|
|
|
|
|
|
|
|
ifneq (, $(strip $(shell git status --porcelain 2>/dev/null)))
|
|
|
|
AMSREV := $(AMSREV)-dirty
|
|
|
|
endif
|
|
|
|
|
2019-07-22 00:04:53 +01:00
|
|
|
ifeq ($(PLATFORM), qemu)
|
|
|
|
|
|
|
|
export PLATFORM := qemu
|
|
|
|
|
|
|
|
PLATFORM_SOURCES := src/platform/qemu
|
2020-01-31 18:42:16 +00:00
|
|
|
PLATFORM_DEFINES := -DPLATFORM_QEMU -DMAX_CORE=4 -DMAX_BCR=6 -DMAX_WCR=4
|
2019-07-22 00:04:53 +01:00
|
|
|
|
2019-08-01 23:47:48 +01:00
|
|
|
else ifeq ($(PLATFORM), tegra-t210-arm-tf)
|
|
|
|
|
|
|
|
export PLATFORM := tegra-t210-arm-tf
|
|
|
|
|
|
|
|
PLATFORM_SOURCES := src/platform/tegra
|
2020-01-31 18:42:16 +00:00
|
|
|
PLATFORM_DEFINES := -DPLATFORM_TEGRA -DPLATFORM_TEGRA_T210_ARM_TF -DMAX_CORE=4 -DMAX_BCR=6 -DMAX_WCR=4
|
2019-08-01 23:47:48 +01:00
|
|
|
|
2019-07-22 00:04:53 +01:00
|
|
|
else
|
|
|
|
|
2019-08-02 04:12:24 +01:00
|
|
|
export PLATFORM := tegra-t210-nintendo
|
2019-07-22 00:04:53 +01:00
|
|
|
|
|
|
|
PLATFORM_SOURCES := src/platform/tegra
|
2020-01-31 18:42:16 +00:00
|
|
|
PLATFORM_DEFINES := -DPLATFORM_TEGRA -D DPLATFORM_TEGRA_T210_NINTENDO -DMAX_CORE=4 -DMAX_BCR=6 -DMAX_WCR=4
|
2019-07-22 00:04:53 +01:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2019-07-17 00:49:47 +01:00
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# TARGET is the name of the output
|
|
|
|
# BUILD is the directory where object files & intermediate files will be placed
|
|
|
|
# SOURCES is a list of directories containing source code
|
|
|
|
# DATA is a list of directories containing data files
|
|
|
|
# INCLUDES is a list of directories containing header files
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
TARGET := $(notdir $(CURDIR))
|
|
|
|
BUILD := build
|
2020-02-04 18:50:32 +00:00
|
|
|
SOURCES := src src/libc src/platform src/gdb $(PLATFORM_SOURCES)
|
2019-07-17 00:49:47 +01:00
|
|
|
DATA := data
|
2020-02-04 18:50:32 +00:00
|
|
|
INCLUDES :=
|
2019-07-17 00:49:47 +01:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# options for code generation
|
|
|
|
#---------------------------------------------------------------------------------
|
2020-01-25 17:20:43 +00:00
|
|
|
# Note: -ffixed-x18 and -mgeneral-regs-only are very important and must be enabled
|
2020-01-31 18:42:16 +00:00
|
|
|
ARCH := -march=armv8-a -mtune=cortex-a57 -mgeneral-regs-only -ffixed-x18 -Wno-psabi
|
2020-02-04 18:50:32 +00:00
|
|
|
DEFINES := $(PLATFORM_DEFINES)
|
2019-07-17 00:49:47 +01:00
|
|
|
CFLAGS := \
|
|
|
|
-g \
|
2020-01-25 17:20:43 +00:00
|
|
|
-fmacro-prefix-map=$(TOPDIR)/src/= \
|
2019-07-17 00:49:47 +01:00
|
|
|
-Os \
|
|
|
|
-ffunction-sections \
|
|
|
|
-fdata-sections \
|
|
|
|
-fomit-frame-pointer \
|
2019-07-22 00:04:53 +01:00
|
|
|
-fno-asynchronous-unwind-tables \
|
|
|
|
-fno-unwind-tables \
|
2020-02-04 18:50:32 +00:00
|
|
|
-fno-stack-protector \
|
|
|
|
-fstrict-volatile-bitfields \
|
2019-07-17 00:49:47 +01:00
|
|
|
-Wall \
|
2020-02-01 16:28:31 +00:00
|
|
|
-Werror \
|
2019-08-05 01:21:18 +01:00
|
|
|
-Wno-main \
|
2019-07-17 00:49:47 +01:00
|
|
|
$(ARCH) $(DEFINES)
|
|
|
|
|
2020-02-04 18:50:32 +00:00
|
|
|
export CXXWRAPS := -Wl,--wrap,__cxa_pure_virtual \
|
|
|
|
-Wl,--wrap,__cxa_throw \
|
|
|
|
-Wl,--wrap,__cxa_rethrow \
|
|
|
|
-Wl,--wrap,__cxa_allocate_exception \
|
|
|
|
-Wl,--wrap,__cxa_free_exception \
|
|
|
|
-Wl,--wrap,__cxa_begin_catch \
|
|
|
|
-Wl,--wrap,__cxa_end_catch \
|
|
|
|
-Wl,--wrap,__cxa_call_unexpected \
|
|
|
|
-Wl,--wrap,__cxa_call_terminate \
|
|
|
|
-Wl,--wrap,__gxx_personality_v0 \
|
|
|
|
-Wl,--wrap,_Unwind_Resume \
|
|
|
|
-Wl,--wrap,_Unwind_Resume \
|
|
|
|
-Wl,--wrap,_ZSt19__throw_logic_errorPKc \
|
|
|
|
-Wl,--wrap,_ZSt20__throw_length_errorPKc \
|
|
|
|
-Wl,--wrap,_ZNSt11logic_errorC2EPKc
|
2019-07-17 00:49:47 +01:00
|
|
|
|
2020-02-04 18:50:32 +00:00
|
|
|
CFLAGS += $(INCLUDE)
|
|
|
|
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++2a
|
|
|
|
CFLAGS += -std=gnu11
|
2019-07-17 00:49:47 +01:00
|
|
|
|
2020-01-31 18:42:16 +00:00
|
|
|
ASFLAGS := -g $(ARCH) $(DEFINES)
|
2020-02-04 18:50:32 +00:00
|
|
|
LDFLAGS = -specs=$(TOPDIR)/linker.specs -nostartfiles -nostdlib -g $(ARCH) $(CXXWRAPS) -Wl,-Map,$(notdir $*.map)
|
2019-07-17 00:49:47 +01:00
|
|
|
|
2019-08-07 20:38:40 +01:00
|
|
|
LIBS := -lgcc
|
2019-07-17 00:49:47 +01:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# list of directories containing libraries, this must be the top level containing
|
|
|
|
# include and lib
|
|
|
|
#---------------------------------------------------------------------------------
|
2020-02-04 18:50:32 +00:00
|
|
|
LIBDIRS := $(AMSLIBSDIR)/libvapours
|
2019-07-17 00:49:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# no real need to edit anything past this point unless you need to add additional
|
|
|
|
# rules for different file extensions
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
|
|
|
|
|
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
|
|
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
|
|
|
|
|
|
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
|
|
|
|
|
|
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
|
|
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
|
|
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
|
|
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# use CXX for linking C++ projects, CC for standard C
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifeq ($(strip $(CPPFILES)),)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export LD := $(CC)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
else
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export LD := $(CXX)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export OFILES_BIN := $(addsuffix .o,$(BINFILES))
|
|
|
|
export OFILES_SRC := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
|
|
|
|
export OFILES := $(OFILES_BIN) $(OFILES_SRC)
|
|
|
|
export HFILES_BIN := $(addsuffix .h,$(subst .,_,$(BINFILES)))
|
|
|
|
|
|
|
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|
|
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
|
|
-I$(CURDIR)/$(BUILD)
|
|
|
|
|
|
|
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
|
|
|
|
|
2019-07-22 00:04:53 +01:00
|
|
|
.PHONY: $(BUILD) clean all qemu qemudbg
|
2019-07-17 00:49:47 +01:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
all: $(BUILD)
|
|
|
|
|
2019-07-22 00:04:53 +01:00
|
|
|
ifeq ($(PLATFORM), qemu)
|
2019-08-05 03:46:11 +01:00
|
|
|
|
2019-08-05 22:49:25 +01:00
|
|
|
export QEMU := qemu-system-aarch64
|
2020-01-17 22:10:26 +00:00
|
|
|
#export QEMU := ~/qemu/aarch64-softmmu/qemu-system-aarch64
|
2019-08-05 03:46:11 +01:00
|
|
|
|
2020-01-09 19:24:05 +00:00
|
|
|
QEMUFLAGS := -nographic -machine virt,virtualization=on,accel=tcg,gic-version=2 -cpu cortex-a57 -smp 4 -m 1024\
|
2020-01-10 19:45:31 +00:00
|
|
|
-kernel thermosphere.elf -d unimp,guest_errors -semihosting-config enable,target=native\
|
2020-02-01 15:45:57 +00:00
|
|
|
-chardev socket,id=uart,port=2222,host=0.0.0.0,server,nowait -chardev stdio,id=test -serial chardev:uart\
|
2020-01-31 23:12:36 +00:00
|
|
|
-monitor tcp:localhost:3333,server,nowait
|
2019-07-22 00:04:53 +01:00
|
|
|
|
|
|
|
qemu: all
|
2019-08-05 03:46:11 +01:00
|
|
|
@$(QEMU) $(QEMUFLAGS)
|
2019-07-22 00:04:53 +01:00
|
|
|
|
|
|
|
qemudbg: all
|
2019-08-05 03:46:11 +01:00
|
|
|
@$(QEMU) $(QEMUFLAGS) -s -S
|
2019-07-22 00:04:53 +01:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2019-07-17 00:49:47 +01:00
|
|
|
$(BUILD):
|
|
|
|
@[ -d $@ ] || mkdir -p $@
|
|
|
|
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
clean:
|
|
|
|
@echo clean ...
|
2020-01-09 02:50:35 +00:00
|
|
|
@rm -fr $(BUILD) $(TARGET).bin $(TARGET).elf
|
2019-07-17 00:49:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
else
|
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
DEPENDS := $(OFILES:.o=.d)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# main targets
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
all : $(OUTPUT).bin
|
|
|
|
|
|
|
|
$(OUTPUT).bin : $(OUTPUT).elf
|
|
|
|
$(OBJCOPY) -S -O binary $< $@
|
|
|
|
@echo built ... $(notdir $@)
|
|
|
|
|
|
|
|
$(OUTPUT).elf : $(OFILES)
|
|
|
|
|
|
|
|
%.elf:
|
|
|
|
@echo linking $(notdir $@)
|
|
|
|
$(LD) $(LDFLAGS) $(OFILES) $(LIBPATHS) $(LIBS) -o $@
|
|
|
|
@$(NM) -CSn $@ > $(notdir $*.lst)
|
|
|
|
|
|
|
|
$(OFILES_SRC) : $(HFILES_BIN)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# you need a rule like this for each extension you use as binary data
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
%.bin.o %_bin.h: %.bin
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
@echo $(notdir $<)
|
|
|
|
@$(bin2o)
|
|
|
|
|
|
|
|
-include $(DEPENDS)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------------
|
|
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------------
|