Nuclei Sdk Versions Save

Nuclei RISC-V Software Development Kit

0.5.0

6 months ago

This is release version 0.5.0 of Nuclei SDK, please use it with Nuclei Studio 2023.10 release.

  • This 0.5.0 version is a big change version for Nuclei SDK, it now support Nuclei Toolchain 2023.10, which have gnu toolchain and llvm toolchain in it, gcc version increased to gcc 13, and clang version used is clang 17. It will no longer support old gcc 10 version, since gcc and clang -march option changed a lot, such as b extension changed to _zba_zbb_zbc_zbs.
  • This version also introduced other compiler support such as terapines zcc and IAR compiler. For terapines zcc compiler, please visit https://www.terapines.com/ to contact them for toolchain evaluation, pass TOOLCHAIN=terapines during make to select terapines zcc compiler. For IAR compiler, please visit https://www.iar.com/riscv for IAR workbench evaluation, we provided iar projects to take a try with it.
  • This version introduced libncrt v3.0.0 support, which split libncrt library into three parts, you need to take care when using newer toolchain.
  • This version removed demosoc support, please use evalsoc instead.
  • This version introduced qemu 8.0 support, old qemu will not be supported.
  • This version introduced Nuclei Studio 2023.10 support which introduced llvm toolchain support via npk, so it can only works with 2023.10 or later version.
  • This version required a lot of new npk features introduced in Nuclei Studio 2023.10, so it can only be imported as npk package in Nuclei Studio 2023.10 or later version.

