mirror of
https://github.com/eclipse-threadx/threadx.git
synced 2026-08-18 01:49:39 +08:00
* Add BananaPi BPI-F3 BSP support Add RISC-V supervisor support to the rv64/gnu port and provide a complete board support package for the BananaPi BPI-F3 (SpacemiT K1 SoC, X60 cores). Port changes (risc-v64/gnu): - Guard all CSR accesses with TX_RISCV_SMODE to select S-mode registers (sstatus/sepc/sie/sret) vs M-mode (mstatus/mepc/mie/mret) in context_save, context_restore, schedule, system_return, interrupt_control, and stack_build. - Add S-mode TX_INT_ENABLE/TX_DISABLE and inline TX_RESTORE macros to tx_port.h. - Add TX_RISCV_SMODE CMake option to CMakeLists.txt. BananaPi BPI-F3 BSP (example_build/bananapi-f3): - Boot flow: FSBL → OpenSBI (M-mode) → U-Boot (S-mode) → ThreadX - S-mode trap handler with context save/restore integration - SBI legacy ecall timer at 10 Hz (24 MHz timebase) - PLIC driver with S-mode context, stale-IRQ drain, and callbacks - PXA-compatible UART0 console (115200 8N1) - Linker script at 0x200000 load address Tested on risc-v board, BananaPi BPI-F3 hardware. Signed-off-by: Akif Ejaz <akif.ejaz@10xengineers.ai> * Fixed S-mode context restore and PLIC spurious IRQ handling - tx_thread_context_restore.S (non-nested path): set SPIE(0x20) alongside SPP(0x100) so sret re-enables interrupts in the restored thread. - tx_thread_context_restore.S (both S-mode paths): use FS=Dirty (0x6000) instead of FS=Initial (0x2000) to match tx_thread_schedule.S and prevent FP register corruption across context switches. - plic.c (plic_irq_intr): return early when plic_claim() yields 0 (no pending interrupt) to avoid completing a spurious IRQ ID 0, which is undefined behavior per the PLIC spec. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Signed-off-by: Akif Ejaz <akif.ejaz@10xengineers.ai> Co-authored-by: Frédéric Desbiens <frederic.desbiens@eclipse-foundation.org> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
98 lines
3.1 KiB
CMake
98 lines
3.1 KiB
CMake
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
|
|
|
|
# Set up the project
|
|
project(threadx
|
|
LANGUAGES C ASM
|
|
)
|
|
|
|
if(NOT DEFINED THREADX_ARCH)
|
|
message(FATAL_ERROR "Error: THREADX_ARCH not defined")
|
|
endif()
|
|
if(NOT DEFINED THREADX_TOOLCHAIN)
|
|
message(FATAL_ERROR "Error: THREADX_TOOLCHAIN not defined")
|
|
endif()
|
|
|
|
option(THREADX_SMP "Build ThreadX SMP version" OFF)
|
|
|
|
if(THREADX_SMP)
|
|
set(TX_PORT_DIR "ports_smp")
|
|
set(TX_COMMON_DIR "common_smp")
|
|
set(TX_ARCH_DIR "${THREADX_ARCH}_smp")
|
|
message(STATUS "Building ThreadX SMP version")
|
|
else()
|
|
set(TX_PORT_DIR "ports")
|
|
set(TX_COMMON_DIR "common")
|
|
set(TX_ARCH_DIR "${THREADX_ARCH}")
|
|
message(STATUS "Building standard ThreadX version")
|
|
endif()
|
|
|
|
message(STATUS "THREADX_ARCH: ${THREADX_ARCH}")
|
|
message(STATUS "THREADX_TOOLCHAIN: ${THREADX_TOOLCHAIN}")
|
|
|
|
# Define our target library and an alias for consumers
|
|
add_library(${PROJECT_NAME})
|
|
add_library("azrtos::${PROJECT_NAME}" ALIAS ${PROJECT_NAME})
|
|
|
|
# A place for generated/copied include files (no need to change)
|
|
set(CUSTOM_INC_DIR ${CMAKE_CURRENT_BINARY_DIR}/custom_inc)
|
|
|
|
# Pick up the port specific variables and apply them
|
|
if(DEFINED THREADX_CUSTOM_PORT)
|
|
add_subdirectory(${THREADX_CUSTOM_PORT} threadx_port)
|
|
else()
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/${TX_PORT_DIR}/${TX_ARCH_DIR}/${THREADX_TOOLCHAIN})
|
|
endif()
|
|
|
|
# Pick up the common stuff
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/${TX_COMMON_DIR})
|
|
|
|
# Define the FreeRTOS adaptation layer
|
|
add_library(freertos-threadx EXCLUDE_FROM_ALL)
|
|
target_include_directories(freertos-threadx
|
|
PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}/utility/rtos_compatibility_layers/FreeRTOS
|
|
)
|
|
target_sources(freertos-threadx
|
|
PRIVATE
|
|
${CMAKE_CURRENT_LIST_DIR}/utility/rtos_compatibility_layers/FreeRTOS/tx_freertos.c
|
|
)
|
|
target_link_libraries(freertos-threadx PUBLIC threadx)
|
|
|
|
# If the user provided an override, copy it to the custom directory
|
|
if (NOT TX_USER_FILE)
|
|
message(STATUS "Using default tx_user.h file")
|
|
set(TX_USER_FILE ${CMAKE_CURRENT_LIST_DIR}/${TX_COMMON_DIR}/inc/tx_user_sample.h)
|
|
else()
|
|
message(STATUS "Using custom tx_user.h file from ${TX_USER_FILE}")
|
|
endif()
|
|
configure_file(${TX_USER_FILE} ${CUSTOM_INC_DIR}/tx_user.h COPYONLY)
|
|
target_include_directories(${PROJECT_NAME}
|
|
PUBLIC
|
|
${CUSTOM_INC_DIR}
|
|
)
|
|
target_compile_definitions(${PROJECT_NAME} PUBLIC "TX_INCLUDE_USER_DEFINE_FILE" )
|
|
if(THREADX_SMP)
|
|
target_compile_definitions(${PROJECT_NAME} PUBLIC "TX_MPCORE" )
|
|
endif()
|
|
|
|
# Optional: build for S-mode (Supervisor mode) instead of M-mode (Machine mode).
|
|
# Required when running after OpenSBI, e.g. booted from U-Boot.
|
|
option(TX_RISCV_SMODE "Use S-mode CSRs instead of M-mode for RISC-V targets" OFF)
|
|
if(TX_RISCV_SMODE)
|
|
message(STATUS "RISC-V S-mode enabled (TX_RISCV_SMODE)")
|
|
target_compile_definitions(${PROJECT_NAME} PUBLIC "TX_RISCV_SMODE")
|
|
endif()
|
|
|
|
# Enable a build target that produces a ZIP file of all sources
|
|
set(CPACK_SOURCE_GENERATOR "ZIP")
|
|
set(CPACK_SOURCE_IGNORE_FILES
|
|
\\.git/
|
|
\\.github/
|
|
_build/
|
|
\\.git
|
|
\\.gitattributes
|
|
\\.gitignore
|
|
".*~$"
|
|
)
|
|
set(CPACK_VERBATIM_VARIABLES YES)
|
|
include(CPack) |