This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 209
/
Makefile
590 lines (513 loc) · 19.4 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
#############################################################
# 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
TARGET_ROOT ?= $(abspath .)
PROGRAM_ROOT ?= $(abspath .)
# Allow BOARD as a synonym for TARGET
ifneq ($(BOARD),)
TARGET ?= $(BOARD)
endif
# If the make command goal is any of the Freedom Studio goals
# then there is no need to include any of the other makefiles
# as we are not really building anything real.
ifeq ($(MAKECMDGOALS),standalone)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),freedomstudio-api-version)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-e-sdk-info)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-targets)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-target-tags)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-target-info)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-programs)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-program-tags)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-program-info)
NO_INCLUDES = true
endif
ifeq ($(MAKECMDGOALS),list-options)
NO_INCLUDES = true
endif
# Default PROGRAM and TARGET
PROGRAM ?= hello
TARGET ?= $(shell find $(TARGET_ROOT)/bsp/* -type d | head -n 1 | rev | cut -d '/' -f 1 | rev)
# The configuration defaults to Debug. Valid choices are:
# - debug
# - release
CONFIGURATION ?= debug
# Setup differences between host platforms
ifeq ($(OS),Windows_NT)
SED_RE_FLAG = -r
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
SED_RE_FLAG = -r
endif
ifeq ($(UNAME_S),Darwin)
SED_RE_FLAG = -E
endif
endif
# Default to use relase configuration For Benchmark programs, like Coremark and Dhrystone.
ifeq ($(PROGRAM),dhrystone)
CONFIGURATION = release
endif
# Coremark require PORT_DIR set for different OS, freedom-metal for us!
ifeq ($(PROGRAM),coremark)
CONFIGURATION = release
ifeq ($(PORT_DIR),)
PORT_DIR = freedom-metal
endif
endif
SRC_DIR = $(PROGRAM_ROOT)/software/$(PROGRAM)
PROGRAM_ELF = $(SRC_DIR)/$(CONFIGURATION)/$(PROGRAM).elf
PROGRAM_HEX = $(SRC_DIR)/$(CONFIGURATION)/$(PROGRAM).hex
PROGRAM_LST = $(SRC_DIR)/$(CONFIGURATION)/$(PROGRAM).lst
#############################################################
# BSP Loading
#############################################################
# Finds the directory in which this BSP is located, ensuring that there is
# exactly one.
BSP_DIR := $(wildcard $(TARGET_ROOT)/bsp/$(TARGET))
ifeq ($(words $(BSP_DIR)),0)
$(error Unable to find BSP for $(TARGET), expected to find "bsp/$(TARGET)")
endif
ifneq ($(words $(BSP_DIR)),1)
$(error Found multiple BSPs for $(TARGET): "$(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 Metal
ifeq ($(NO_INCLUDES),)
include scripts/standalone.mk
endif
##############################################################
# Virtualenv Script Include
##############################################################
ifeq ($(NO_INCLUDES),)
include scripts/virtualenv.mk
endif
#############################################################
# Prints help message
#############################################################
.PHONY: help
help:
@echo " SiFive Freedom E Software Development Kit "
@echo " Makefile targets:"
@echo ""
@echo " software [PROGRAM=$(PROGRAM)] [TARGET=$(TARGET)]"
@echo " [CONFIGURATION=$(CONFIGURATION)]:"
@echo " Builds the requested PROGRAM for the TARGET using the"
@echo " specified build CONFIGURATION."
@echo ""
@echo " metal [TARGET=$(TARGET)] [CONFIGURATION=$(CONFIGURATION)]"
@echo " Builds the Freedom Metal library for TARGET."
@echo ""
@echo " metal-bsp [TARGET=$(TARGET)]"
@echo " Generates the BSP files for TARGET. Requires dtc"
@echo " and freedom-devicetree-tools to be in your PATH"
@echo ""
@echo " clean [PROGRAM=$(PROGRAM)] [TARGET=$(TARGET)]"
@echo " [CONFIGURATION=$(CONFIGURATION)]:"
@echo " Cleans compiled objects for a specified "
@echo " software program."
@echo ""
@echo " upload [PROGRAM=$(PROGRAM)] [TARGET=$(TARGET)]"
@echo " [CONFIGURATION=$(CONFIGURATION)]:"
@echo " For board and FPGA TARGETs, uploads the program to the"
@echo " on-board flash."
@echo ""
@echo " debug [PROGRAM=$(PROGRAM)] [TARGET=$(TARGET)]"
@echo " [CONFIGURATION=$(CONFIGURATION)]:"
@echo " For board and FPGA TARGETs, attaches GDB to the"
@echo " running program."
@echo ""
@echo " simulate [PROGRAM=$(PROGRAM)] [TARGET=$(TARGET)]"
@echo " [CONFIGURATION=$(CONFIGURATION)]:"
@echo " Simulates the program in the QEMU emulator."
@echo ""
@echo " standalone STANDALONE_DEST=/path/to/desired/location"
@echo " [PROGRAM=$(PROGRAM)] [TARGET=$(TARGET)]:"
@echo " Exports a program for a single target into a standalone"
@echo " project directory at STANDALONE_DEST."
@echo ""
@echo " open-docs"
@echo " Opens the Freedom E SDK documentation in your HTML"
@echo " viewer of choice. The documentation can also be found"
@echo " online at"
@echo " https://sifive.github.io/freedom-e-sdk-docs/index.html"
.PHONY: open-docs
open-docs: scripts/open-docs
$^
.PHONY: clean
clean:
#############################################################
# Enumerate BSPs and Programs
#
# List all available boards and programs in a form that
# Freedom Studio knows how to parse. Do not change the
# format or fixed text of the output without consulting the
# Freedom Studio dev team.
#############################################################
include freedom-e-sdk.mk
#############################################################
# Prints freedostudio api version . This version should be
# incremented if the list-targets, list-target-tags.
# list-programs, list-options, or standalone targets change
# in any way that affects Freedom Studio requirements.
# A given version of Freedom Studio may not support
# 'future' versions of freedom-e-sdk. Backward support
# should be supported.
#
# 1.0 - Original API
# 1.1 - Added list-e-sdk-info, list-target-info, list-program-info and list-program-tags targets
#############################################################
.PHONY: freedomstudio-api-version
freedomstudio-api-version:
@echo 1.1
# Lists Freedom Studio specific info from the freedom-e-sdk.mk file
# The E_SDK_TAGS is used to signal which features this E-SDK supports
# The E_SDK_REQS is used to signal which tools FS should usewith this FESDK: e-gcc8 or e-gcc10
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-e-sdk-info
list-e-sdk-info:
@echo e-sdk-tags: $(E_SDK_TAGS)
@echo e-sdk-reqs: $(E_SDK_REQS)
# Find all settings.mk with TARGET_REQUIRE_TAGS in TARGET_TAGS
# Freedom Studio uses this macro. Changing this macro may break Freedom Studio's
# ability to create new projects.
MATCHING_SETTINGS = $(shell scripts/filter-targets $(TARGET_ROOT)/bsp $(TARGET_REQUIRE_TAGS))
# Get the name of the containing directory of all matching settings.mk
# Freedom Studio uses this macro. Changing this macro may break Freedom Studio's
# ability to create new projects.
MATCHING_TARGETS = $(patsubst $(TARGET_ROOT)/bsp/%/,%,$(dir $(MATCHING_SETTINGS)))
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-targets
list-targets:
@echo bsp-list: $(sort $(MATCHING_TARGETS))
# Lists all available TARGET_TAGS
#
# 1. Find all settings.mk
# 2. Extract the TARGET_TAGS line
# 3. Extract the value of TARGET_TAGS
# 4. Split each tag onto a newline
# 5. Sort the lines
# 6. Find unique tags
#
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-target-tags
list-target-tags:
@echo target-tags: $(shell find $(TARGET_ROOT)/bsp -name settings.mk | \
xargs grep -he "TARGET_TAGS" | \
sed $(SED_RE_FLAG) 's/TARGET_TAGS.*=(.*)/\1/' | \
tr ' ' '\n' | \
sort | \
uniq)
# Lists Freedom Studio specific info from the settings.mk file for TARGET
# The RISCV_ARCH is used to signal which ISA incl. extensions this TARGET supports
# The TARGET_TAGS is used to signal which tools FS should use: qemu, openocd, ...
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-target-info
list-target-info:
@echo riscv-arch: $(shell find $(TARGET_ROOT)/bsp/$(TARGET) -name settings.mk | \
xargs grep -he "RISCV_ARCH" | sed $(SED_RE_FLAG) 's/RISCV_ARCH.*=(.*)/\1/')
@echo target-tags: $(shell find $(TARGET_ROOT)/bsp/$(TARGET) -name settings.mk | \
xargs grep -he "TARGET_TAGS" | sed $(SED_RE_FLAG) 's/TARGET_TAGS.*=(.*)/\1/')
# Find all options.mk with PROGRAM_REQUIRE_TAGS in PROGRAM_TAGS
# Freedom Studio uses this macro. Changing this macro may break Freedom Studio's
# ability to create new projects.
MATCHING_OPTIONS = $(shell scripts/filter-programs $(PROGRAM_ROOT)/software $(PROGRAM_REQUIRE_TAGS))
# Get the name of the containing directory of all matching options.mk
# Freedom Studio uses this macro. Changing this macro may break Freedom Studio's
# ability to create new projects.
MATCHING_PROGRAMS = $(patsubst $(PROGRAM_ROOT)/software/%/,%,$(dir $(MATCHING_OPTIONS)))
# Metal programs are any submodules in the software folder
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-programs
list-programs:
ifneq ($(PROGRAM_REQUIRE_TAGS),)
@echo program-list: $(sort $(MATCHING_PROGRAMS))
else
@echo program-list: $(shell ls $(PROGRAM_ROOT)/software)
endif
# Lists all available PROGRAM_TAGS
#
# 1. Find all options.mk
# 2. Extract the PROGRAM_TAGS line
# 3. Extract the value of PROGRAM_TAGS
# 4. Split each tag onto a newline
# 5. Sort the lines
# 6. Find unique tags
#
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-program-tags
list-program-tags:
@echo program-tags: $(shell find $(PROGRAM_ROOT)/software -name options.mk | \
xargs grep -he "PROGRAM_TAGS" | \
sed $(SED_RE_FLAG) 's/PROGRAM_TAGS.*=(.*)/\1/' | \
tr ' ' '\n' | \
sort | \
uniq)
# Lists Freedom Studio specific info from the options.mk file for PROGRAM
# The RISCV_REQS is used to signal which ISA extensions this PROGRAM requires: m, d, c, ...
# The PROGRAM_TAGS is used to signal which features from FESDK this PROGRAM uses
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-program-info
list-program-info:
@echo riscv-reqs: $(shell find $(PROGRAM_ROOT)/software/$(PROGRAM) -name options.mk | \
xargs grep -he "RISCV_REQS" | sed $(SED_RE_FLAG) 's/RISCV_REQS.*=(.*)/\1/')
@echo program-tags: $(shell find $(PROGRAM_ROOT)/software/$(PROGRAM) -name options.mk | \
xargs grep -he "PROGRAM_TAGS" | sed $(SED_RE_FLAG) 's/PROGRAM_TAGS.*=(.*)/\1/')
# Freedom Studio uses this target. Changing this target may break Freedom Studio's
# ability to create new projects.
.PHONY: list-options
list-options: list-programs list-targets
#############################################################
# Import rules to build Freedom Metal
#############################################################
ifeq ($(NO_INCLUDES),)
include scripts/libmetal.mk
endif
#############################################################
# Standalone Project Export
#############################################################
ifeq ($(STANDALONE_DEST),)
standalone:
$(error Please provide STANDALONE_DEST to create a standalone project)
else # STANDALONE_DEST != ""
$(STANDALONE_DEST):
$(STANDALONE_DEST)/%:
mkdir -p $@
# Freedom Studio uses the 'standalone' target. Changing this target may break Freedom Studio's
# ability to create new projects.
ifneq ($(filter rtl,$(TARGET_TAGS)),)
# TARGETs with the "rtl" TARGET_TAG need elf2hex in their standalone project
standalone: \
$(STANDALONE_DEST) \
$(STANDALONE_DEST)/bsp \
$(STANDALONE_DEST)/src \
$(SRC_DIR) \
freedom-metal \
debug.mk \
release.mk \
freedom-e-sdk.mk \
requirements.txt \
scripts/devicetree-overlay-generator \
scripts/ldscript-generator \
scripts/cmsis-svd-generator \
scripts/openocdcfg-generator \
scripts/esdk-settings-generator \
scripts/elf2hex \
scripts/standalone.mk \
scripts/libmetal.mk \
scripts/virtualenv.mk
cp -r $(addprefix $(BSP_DIR)/,$(filter-out build,$(shell ls $(BSP_DIR)))) $</bsp/
cp -r freedom-metal $</
find $</freedom-metal -name ".git*" | xargs rm -rf
ifneq ($(shell grep FreeRTOS.mk $(SRC_DIR)/Makefile),)
cp -r FreeRTOS-metal $</
find $</FreeRTOS-metal -name ".git*" | xargs rm -rf
endif
ifneq ($(shell grep scl.mk $(SRC_DIR)/Makefile),)
cp -r scl-metal $</
find $</scl-metal -name ".git*" | xargs rm -rf
endif
mkdir -p $</scripts
cp scripts/virtualenv.mk $</scripts
cp -r scripts/elf2hex $</scripts
find $</scripts/elf2hex -name ".git*" | xargs rm -rf
cp -r scripts/devicetree-overlay-generator $</scripts
find $</scripts/devicetree-overlay-generator -name ".git*" | xargs rm -rf
cp -r scripts/ldscript-generator $</scripts
find $</scripts/ldscript-generator -name ".git*" | xargs rm -rf
cp -r scripts/cmsis-svd-generator $</scripts
find $</scripts/cmsis-svd-generator -name ".git*" | xargs rm -rf
cp -r scripts/openocdcfg-generator $</scripts
find $</scripts/openocdcfg-generator -name ".git*" | xargs rm -rf
cp -r scripts/esdk-settings-generator $</scripts
find $</scripts/esdk-settings-generator -name ".git*" | xargs rm -rf
ifeq ($(PORT_DIR),)
$(MAKE) -C $(SRC_DIR) clean
else
$(MAKE) -C $(SRC_DIR) PORT_DIR=${PORT_DIR} clean
endif
cp -r $(SRC_DIR)/* $</src/
cp debug.mk $</debug.mk
cp release.mk $</release.mk
cp freedom-e-sdk.mk $</freedom-e-sdk.mk
cp requirements.txt $</requirements.txt
touch $</bsp/core.dts
touch $</bsp/design.dts
touch $</bsp/metal.default.lds
touch $</bsp/metal.ramrodata.lds
touch $</bsp/metal.scratchpad.lds
touch $</bsp/metal.freertos.lds
touch $</bsp/metal.h
touch $</bsp/metal-platform.h
touch $</bsp/design.svd
touch $</bsp/settings.mk
echo "PROGRAM = $(PROGRAM)" > $</Makefile
echo "TARGET = ${TARGET}" >> $</Makefile
ifneq ($(PORT_DIR),)
echo "PORT_DIR = $(PORT_DIR)" >> $</Makefile
endif
echo "include freedom-e-sdk.mk" >> $</Makefile
echo "" >> $</Makefile
echo "# The configuration defaults to Debug. Valid choices are:" >> $</Makefile
echo "# - debug" >> $</Makefile
echo "# - release" >> $</Makefile
echo "CONFIGURATION ?= ${CONFIGURATION}" >> $</Makefile
echo "" >> $</Makefile
cat scripts/standalone.mk >> $</Makefile
cat scripts/libmetal.mk >> $</Makefile
else # "rtl" not in TARGET_TAGS
standalone: \
$(STANDALONE_DEST) \
$(STANDALONE_DEST)/bsp \
$(STANDALONE_DEST)/src \
$(SRC_DIR) \
freedom-metal \
debug.mk \
release.mk \
freedom-e-sdk.mk \
requirements.txt \
scripts/devicetree-overlay-generator \
scripts/ldscript-generator \
scripts/cmsis-svd-generator \
scripts/openocdcfg-generator \
scripts/esdk-settings-generator \
scripts/standalone.mk \
scripts/libmetal.mk \
scripts/virtualenv.mk
cp -r $(addprefix $(BSP_DIR)/,$(filter-out build,$(shell ls $(BSP_DIR)))) $</bsp/
cp -r freedom-metal $</
find $</freedom-metal -name ".git*" | xargs rm -rf
ifneq ($(shell grep FreeRTOS.mk $(SRC_DIR)/Makefile),)
cp -r FreeRTOS-metal $</
find $</FreeRTOS-metal -name ".git*" | xargs rm -rf
endif
ifneq ($(shell grep scl.mk $(SRC_DIR)/Makefile),)
cp -r scl-metal $</
find $</scl-metal -name ".git*" | xargs rm -rf
endif
mkdir -p $</scripts
cp scripts/virtualenv.mk $</scripts
cp -r scripts/devicetree-overlay-generator $</scripts
find $</scripts/devicetree-overlay-generator -name ".git*" | xargs rm -rf
cp -r scripts/ldscript-generator $</scripts
find $</scripts/ldscript-generator -name ".git*" | xargs rm -rf
cp -r scripts/cmsis-svd-generator $</scripts
find $</scripts/cmsis-svd-generator -name ".git*" | xargs rm -rf
cp -r scripts/openocdcfg-generator $</scripts
find $</scripts/openocdcfg-generator -name ".git*" | xargs rm -rf
cp -r scripts/esdk-settings-generator $</scripts
find $</scripts/esdk-settings-generator -name ".git*" | xargs rm -rf
ifeq ($(PORT_DIR),)
$(MAKE) -C $(SRC_DIR) clean
else
$(MAKE) -C $(SRC_DIR) PORT_DIR=${PORT_DIR} clean
endif
cp -r $(SRC_DIR)/* $</src/
cp debug.mk $</debug.mk
cp release.mk $</release.mk
cp freedom-e-sdk.mk $</freedom-e-sdk.mk
cp requirements.txt $</requirements.txt
touch $</bsp/core.dts
touch $</bsp/design.dts
touch $</bsp/metal.default.lds
touch $</bsp/metal.ramrodata.lds
touch $</bsp/metal.scratchpad.lds
touch $</bsp/metal.freertos.lds
touch $</bsp/metal.h
touch $</bsp/metal-platform.h
touch $</bsp/design.svd
touch $</bsp/settings.mk
echo "PROGRAM = $(PROGRAM)" > $</Makefile
echo "TARGET = ${TARGET}" >> $</Makefile
ifneq ($(PORT_DIR),)
echo "PORT_DIR = $(PORT_DIR)" >> $</Makefile
endif
echo "include freedom-e-sdk.mk" >> $</Makefile
echo "" >> $</Makefile
echo "# The configuration defaults to Debug. Valid choices are:" >> $</Makefile
echo "# - debug" >> $</Makefile
echo "# - release" >> $</Makefile
echo "CONFIGURATION ?= ${CONFIGURATION}" >> $</Makefile
echo "" >> $</Makefile
cat scripts/standalone.mk >> $</Makefile
cat scripts/libmetal.mk >> $</Makefile
endif # rtl in TARGET_TAGS
endif # STANDALONE_DEST
#############################################################
# Upload and Debug
#############################################################
ifneq ($(RISCV_OPENOCD_PATH),)
RISCV_OPENOCD=$(RISCV_OPENOCD_PATH)/bin/openocd
else
#if RISCV_OPENOCD_PATH is not set, just look on the PATH
RISCV_OPENOCD=openocd
endif
ifneq ($(filter jlink,$(TARGET_TAGS)),)
upload: $(PROGRAM_HEX)
scripts/upload --hex $(PROGRAM_HEX) --jlink $(SEGGER_JLINK_EXE)
else
upload: $(PROGRAM_ELF)
scripts/upload --elf $(PROGRAM_ELF) --openocd $(RISCV_OPENOCD) --gdb $(RISCV_GDB) --openocd-config bsp/$(TARGET)/openocd.cfg
endif
ifneq ($(filter jlink,$(TARGET_TAGS)),)
debug: $(PROGRAM_ELF)
scripts/debug --elf $(PROGRAM_ELF) --jlink $(SEGGER_JLINK_GDB_SERVER) --gdb $(RISCV_GDB)
else
debug: $(PROGRAM_ELF)
scripts/debug --elf $(PROGRAM_ELF) --openocd $(RISCV_OPENOCD) --gdb $(RISCV_GDB) --openocd-config bsp/$(TARGET)/openocd.cfg
endif
ifeq ($(findstring qemu,$(TARGET)),qemu)
ifeq ($(findstring rv32,$(RISCV_ARCH)),rv32)
simulate: $(PROGRAM_ELF)
scripts/simulate --elf $(PROGRAM_ELF) --qemu $(QEMU_RISCV32) --qemu-config bsp/$(TARGET)/qemu.cfg
else # findstring rv32
simulate: $(PROGRAM_ELF)
scripts/simulate --elf $(PROGRAM_ELF) --qemu $(QEMU_RISCV64) --qemu-config bsp/$(TARGET)/qemu.cfg
endif # findstring rv32
else # findstring qemu
ifeq ($(findstring spike,$(TARGET)),spike)
simulate: $(PROGRAM_ELF) $(BSP_DIR)/spike_options.sh
. $(BSP_DIR)/spike_options.sh && scripts/simulate --elf $(PROGRAM_ELF) --spike $(shell which spike) ; echo "Spike exited with code $$?"
else
simulate:
@echo "No supported emulator for target $(TARGET)!"
endif # findstring spike
endif # findstring qemu