Please create issue if you are facing issues using Nuclei SDK, see https://github.com/Nuclei-Software/nuclei-sdk/issues

  • Application

    • Add cpuinfo case to dump nuclei cpu feature
    • Add stack check demo to demostrate nuclei stack check feature
    • Add support for gcc13/clang17/terapines/iar compiler
    • Fix missing break in __set_hpm_event function, take care if you are using this API.
    • For different compiler option support, we introduced toolchain_$(TOOLCHAIN).mk file to place toolchain specified options, see benchmark examples' Makefile
    • Optimize demo_cidu smp case
    • Optimize application code and makefile when port for clang, terapines zcc and iar compiler
    • Change ARCH_EXT makefile comment for demo_dsp when using gcc 13
    • Auto choose proper CPU_SERIES and proper optimization flags for benchmark cases
    • Optimize whetstone cost to decrease execution time for better ci testing in qemu and fpga
    • Add Zc and Xxlcz extension optimization for coremark and dhrystone cases
    • Do specical adaption for demo_pmp/demo_spmp for iar compiler which require customized iar linker icf for this cases
    • Optimize benchmark flags when using gcc 13
  • NMSIS

    • Add bench reset/sample/stop/stat and get usecyc/sumcyc/lpcnt APIs in NMSIS Core
    • Add more CSRs such as Zc/Stack Check in riscv_encoding.h
    • Rename NMSIS DSP/NN library name to match gcc 13 changes, eg. b -> zba_zbb_zbc_zbs, so the library name changed a lot
    • Add IAR compiler support in NMSIS Core
    • No more bitmanip extension intrinsic header <rvintrin.h> for gcc13
    • Fix __RV_CLAMP macro and add __MACHINE/SUPERVISOR/USER_INTERRUPT macros
    • Add __get_hart_index and SysTimer_GetHartID and modify __get_hart_id API
    • In <Device.h>, we introduced __HARTID_OFFSET and __SYSTIMER_HARTID macro to represent timer hart index relation with cpu hartid for AMP SoC
    • Update NMSIS Core/DSP/NN header files to v1.2.0
    • Update NMSIS DSP/NN prebuilt library to v1.2.0, and added F16 prebuilt library
  • SOC

    • CAUTION: Demosoc support is removed since evalsoc is the successor, please use evalsoc now.
    • Set RUNMODE_CCM_EN macro when CCM_EN make variable passed and allow __CCM_PRESENT overwrite by RUNMODE_CCM_EN macro
    • Enable __CIDU_PRESENT macro passed via compiler option
    • Update cpu startup asm code to fix clang compile issue such as STB_WEAK warning and non-ABS relocation error
    • Update cpu startup asm code to support zcmt jump table
    • Update gnu linker files to support zcmt extension
    • Update gnu linker files to fix 2 byte gap issue, and align section to 8bytes and reorg sections
    • Update openocd configuration files to support openocd new version
    • Make metal_tty_putc/getc with __USED attribute to avoid -flto build fail
    • Add startup and exception code and iar linker icf files for IAR compiler support
    • Add new macros __HARTID_OFFSET and __SYSTIMER_HARTID in evalsoc.h
    • Add HARTID_OFFSET make variable to control hartid offset for evalsoc
    • Boot hartid check no longer only compare lower 8bits for evalsoc
    • Currently IAR compiler support is only for single core support, smp support is not yet ready and need to use in IAR workbench
    • Update Nuclei Studio NPK files to support both gcc and llvm toolchain support, this require 2023.10 Nuclei Studio, which is incompatiable with previous IDE version.
  • Build System

    • Fix semihost not working when link with semihost library
    • Add support for gcc 13, clang 17, terapines zcc toolchain using TOOLCHAIN make variable, eg. TOOLCHAIN=nuclei_gnu for gnu gcc toolchain, TOOLCHAIN=nuclei_llvm for llvm toolchain, TOOLCHAIN=terapines for terapines zcc toolchain
    • Add support for libncrt v3.0.0, which spilt libncrt into 3 parts, the c library part, fileops part, and heapops part, so NCRTHEAP and NCRTIO makefile variable are added to support new version of libncrt, about upgrading libncrt, please check :ref:develop_buildsystem_var_stdclib
    • To support both gcc, clang, zcc, now we no longer use --specs=nano.specs like --specs= gcc only options, since clang don't support it, we directly link the required libraries according to the library type you want to use in Makefile, group all the required libraries using --start-group archives --end-group of linker option, see https://sourceware.org/binutils/docs/ld/Options.html, but when using Nuclei Studio, the Eclipse CDT based IDE didn't provided a good way to do library group, here is an issue tracking it, see https://github.com/eclipse-embed-cdt/eclipse-plugins/issues/592
      • And also now we defaultly enabled -nodefaultlibs option to not use any standard system libraries when linking, so we need to specify the system libraries we want to use during linking, which is the best way to support both gcc and clang toolchain.
    • When using libncrt library, this is no need to link with other libgcc library, c library or math library, such as gcc libgcc library(-lgcc), newlib c library(-lc/-lc_nano) and math library(-lm), the c and math features are also provided in libncrt library
    • When using Nuclei Studio with imported Nuclei SDK NPK package, you might meet with undefined reference issue during link
    • The use of ARCH_EXT is changed for new toolchain, eg. you can't pass ARCH_EXT=bp to represent b/p extension, instead you need to pass ARCH_EXT=_zba_zbb_zbc_zbs_xxldspn1x
    • Show CC/CXX/GDB when make showflags
    • Add u900 series cores support
    • No longer support gd32vf103 soc run on qemu
    • Add extra -fomit-frame-pointer -fno-shrink-wrap-separate options for Zc extension to enable zcmp instruction generation
    • Extra CPU_SERIES macro is passed such (200/300/600/900) during compiling for benchmark examples
    • When you want to select different nmsis library arch, please use NMSIS_LIB_ARCH make variable, see demo_dsp as example
  • Tools

    • A lot of changes mainly in nsdk cli configs have been made to remove support of demosoc, and change it to evalsoc
    • A lot of changes mainly in nsdk cli configs have been made to support newer ARCH_EXT variable format
    • Add llvm ci related nsdk cli config files
    • Add Zc/Xxlcz fpga benchmark config files
    • Support qemu 8.0 in nsdk cli tools
    • Update configurations due to application adding and updating
  • RTOS

    • Add freertos/ucosii/rtthread porting code for IAR compiler
    • Enable vector when startup new task for rtos for possible execute rvv related instruction exception
  • Misc

    • Change gitlab ci to use gnu toolchain 2023.10
    • Add IAR workbench workspace and projects for evalsoc, so user can quickly evaluate IAR support in IAR workbench

Check https://doc.nucleisys.com/nuclei_sdk/quickstart.html#quickstart to know how to get started with Nuclei SDK.

