OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [sw/] [example/] [demo_freeRTOS/] [makefile] - Blame information for rev 22

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 22 zero_gravi
#################################################################################################
2
# << NEORV32 - Application Makefile >>                                                          #
3
# ********************************************************************************************* #
4
# Make sure to add the riscv GCC compiler's bin folder to your PATH environment variable.       #
5
# ********************************************************************************************* #
6
# BSD 3-Clause License                                                                          #
7
#                                                                                               #
8
# Copyright (c) 2020, Stephan Nolting. All rights reserved.                                     #
9
#                                                                                               #
10
# Redistribution and use in source and binary forms, with or without modification, are          #
11
# permitted provided that the following conditions are met:                                     #
12
#                                                                                               #
13
# 1. Redistributions of source code must retain the above copyright notice, this list of        #
14
#    conditions and the following disclaimer.                                                   #
15
#                                                                                               #
16
# 2. Redistributions in binary form must reproduce the above copyright notice, this list of     #
17
#    conditions and the following disclaimer in the documentation and/or other materials        #
18
#    provided with the distribution.                                                            #
19
#                                                                                               #
20
# 3. Neither the name of the copyright holder nor the names of its contributors may be used to  #
21
#    endorse or promote products derived from this software without specific prior written      #
22
#    permission.                                                                                #
23
#                                                                                               #
24
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS   #
25
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF               #
26
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE    #
27
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,     #
28
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE #
29
# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED    #
30
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     #
31
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED  #
32
# OF THE POSSIBILITY OF SUCH DAMAGE.                                                            #
33
# ********************************************************************************************* #
34
# The NEORV32 Processor - https://github.com/stnolting/neorv32              (c) Stephan Nolting #
35
#################################################################################################
36
 
37
 
