Skip to content

Commit 881305d

Browse files
authored
Update RV32 qemu Demo to support RVA23 (FreeRTOS#1329)
* Demo: RISC-V_RV32_QEMU_VIRT_GCC: Increase the memory for RVA23 compilation * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Update the regtest to include fpu registers * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Fix small issues for 64-bit configs * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Enable FPU unit * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Enable compilation for RVA23 platforms * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Fix copyright related CI issues * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Update submodule manifest * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Update a few typos and left overs * Demo: RISC-V_RV32_QEMU_VIRT_GCC: Apply @aggarg's sugestions * Update pointer to Freertos-Kernel
1 parent 2abeb3e commit 881305d

File tree

11 files changed

+480
-38
lines changed

11 files changed

+480
-38
lines changed

FreeRTOS/Demo/RISC-V_RV32_QEMU_VIRT_GCC/FreeRTOSConfig.h

+5
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,13 @@
5151
#define configUSE_TICK_HOOK 1
5252
#define configCPU_CLOCK_HZ ( ( unsigned long ) 25000000 )
5353
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
54+
#if __riscv_xlen == 64
55+
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 240 )
56+
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 220 * 1024 ) )
57+
#else
5458
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 120 )
5559
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 80 * 1024 ) )
60+
#endif
5661
#define configMAX_TASK_NAME_LEN ( 12 )
5762
#define configUSE_TRACE_FACILITY 1
5863
#define configUSE_16_BIT_TICKS 0

FreeRTOS/Demo/RISC-V_RV32_QEMU_VIRT_GCC/Readme.md

+28-9
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
## Requirements
44

5-
1. GNU RISC-V toolchains (tested on pre-built Sifive GNU Embedded Toolchain — v2020.12.8)
6-
- https://www.sifive.com/software
7-
1. qemu-riscv32-system (tested on pre-built Sifive QEMU — v2020.08.1)
8-
- https://www.sifive.com/software
9-
1. Linux OS (tested on Ubuntu 20.04.3 LTS)
5+
1. GNU RISC-V toolchains Tested on:
6+
* Pre-built Sifive GNU Embedded Toolchain — v3.0.4 - https://www.sifive.com/software
7+
* Self built from https://github.com/riscv-collab/riscv-gnu-toolchain/tree/a33dac0251d17a7b74d99bd8fd401bfce87d2aed (tag: 2025.01.20)
8+
9+
1. qemu-riscv64-system. Tested on:
10+
* pre-built Sifive QEMU — v3.0.4 - https://www.sifive.com/software
11+
* qemu-system-riscv64 v 8.2.2
12+
1. Linux OS. Tested on:
13+
* Ubuntu 24.04 LTS
1014

1115