Full Changelog: https://github.com/Nuclei-Software/nuclei-sdk/compare/0.4.1...0.5.0

0.4.1

11 months ago

This is release version 0.4.1 of Nuclei SDK.

  • Application

    • Add demo_cidu to demo cidu feature of Nuclei RISC-V Processor
    • Add demo_cache to demo ccm feature of Nuclei RISC-V Processor
    • Optimize demo_nice for rv64
    • Fix compile error when -Werror=shadow
    • Update helloworld and smphello due to mhartid changes
  • NMSIS

    • Bump NMSIS to 1.1.1 release version, NMSIS DSP/NN prebuilt libraries are built with 1.1.1 release.

    • Add CIDU support via core_feature_cidu.h, and __CIDU_PRESENT macro is required in <Device>.h to represent CIDU present or not

    • Add macros of HPM m/s/u event enable, events type, events idx

    • Fix define error of HPM_INIT macro

    • Due to mhartid csr update for nuclei subsystem reference design, two new API added called __get_hart_id and __get_cluster_id

      • mhartid csr is now used to present cluster id and hart id for nuclei subsystem reference design
      • bit 0-7 is used for hart id in current cluster
      • bit 8-15 is used for cluster id of current cluster
      • for normal nuclei riscv cpu design, the mhartid csr is used as usual, but in NMSIS Core, we only take lower 8bits in use cases like systimer, startup code to support nuclei subsystem
  • Build System

    • Add semihost support in build system via SEMIHOST make variable, if SEMIHOST=1, will link semihost library, currently only works with newlibc library, not working with libncrt
    • Add support for compile cpp files with suffix like .cc or .CC
    • Remove --specs=nosys.specs compile options used during compiling, since we have implement almost all necessary newlibc stub functions, no need to link the nosys version, which will throw warning of link with empty newlibc stub functions.
  • SoC

    • Fix missing definition of BOOT_HARTID in startup_demosoc.S
    • Update demosoc and evalsoc interrupt id and handler definition for CIDU changes
    • Add __CIDU_PRESENT macro to control CIDU present or not in demosoc.h and evalsoc.h which is the <Device>.h
    • Add uart status get and clear api for evalsoc and demosoc, which is used by cidu demo
    • Add semihost support for all SoCs, currently only works with newlib, SEMIHOST=1 control semihost support
    • Update openocd configuration file to support semihosting feature
    • Add extra run/restart command for openocd debug configuration in smp debug in npk for Nuclei Studio
    • Update smp/boot flow to match mhartid csr update
    • BOOT_HARTID is the choosen boot hart id in current cluster, not the full mhartid register value, for example, it the mhartid csr register is 0x0101, and the BOOT_HARTID should be set to 1, if you want hart 1 to be boot hart
    • Update and add more newlib stub functions in demosoc/evalsoc/gd32vf103 SoC's newlibc stub implementation, since we are no longer compile with --specs=nosys.specs
  • CI

    • Add demo_cidu and demo_cache in ci configuration files, but expect it to run fail when run in qemu
    • Don't check certificate when download tool
  • Tools

    • Modify openocd configuration file in nsdk_utils.oy support win32 now
    • Add new feature to generate cpu json when knowing cpu arch in nsdk_runcpu.py script
    • Add runresult_diff.py script to compare the difference of two runresult.xlsx.csvtable.json files, useful when do benchmark difference check
    • Add --uniqueid <id> option for nsdk cli tools

Full Changelog: https://github.com/Nuclei-Software/nuclei-sdk/compare/0.4.0...0.4.1

0.4.0

1 year ago