38
# *****************************************************************************
39
# USER CONFIGURATION
40
# *****************************************************************************
41
# User's application sources (*.c, *.cpp, *.s, *.S); add additional files here
42
APP_SRC ?= $(wildcard ./*.c) $(wildcard ./*.s) $(wildcard ./*.cpp) $(wildcard ./*.S)
43
 
44
# User's application include folders (don't forget the '-I' before each entry)
45
APP_INC ?= -I .
46
# User's application include folders - for assembly files only (don't forget the '-I' before each entry)
47
ASM_INC ?= -I .
48
 
49
# Optimization
50
EFFORT ?= -Os
51
 
52
# Compiler toolchain
53
RISCV_TOOLCHAIN ?= riscv32-unknown-elf
54
 
55
# CPU architecture and ABI
56
MARCH ?= -march=rv32i
57
MABI  ?= -mabi=ilp32
58
 
59
# User flags for additional configuration (will be added to compiler flags)
60
USER_FLAGS ?=
61
 
62
# Relative or absolute path to the NEORV32 home folder
63
NEORV32_HOME ?= ../../..
64
# *****************************************************************************
65
 
66
 
67
 
68
# -----------------------------------------------------------------------------
69
# FreeRTOS
70
# -----------------------------------------------------------------------------
71
ifneq (,$(findstring RUN_FREERTOS_DEMO,$(USER_FLAGS)))
72
# FreeRTOS home folder (adapt this!)
73
FREERTOS_HOME ?= /mnt/n/Projects/FreeRTOS/FreeRTOS
74
 
75
# Application
76
APP_SRC += blinky_demo/main_blinky.c
77
 
78
# FreeRTOS core
79
APP_SRC += $(wildcard $(FREERTOS_HOME)/Source/*.c)
80
APP_SRC += $(wildcard $(FREERTOS_HOME)/Source/portable/MemMang/heap_1.c)
81
 
82
APP_INC += -I $(FREERTOS_HOME)/Source/include
83
 
84
# FreeRTOS RISC-V specific
85
APP_SRC += $(wildcard $(FREERTOS_HOME)/Source/portable/GCC/RISC-V/*.c)
86
APP_SRC += $(FREERTOS_HOME)/Source/portable/GCC/RISC-V/portASM.S
87
 
88
APP_INC += -I $(FREERTOS_HOME)/Source/portable/GCC/RISC-V
89
 
90
# NEORV32 specific
91
ASM_INC += -DportasmHANDLE_INTERRUPT=SystemIrqHandler
92
 
93
APP_INC += -I chip_specific_extensions/neorv32
94
 
95
ASM_INC += -I chip_specific_extensions/neorv32
96
endif
97
 
98
 
99
# -----------------------------------------------------------------------------
100
# NEORV32 framework
101
# -----------------------------------------------------------------------------
102
# Path to NEORV32 linker script and startup file
103
NEORV32_COM_PATH = $(NEORV32_HOME)/sw/common
104
# Path to main NEORV32 library include files
105
NEORV32_INC_PATH = $(NEORV32_HOME)/sw/lib/include
106
# Path to main NEORV32 library source files
107
NEORV32_SRC_PATH = $(NEORV32_HOME)/sw/lib/source
108
# Path to NEORV32 executable generator
109
NEORV32_EXG_PATH = $(NEORV32_HOME)/sw/image_gen
110
# Path to NEORV32 core rtl folder
111
NEORV32_RTL_PATH = $(NEORV32_HOME)/rtl/core
112
# Marker file to check for NEORV32 home folder
113
NEORV32_HOME_MARKER = $(NEORV32_INC_PATH)/neorv32.h
114
 
115
# Core libraries (peripheral and CPU drivers)
116
CORE_SRC  = $(wildcard $(NEORV32_SRC_PATH)/*.c)
117
# Application start-up code
118
CORE_SRC += $(NEORV32_COM_PATH)/crt0.S
119
 
120
# Linker script
121
LD_SCRIPT = $(NEORV32_COM_PATH)/neorv32.ld
122
 
123
# Main output files
124
APP_EXE  = neorv32_exe.bin
125
APP_ASM  = main.asm
126
APP_IMG  = neorv32_application_image.vhd
127
BOOT_IMG = neorv32_bootloader_image.vhd
128
 
129
 
130
# -----------------------------------------------------------------------------
131
# Sources and objects
132
# -----------------------------------------------------------------------------
133
# Define all sources
134
SRC  = $(APP_SRC)
135
SRC += $(CORE_SRC)
136
 
137
# Define all object files
138
OBJ = $(SRC:%=%.o)
139
 
140
 
141
# -----------------------------------------------------------------------------
142
# Tools and flags
143
# -----------------------------------------------------------------------------
144
# Compiler tools
145
CC      = $(RISCV_TOOLCHAIN)-gcc
146
OBJDUMP = $(RISCV_TOOLCHAIN)-objdump
147
OBJCOPY = $(RISCV_TOOLCHAIN)-objcopy
148
SIZE    = $(RISCV_TOOLCHAIN)-size
149
 
150
# Host native compiler
151
CC_X86 = gcc -Wall -O -g
152
 
153
# NEORV32 executable image generator
154
IMAGE_GEN = $(NEORV32_EXG_PATH)/image_gen
155
 
156
# Compiler & linker flags
157
CC_OPTS  = $(MARCH) $(MABI) $(EFFORT) -Wall -ffunction-sections -fdata-sections -nostartfiles
158
CC_OPTS += -Wl,--gc-sections -lm -lc -lgcc -lc
159
CC_OPTS += $(USER_FLAGS)
160
 
161
 
162
# -----------------------------------------------------------------------------
163
# Application output definitions
164
# -----------------------------------------------------------------------------
165
.PHONY: check info help elf_info clean clean_all bootloader
166
.DEFAULT_GOAL := help
167
 
168
# 'compile' is still here for compatibility
169
exe:     $(APP_ASM) $(APP_EXE)
170
compile: $(APP_ASM) $(APP_EXE)
171
install: $(APP_ASM) $(APP_IMG)
172
all:     $(APP_ASM) $(APP_EXE) $(APP_IMG)
173
 
174
# Check if making bootloader
175
# Use different base address and legth for instruction memory/"rom" (BOOTMEM instead of IMEM)
176
target bootloader: CC_OPTS += -Wl,--defsym=make_bootloader=1
177
 
178
 
179
# -----------------------------------------------------------------------------
180
# Image generator targets
181
# -----------------------------------------------------------------------------
182
# install/compile tools
183
$(IMAGE_GEN): $(NEORV32_EXG_PATH)/image_gen.cpp
184
        @echo Compiling $(IMAGE_GEN)
185
        @$(CC_X86) $< -o $(IMAGE_GEN)
186
 
187
 
188
# -----------------------------------------------------------------------------
189
# General targets: Assemble, compile, link, dump
190
# -----------------------------------------------------------------------------
191
# Compile app *.s sources (assembly)
192
%.s.o: %.s
193
        @$(CC) -c $(CC_OPTS) -I $(NEORV32_INC_PATH) $(ASM_INC) $< -o $@
194
 
195
# Compile app *.S sources (assembly + C pre-processor)
196
%.S.o: %.S
197
        @$(CC) -c $(CC_OPTS) -I $(NEORV32_INC_PATH) $(ASM_INC) $< -o $@
198
 
199
# Compile app *.c sources
200
%.c.o: %.c
201
        @$(CC) -c $(CC_OPTS) -I $(NEORV32_INC_PATH) $(APP_INC) $< -o $@
202
 
203
# Compile app *.cpp sources
204
%.cpp.o: %.cpp
205
        @$(CC) -c $(CC_OPTS) -I $(NEORV32_INC_PATH) $(APP_INC) $< -o $@
206
 
207
# Link object files and show memory utilization
208
main.elf: $(OBJ)
209
        @$(CC) $(CC_OPTS) -T $(LD_SCRIPT) $(OBJ) -o $@
210
        @echo "Memory utilization:"
211
        @$(SIZE) main.elf
212
 
213
# Assembly listing file (for debugging)
214
$(APP_ASM): main.elf
215
        @$(OBJDUMP) -D -S -z  $< > $@
216
 
217
# Generate final executable from .text + .rodata + .data (in THIS order!)
218
main.bin: main.elf $(APP_ASM)
219
        @$(OBJCOPY) -I elf32-little $< -j .text   -O binary text.bin
220
        @$(OBJCOPY) -I elf32-little $< -j .rodata -O binary rodata.bin
221
        @$(OBJCOPY) -I elf32-little $< -j .data   -O binary data.bin
222
        @cat text.bin rodata.bin data.bin > $@
223
        @rm -f text.bin rodata.bin data.bin
224
 
225
 
226
# -----------------------------------------------------------------------------
227
# Application targets: Generate binary executable, install (as VHDL file)
228
# -----------------------------------------------------------------------------
229
# Generate NEORV32 executable image for upload via bootloader
230
$(APP_EXE): main.bin $(IMAGE_GEN)
231
        @set -e
232
        @$(IMAGE_GEN) -app_bin $< $@ $(shell basename $(CURDIR))
233
        @echo "Executable ($(APP_EXE)) size in bytes:"
234
        @wc -c < $(APP_EXE)
235
 
236
# Generate NEORV32 executable VHDL boot image
237
$(APP_IMG): main.bin $(IMAGE_GEN)
238
        @set -e
239
        @$(IMAGE_GEN) -app_img $< $@ $(shell basename $(CURDIR))
240
        @echo "Installing application image to $(NEORV32_RTL_PATH)/$(APP_IMG)"
241
        @cp $(APP_IMG) $(NEORV32_RTL_PATH)/.
242
 
243
 
244
# -----------------------------------------------------------------------------
245
# Bootloader targets
246
# -----------------------------------------------------------------------------
247
# Create and install bootloader VHDL init image
248
$(BOOT_IMG): main.bin $(IMAGE_GEN)
249
        @set -e
250
        @$(IMAGE_GEN) -bld_img $< $(BOOT_IMG) $(shell basename $(CURDIR))
251
        @echo "Installing bootloader image to $(NEORV32_RTL_PATH)/$(BOOT_IMG)"
252
        @cp $(BOOT_IMG) $(NEORV32_RTL_PATH)/.
253
 
254
# Just an alias that
255
bootloader: $(BOOT_IMG)
256
 
257
 
258
# -----------------------------------------------------------------------------
259
# Check toolchain
260
# -----------------------------------------------------------------------------
261
check: $(IMAGE_GEN)
262
        @echo "---------------- Check: NEORV32_HOME folder ----------------"
263
ifneq ($(shell [ -e $(NEORV32_HOME_MARKER) ] && echo 1 || echo 0 ), 1)
264
$(error NEORV32_HOME folder not found!)
265
endif
266
        @echo "NEORV32_HOME: $(NEORV32_HOME)"
267
        @echo "---------------- Check: $(CC) ----------------"
268
        @$(CC) -v
269
        @echo "---------------- Check: $(OBJDUMP) ----------------"
270
        @$(OBJDUMP) -V
271
        @echo "---------------- Check: $(OBJCOPY) ----------------"
272
        @$(OBJCOPY) -V
273
        @echo "---------------- Check: $(SIZE) ----------------"
274
        @$(SIZE) -V
275
        @echo "---------------- Check: NEORV32 image_gen ----------------"
276
        @$(IMAGE_GEN) -help
277
        @echo "---------------- Check: Native GCC ----------------"
278
        @$(CC_X86) -v
279
        @echo
280
        @echo "Toolchain check OK"
281
 
282
 
283
# -----------------------------------------------------------------------------
284
# Show configuration
285
# -----------------------------------------------------------------------------
286
info:
287
        @echo "---------------- Info: Project ----------------"
288
        @echo "Project folder:        $(shell basename $(CURDIR))"
289
        @echo "Source files:          $(APP_SRC)"
290
        @echo "Include folder(s):     $(APP_INC)"
291
        @echo "ASM include folder(s): $(ASM_INC)"
292
        @echo "---------------- Info: NEORV32 ----------------"
293
        @echo "NEORV32 home folder (NEORV32_HOME): $(NEORV32_HOME)"
294
        @echo "IMAGE_GEN: $(IMAGE_GEN)"
295
        @echo "Core source files:"
296
        @echo "$(CORE_SRC)"
297
        @echo "Core include folder:"
298
        @echo "$(NEORV32_INC_PATH)"
299
        @echo "---------------- Info: Objects ----------------"
300
        @echo "Project object files:"
301
        @echo "$(OBJ)"
302
        @echo "---------------- Info: RISC-V CPU ----------------"
303
        @echo "MARCH:      $(MARCH)"
304
        @echo "MABI:       $(MABI)"
305
        @echo "---------------- Info: Toolchain ----------------"
306
        @echo "Toolchain:  $(RISCV_TOLLCHAIN)"
307
        @echo "CC:         $(CC)"
308
        @echo "OBJDUMP:    $(OBJDUMP)"
309
        @echo "OBJCOPY:    $(OBJCOPY)"
310
        @echo "SIZE:       $(SIZE)"
311
        @echo "---------------- Info: Compiler Libraries ----------------"
312
        @echo "LIBGCC:"
313
        @$(CC) -print-libgcc-file-name
314
        @echo "SEARCH-DIRS:"
315
        @$(CC) -print-search-dirs
316
        @echo "---------------- Info: Flags ----------------"
317
        @echo "USER_FLAGS: $(USER_FLAGS)"
318
        @echo "CC_OPTS:    $(CC_OPTS)"
319
        @echo "---------------- Info: Host Native GCC Flags ----------------"
320
        @echo "CC_X86:     $(CC_X86)"
321
 
322
 
323
# -----------------------------------------------------------------------------
324
# Show final ELF details (just for debugging)
325
# -----------------------------------------------------------------------------
326
elf_info: main.elf
327
        @$(OBJDUMP) -x main.elf
328
 
329
 
330
# -----------------------------------------------------------------------------
331
# Help
332
# -----------------------------------------------------------------------------
333
help:
334
        @echo "<<< NEORV32 Application Makefile >>>"
335
        @echo "Make sure to add the bin folder of RISC-V GCC to your PATH variable."
336
        @echo "Targets:"
337
        @echo " help       - show this text"
338
        @echo " check      - check toolchain"
339
        @echo " info       - show makefile/toolchain configuration"
340
        @echo " exe        - compile and generate  executable for upload via bootloader"
341
        @echo " install    - compile, generate and install VHDL IMEM boot image (for application)"
342
        @echo " all        - compile and generate  executable for upload via bootloader and generate and install VHDL IMEM boot image (for application)"
343
        @echo " clean      - clean up project"
344
        @echo " clean_all  - clean up project, core libraries and image generator"
345
        @echo " bootloader - compile, generate and install VHDL BOOTROM boot image (for bootloader only!)"
346
 
347
 
348
# -----------------------------------------------------------------------------
349
# Clean up
350
# -----------------------------------------------------------------------------
351
clean:
352
        @rm -f *.elf *.o *.bin *.out *.asm *.vhd
353
 
354
clean_all: clean
355
        @rm -f $(OBJ) $(IMAGE_GEN)

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.