1216
## How to build
@@ -35,16 +39,31 @@ To clean build artifacts:
3539
$ make -C build/gcc/ clean
3640
```
3741

42+
For any of the previous configurations, if you want to use the port on a RVA23 system instead of a RV32, you may append append `RVA23=1`
43+
44+
```
45+
$ make -C build/gcc/ RVA23=1
46+
```
47+
3848
If the build was successful, the RTOSDemo.elf executable will be located in the build/gcc/output directory.
3949

4050

4151
## How to run
4252

53+
For the RV32 build:
54+
55+
```
56+
$ qemu-system-riscv32 -nographic -machine virt -net none -chardev stdio,id=con,mux=on \
57+
-serial chardev:con -mon chardev=con,mode=readline -bios none -smp 4 \
58+
-s --kernel build/gcc/output/RTOSDemo.elf
59+
```
60+
61+
For the RVA23 build:
62+
4363
```
44-
$ qemu-system-riscv32 -nographic -machine virt -net none \
45-
-chardev stdio,id=con,mux=on -serial chardev:con \
46-
-mon chardev=con,mode=readline -bios none \
47-
-smp 4 -kernel ./build/gcc/output/RTOSDemo.elf
64+
$ qemu-system-riscv64 -nographic -machine virt -net none -chardev stdio,id=con,mux=on \
65+
-serial chardev:con -mon chardev=con,mode=readline -bios none -smp 4 \
66+
-s --kernel build/gcc/output/RTOSDemo.elf
4867
```
4968

5069

FreeRTOS/Demo/RISC-V_RV32_QEMU_VIRT_GCC/build/gcc/Makefile

+25-11
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,39 @@ MAKE = make
1313
GCC_VERSION = $(shell $(CC) --version | grep ^$(CC) | sed 's/^.* //g' | awk -F. '{ printf("%d%02d%02d"), $$1, $$2, $$3 }')
1414
GCC_VERSION_NEED_ZICSR = "110100"
1515

16+
ifeq ($(RVA23),1)
17+
# For the time being, we don't include the vector extensions.
18+
MARCH = rv64imafdc_zicsr_zicntr_zihpm_ziccif_ziccrse_ziccamoa_zicclsm_za64rs_zihintpause_zic64b_zicbom_zicbop_zicboz_zfhmin_zkt_zihintntl_zawrs
19+
MABI = lp64d
20+
MCMODEL = medany
21+
CFLAGS+=-DconfigENABLE_FPU=1
22+
$(info Using RVA23 build)
23+
else
24+
ifeq ($(shell test $(GCC_VERSION) -ge $(GCC_VERSION_NEED_ZICSR) && echo true),true)
25+
MARCH=rv32imac_zicsr
26+
else
27+
MARCH=rv32imac
28+
endif
29+
MABI=ilp32
30+
MCMODEL=medlow
31+
$(info Using RV32 build)
32+
endif
33+
34+
INCLUDE_DIRS += -I$(KERNEL_PORT_DIR)/chip_specific_extensions/RV32I_CLINT_no_extensions
35+
1636
CFLAGS += $(INCLUDE_DIRS) -fmessage-length=0 \
17-
-mabi=ilp32 -mcmodel=medlow -ffunction-sections -fdata-sections \
37+
-march=$(MARCH) -mabi=$(MABI) -mcmodel=$(MCMODEL) -ffunction-sections -fdata-sections \
1838
-Wno-unused-parameter -nostartfiles -g3 -Os
1939

20-
ifeq ($(shell test $(GCC_VERSION) -ge $(GCC_VERSION_NEED_ZICSR) && echo true),true)
21-
CFLAGS += -march=rv32imac_zicsr
22-
else
23-
CFLAGS += -march=rv32imac
24-
endif
25-
40+
2641
ifeq ($(PICOLIBC),1)
27-
CFLAGS += --specs=picolibc.specs -DPICOLIBC_INTEGER_PRINTF_SCANF
42+
CFLAGS += --specs=picolibc.specs -DPICOLIBC_INTEGER_PRINTF_SCANF
2843
else
2944
CFLAGS += --specs=nano.specs -fno-builtin-printf
3045
endif
3146

3247
LDFLAGS += -nostartfiles -Xlinker --gc-sections -Wl,-Map,$(OUTPUT_DIR)/RTOSDemo.map \
33-
-T./fake_rom.ld -march=rv32imac -mabi=ilp32 -mcmodel=medlow -Xlinker \
48+
-T./fake_rom.ld -march=$(MARCH) -mabi=$(MABI) -mcmodel=$(MCMODEL) -Xlinker \
3449
--defsym=__stack_size=350 -Wl,--start-group -Wl,--end-group
3550

3651
ifeq ($(PICOLIBC),1)
@@ -54,8 +69,7 @@ endif
5469
KERNEL_DIR = $(FREERTOS_ROOT)/Source
5570
KERNEL_PORT_DIR += $(KERNEL_DIR)/portable/GCC/RISC-V
5671
INCLUDE_DIRS += -I$(KERNEL_DIR)/include \
57-
-I$(KERNEL_PORT_DIR) \
58-
-I$(KERNEL_PORT_DIR)/chip_specific_extensions/RV32I_CLINT_no_extensions
72+
-I$(KERNEL_PORT_DIR)
5973
VPATH += $(KERNEL_DIR) $(KERNEL_PORT_DIR) $(KERNEL_DIR)/portable/MemMang
6074
SOURCE_FILES += $(KERNEL_DIR)/tasks.c
6175
SOURCE_FILES += $(KERNEL_DIR)/list.c

0 commit comments

Comments
 (0)