This is release version 0.4.0 of Nuclei SDK.

  • Application

    • Add app_demo_pmp application to demostrate pmp feature.
    • Add app_demo_spmp application to demostrate smode pmp feature, spmp is present when TEE feature is enabled.
    • Add demo_smode_eclic application to demonstrate ECLIC interrupt with TEE feature of Nuclei Processor.
    • Changed test/core test case due to EXC_Frame_Type struct member name changes.
    • Fix XS bit set bug in demo_nice application.
    • Add return value in smphello application.
  • NMSIS

    • Add __CTZ count trailing zero API in core_compatiable.h
    • Add __switch_mode switch risc-v privilege mode API in core_feature_base.h
    • Add __enable_irq_s, __disable_irq_s smode irq control(on/off) API in core_feature_base.h
    • Add __set_medeleg exception delegation API in core_feature_base.h
    • Update and add smode eclic related API in core_feature_eclic.h only present when TEE_PRESENT=1
    • Optimize APIs of PMP and add __set_PMPENTRYx and __get_PMPENTRYx API for easily PMP configuration in core_feature_pmp.h
    • Add spmp related APIs for smode pmp hardware feature when __SPMP_PRESENT=1
    • Add per-hart related APIs for systimer such as SysTimer_SetHartCompareValue, SysTimer_SetHartSWIRQ and etc in core_feature_timer.h, this is mainly needed when configure timer in smode per hart
    • Add TEE related csr macros in riscv_encoding.h
    • Add iregion offset macros and N3/VP mask in riscv_encoding.h and use it in demosoc/evalsoc implementation.
    • Add ICachePresent/DCachePresent API
    • Don't sub extra cost for BENCH_xxx API
    • Update NMSIS Core/DSP/NN and prebuilt library to version 1.1.0
  • Build System

    • Add intexc_<Device>_s.S asm file into compiling for evalsoc and demosoc
    • Show ARCH_EXT information when run make info
    • Don't specify elf filename when run gdb, only specify it when do load to avoid some gdb internal error
    • Add BOOT_HARTID and JTAGSN support, which need to be done in SoC support code and build system
  • SoC

    • Add smode interrupt and exception handling framework for evalsoc and demosoc, for details see code changes.

      • A new section called .vector_s is added(required in linker script) to store smode vector table which is initialized in system_<Device>.c
      • A new intexc_<Device>_s.S asm source file is added to handle s-mode interrupt and exception
      • A default smode exception register and handling framework is added in system_<Device>.c
      • API Changes: Exception_DumpFrame parameters changed to add mode passing in system_<Device>.c/h
      • API Changes: EXC_Frame_Type struct member mcause/mepc changed to cause/epc in system_<Device>.c/h
    • Print \0 instead of \r when do simulation exit for better integration in Nuclei Studio QEMU simulation.

    • Add clock stub function for libncrt library in demosoc/evalsoc/gd32vf103 SoC support software.

    • Add sram download mode for evalsoc/demosoc, for details directly check the linker script

    • Change default __ICACHE_PRESENT/__DCACHE_PRESENT to 1 for evalsoc/demosoc, when evalsoc/demosoc startup, it will enable i/d cache if it really present.

    • Update openocd configuration files to remove deprecated command which might not be support in future

    • Merge smp and single core openocd config into one configuration for evalsoc and demosoc

    • Add BOOT_HARTID support for evalsoc and demosoc, which is used to specify the boot hartid, used together with SMP can support SMP or AMP run mode

    • Add JTAGSN support to specify a unified hummingbird jtag debugger via adapter serial

    • For AMP support, we can work together with Nuclei Linux SDK, see https://github.com/Nuclei-Software/nsdk_ampdemo

    • Add NPK support for SMP/AMP working mode, and sram download mode

  • CI

    • Start to use Nuclei QEMU/Toolchain/OpenOCD 2022.12 in daily ci for gitlab runner
  • Tools

    • Add httpserver.py tool to create a http server on selected folder, good to preview built documentation.
    • Fix many issues related to nsdk_cli scripts when integrated using fpga hardware ci flow.
    • Support extra parsing benchmark python script for nsdk_cli tools, see 5f546fa0
    • Add nsdk_runcpu.py tool to run fpga baremetal benchmark
  • Documentation

    • Add make preview to preview build documentation.

Full Changelog: https://github.com/Nuclei-Software/nuclei-sdk/compare/0.3.9...0.4.0

0.3.9

1 year ago

This is release version 0.3.9 of Nuclei SDK.

  • Application

    • Add lowpower application to demostrate lowpower feature of Nuclei Processor.
    • Update demo_nice application due to RTL change in cpu.
    • Change dhrystone compiling options to match better with Nuclei CPU IP.
  • NMSIS

    • Update riscv_encoding.h, a lot of changes in the CSRs and macros, VPU are added.
    • Add nmsis_bench.h, this header file will not be included in nmsis_core.h, if you want to use it, please directly include in your source code. It is used to help provide NMSIS benchmark and high performance monitor macro helpers.
    • Add hpm related API in core_feature_base.h
    • Add enable/disable vector API only when VPU available
  • Build System

    • Fix upload program the pc is not set correctly to _start when cpu is reset in flash programming mode.
    • Add run_qemu_debug/run_xlspike_rbb/run_xlspike_openocd make targets
  • SoC

    • Add npk support for smp, required to update ide plugin in Nuclei Studio 2022.04. And also a new version of qemu is required, if you want to run in qemu.

    • Add evalsoc in Nuclei SDK, evalsoc is a new evaluation SoC for Nuclei RISC-V Core, for next generation of cpu evaluation with iregion feature support. demosoc will be deprecated in future, when all our CPU IP provide iregion support.

    • Important: A lot of changes are maded to linker script of SDK.

      • rodata are placed in data section for ilm/flash/ddrdownload mode, but placed in text section for flashxip download mode.
      • For ilm download mode, if you want to make the generated binary smaller, you can change REGION_ALIAS of DATA_LMA from ram to ilm.
      • Add _text_lma/_text/_etext to replace _ilm_lma/_ilm/_eilm, and startup code now using new ld symbols.
      • Use REGION_ALIAS to make linker script portable
      • Linker scripts of gd32vf103/evalsoc/demosoc are all changed.
    • FPU state are set to initial state when startup, not previous dirty state.

    • Vector are enabled and set to initial state when startup, when vector are enabled during compiling.

    • For latest version of Nuclei CPU IP, BPU cold init need many cycles, so we placed bpu enable before enter to main.

For detailed changes, please check commit histories since 0.3.8 release.

0.3.8

1 year ago

This is release version 0.3.8 of Nuclei SDK.

  • Application

    • Add smphello application to test baremetal smp support, this will do demostration to boot default 2 core and each hart print hello world.
  • NMSIS

    • Some macros used in NMSIS need to expose when DSP present
    • nmsis_core.h might be included twice, it might be included by <Device.h> and <riscv_math.h>
  • Build

    • Add SYSCLK and CLKSRC make variable for gd32vf103 SoC to set system clock in hz and clock source, such as SYSCLK=72000000 CLKSRC=hxtal
    • Exclude source files using EXCLUDE_SRCS make variable in Makefile
    • C_SRCS/ASM_SRCS/CXX_SRCS now support wildcard pattern
    • USB_DRV_SUPPORT in gd32vf103 is removed, new USB_DRIVER is introduced, USB_DRIVER=device/host/both to choose device, host or both driver code.
    • SMP, HEAPSZ and STACKSZ make variable are introduced to control stack/heap size and smp cpu count used in SDK
  • SoC

    • Add libncrt 2.0.0 support for demosoc and gd32vf103, libncrt stub functions need to be adapted, see 2e09b6b0 and 2e09b6b0
    • Fix ram size from 20K to 32K for gd32vf103v_eval and gd32vf103v_rvstar
    • Change demosoc eclic/timer baseaddr to support future cpu iregion feature, see eab28320d and 18109d04
    • Adapt system_gd32vf103.c to support control system clock in hz and clock source via macro SYSTEM_CLOCK and CLOCK_USING_IRC8M or CLOCK_USING_HXTAL
    • Merge various changes for gd32vf103 support from @gsauthof, see PR #37, #38, #40
    • Remove usb config header files and usb config source code for gd32vf103
    • Change gd32vf103 linker scripts to support HEAPSZ and STACKSZ
    • Change demosoc linker scripts to support HEAPSZ, STACKSZ and SMP
    • Add baremetal SMP support for demosoc, user can pass SMP=2 to build for 2 smp cpu.
  • Tools

    • Record more flags in nsdk_report.py such as NUCLEI_SDK_ROOT, OPENOCD_CFG and LINKER_SCRIPT.
    • Fix nsdk_report.py generated runresult.xls file content is not correct when some application failed
    • Add benchmark c standard script in tools/misc/barebench
    • Change to support SMP variable
  • OS

    • RT_HEAP_SIZE defined in cpuport.c is small, need to be 2048 for msh example when RT_USING_HEAP is enabled
    • Application can define RT_HEAP_SIZE in rtconfig.h to change the size

For detailed changes, please check commit histories since 0.3.7 release.

0.3.7

2 years ago

This is release version 0.3.7 of Nuclei SDK.

  • Application

    • CAUTION: Fix benchmark value not correct printed when print without float c library, which means the CSV printed value in previous release is not correct, please take care
    • Add DHRY_MODE variable to support different dhrystone run options in dhrystone benchmark, ground, inline and best are supported
  • NMSIS

    • Bump to v1.0.4
    • Add B-extension support for NMSIS
    • Fix various issues reported in github
  • Build

    • add showflags target to show compiling information and flags
    • add showtoolver target to show tool version used
  • SoC

    • Change all un-registered interrupt default handler to default_intexc_handler, which means user need to register the interrupt handler using ECLIC_SetVector before enable it.
    • Add RUNMODE support only in demosoc, internal usage
    • Add jlink debug configuration for gd32vf103 soc
  • Tools

    • Update nsdk_report.py script to support generate benchmark run result in excel.
    • Add ncycm cycle model runner support in nsdk_bench.py
    • Add nsdk_runner.py script for running directly on different fpga board with feature of programing fpga bitstream using vivado

For detailed changes, please check commit histories since 0.3.6 release.

0.3.6

2 years ago

This is release version 0.3.6 of Nuclei SDK.

  • Application

    • update coremark benchmark options for n900/nx900, which can provide better score number
    • benchmark value will be print in float even printf with float is not supported in c library
    • baremetal applications will exit with an return value in main
  • NMSIS

    • add __CCM_PRESENT macro in NMSIS-Core, if CCM hardware unit is present in your CPU, __CCM_PRESENT macro need to be set to 1 in <Device>.h
    • Fixed mtvec related api comment in core_feature_eclic.h
    • Add safely write mtime/mtimecmp register for 32bit risc-v processor
    • rearrage #include header files for all NMSIS Core header files
    • removed some not good #pragma gcc diagnostic lines in nmsis_gcc.h
  • Build

    • Add experimental run_xlspike and run_qemu make target support
    • SIMU=xlspike or SIMU=qemu passed in make will auto exit xlspike/qemu if main function returned
  • SoC

    • Add xlspike/qemu auto-exit support for gd32vf103 and demosoc, required next version after Nuclei QEMU 2022.01

For detailed changes, please check commit histories since 0.3.5 release.

0.3.5

2 years ago

This is release version 0.3.5 of Nuclei SDK.

!!!Caution!!!

  • This version introduce a lot of new featues, and required Nuclei GNU Toolchain 2022.01
  • If you want to import as NPK zip package into Nuclei Studio, 2022.01 version is required.
  • If you want to have smaller code size for Nuclei RISC-V 32bit processors, please define STDCLIB=libncrt_small in your application Makefile, or change STDCLIB defined in Build/Makefile.base to make it available globally.
  • Application

    • DSP_ENABLE and VECTOR_ENABLE are deprecated now in demo_dsp application, please use ARCH_EXT to replace it. ARCH_EXT=p equal to DSP_ENABLE=ON, ARCH_EXT=v equal to VECTOR_ENABLE=ON.

    • demo_dsp application no need to set include and libraries for NMSIS DSP library, just use NMSIS_LIB = nmsis_dsp to select NMSIS DSP library and set include directory.

    • Update coremark compile options for different Nuclei cpu series, currently 900 series options and 200/300/600 series options are provided, and can be selected by CPU_SERIES.

      • CPU_SERIES=900: the compiler options for Nuclei 900 series will be selected.
      • otherwise, the compiler options for Nuclei 200/300/600 series will be selected, which is by default for 300
    • Fix whetstone application compiling issue when compiled with v extension present

  • SoC

    • Provide better Nuclei Studio NPK Feature, required Nuclei Studio 2022.01 version.
    • Provide correct gd32vf103.svd, the previous one content is messed up.
    • putchar/getchar newlib stub are required to be implemented for RT-Thread porting
    • Added support for newly introduced nuclei c runtime library(libncrt).
    • Rearrange stub function folder for gd32vf103 and demosoc to support different c runtime library.
    • A lot changes happened in link scripts under SoC folder
      • heap section is added for libncrt, size controlled by __HEAP_SIZE
      • heap start and end ld symbols are __heap_start and __heap_end
      • stub function sbrk now using new heap start and end ld symbols
      • tdata/tbss section is added for for libncrt, thread local storage supported
    • For flash download mode, vector table are now placed in .vtable section now instead of .vtable_ilm, VECTOR_TABLE_REMAPPED macro is still required in DOWNLOAD=flash mode
    • flash program algo used in openocd for demosoc changed to nuspi, see changes in openocd_demosoc.cfg
  • NMSIS

    • Update NMSIS Core/DSP/NN to version 1.0.3, see NMSIS 1.0.3 Changelog
    • Update prebuilt NMSIS DSP/NN library to version 1.0.3 built by risc-v gcc 10.2
    • For NMSIS Core 1.0.3, no need to define __RISCV_FEATURE_DSP and __RISCV_FEATURE_VECTOR for riscv_math.h now, it is now auto-defined in riscv_math_types.h
  • OS

    • Change RT-Thread porting to support libncrt and newlibc, mainly using putchar and getchar
  • Build System

    • Introduce STDCLIB makefile variable to support different c library.
    • NEWLIB and PFLOAT variable is deprecated in this release.
    • Introduce ARCH_EXT makefile variable to support b/p/v extension.
    • Only link -lstdc++ library when using STDCLIB=newlib_xxx
    • RISCV_CMODEL variable is added to choose code model, medlow or medany can be chosen, default is medlow for RV32 otherwise medany for RV64.
    • RISCV_TUNE variable is added to select riscv tune model, for Nuclei CPU, we added nuclei-200-series, nuclei-300-series, nuclei-600-series and nuclei-900-series in Nuclei RISC-V GNU toolchain >= 2021.12
  • Contribution

    • Update contribution guide due to runtime library choices provided now.
  • NPK

    • newlibsel configuration variable changed to stdclib, and is not compatiable.

      • newlibsel=normal change to stdclib=newlib_full
      • newlibsel=nano_with_printfloat changed to stdclib=newlib_small
      • newlibsel=nano changed to stdclib=newlib_nano
      • stdclib has more options, please see SoC/demosoc/Common/npk.yml
      • nuclei_archext is added as new configuration variable, see SoC/demosoc/Common/npk.yml
  • tools

    • generate benchmark values in csv files when running nsdk_bench.py or nsdk_execute.py
    • fix xl_spike processes not really killed in linux environment when running nsdk_bench.py

For detailed changes, please check commit histories since 0.3.4 release.

0.3.4

2 years ago

V0.3.4

This is release version 0.3.4 of Nuclei SDK.

  • CI

    • Fix gitlab ci fail during install required software
  • Build System

    • build asm with -x assembler-with-cpp
  • Tools

    • Fix tools/scripts/nsdk_cli/configs/nuclei_fpga_eval_ci_qemu.json description issue for dsp enabled build configs
    • Generate html report when run tools/scripts/nsdk_cli/nsdk_bench.py
    • nsdk_builder.py: modify qemu select cpu args,change p to ,ext=p
  • SoC

    • For demosoc, if you choose ilm and ddr download mode, then the data section's LMA is equal to VMA now, and there will be no data copy for data section, bss section still need to set to zero.
    • For demosoc, if you choose ilm and ddr download mode, The rodata section are now also placed in data section.
  • NPK

    • add -x assembler-with-cpp in npk.yml for ssp

For detailed changes, please check commit histories since 0.3.3 release.

0.3.3

2 years ago

V0.3.3

This is release version 0.3.3 of Nuclei SDK.

  • NPK

    • Fix NPK issues related to QEMU for demosoc and gd32vf103, and RTOS macro definitions in NPK
    • This SDK release required Nuclei Studio 2021.09-ENG1, 2021.08.18 build version

For detailed changes, please check commit histories since 0.3.2 release.